The officially official Devuan Forum!

You are not logged in.

#1 Re: Installation » cannot install on Lenovo T480 off an external usb-cdrom » 2026-09-20 23:55:30

You can try the (exprimental) netinstall iso at https://files.devuan.org/user/tempforever/, it has a different booting mechanism

#2 Re: Installation » [SOLVED] NetInstall with XFCE and Cinnamon options » 2026-09-19 22:36:27

Which version of devuan - daedalus (oldstable), excalibur (stable), freia (testing)?

#3 Re: Forum Feedback » [SOLVED] Recent Posts (Active Topics) only shows last 24 hours » 2026-09-19 22:29:48

To elaborate on Ralph's answer, that value parameter is in seconds.  So to get your desired 1-week setting, the url to bookmark would be https://dev1galaxy.org/search.php?actio … lue=604800

#4 Re: Installation » Freia installation issues » 2026-09-19 17:01:26

Thanks for the report.  Fixed in September 19 netinstall iso.

#5 Re: Installation » An interesting attempt to modify init->openrc-init » 2026-09-19 15:37:09

alin wrote:

if `initscripts` or other software is upgraded or updated, it may overwrite my scripts with the newer versions

I believe that this can be handled via dpkg-divert?

#6 Re: Desktop and Multimedia » Recurring captcha from Google. » 2026-09-17 14:51:32

This isn't "how to avoid the problem" - but if you have difficulty with their picture captchas, this may be of help.
After spending about a half hour clicking on buses, traffic lights, crosswalks, bicycles, stairs, fire hydrants, cars, bridges (and probably more!), in a never-ending cycle, eventually I tried the audio captcha instead.  This took only about 5 tries to get it right, and then I could proceed.  All the sound samples had static, most were entirely unintelligible to me.  Just load a new one until you get one that you can understand.

#7 Re: Documentation » Changes in sudo (upstream) » 2026-09-14 17:46:32

greenjeans wrote:

As far as the changes to sudo, what systems would make /usr/local/ writeable for a non-root user? That seems silly.

my /usr/local/{bin,sbin} are owned by group staff, and group has write permission.

#8 Re: DIY » How can I run a script on resume from hibernation? » 2026-09-13 21:24:45

I've got this script (for an example) from when I used to hibernate/suspend.  It might require pmtools pm-utils (as Ralph noted above).

#!/bin/bash
# Script name: /etc/pm/sleep.d/50_network
# Purpose: Restore network settings upon thaw / resume

case $1 in
  suspend|suspend_hybrid|hibernate)
    :
    ;;
  resume|thaw)
    # wait 10s for network to come back
    sleep 10
    logger -s "/etc/pm/sleep.d/50_network: Restoring network settings..."
    # restore network settings
    /usr/local/sbin/netconfig.sh
    logger -s "/etc/pm/sleep.d/50_network: Done."
    ;;
esac

#9 Re: Installation » Freia installation issues » 2026-09-12 17:12:45

You did nothing wrong.  Evidently, task-lxqt-desktop has moved some of its (former) Depends packages to Recommends now.  I hope this was not intentional.  I can manually change it in the installer iso, if it comes to that.  For now, you should be able to apt install lxqt to get what you're missing.

[edit]
Evidently, this was done intentionally

https://git.devuan.org/devuan/tasksel/commit/f25bf9541eb531f9d3d70ba26ff9c9e175df2c6f wrote:

  * task-*-desktop: Demote Depends to Recommends.

Looking at that commit, it has affected much more than just lxqt.

#10 Re: Installation » [SOLVED] Freia Unable to Detect Network Hardware » 2026-09-09 00:17:50

greenjeans wrote:

Does the netinstall iso have firmware-mediatek on it?

Yes, there's firmware-mediatek_20260810-1_all.deb

However, I found in firmware/Contents-firmware:

/usr/lib/firmware/mediatek/mt7925/BT_RAM_CODE_MT7925_1_1_hdr.bin firmware-mediatek_20260622-1_all.deb non-free-firmware
/usr/lib/firmware/mediatek/mt7925/WIFI_MT7925_PATCH_MCU_1_1_hdr.bin firmware-mediatek_20260622-1_all.deb non-free-firmware
/usr/lib/firmware/mediatek/mt7925/WIFI_RAM_CODE_MT7925_1_1.bin firmware-mediatek_20260622-1_all.deb non-free-firmware

So it appears I need to update the Contents-firmware file to the correct version on the disc image.
Hopefully it will all be good in the next iso (check mirrors in a while)

#11 Re: Installation » [SOLVED] Freia Unable to Detect Network Hardware » 2026-09-04 01:03:43

Please, when you have an opportunity, test the new devuan_freia_7.0-202609031921_amd64_netinstall.iso - it should be on the mirrors by now.  And if you don't mind, report back whether that fixes the issue.

#12 Re: Installation » [SOLVED] Freia Unable to Detect Network Hardware » 2026-09-03 16:53:46

Thanks for reporting this.  I'll update the freia installer soon...  it still was using the excalibur Contents-firmware file which I believe is the source of your issue.

#13 Re: Hardware & System Configuration » syslog-ng will replace rsyslog as default logging system? » 2026-09-01 21:16:49

ovi wrote:

syslog-ng will replace rsyslog as default logging in the future ?

I don't know, haven't taken a poll or anything.  So far it's just a test on the netinstall.  Have you had any issues with it?

The reason for the change: https://www.rsyslog.com/clarifying-ai-f … r-rsyslog/
Of course, you're free to remove syslog-ng and replace it with rsyslog after the installation is complete.  And I may change the default back later, if that's what most users want.

#14 Re: DIY » Problem with qemu » 2026-08-27 17:13:24

Another option...

With qemu, use -nic user option, and set up networking as follows

ip address add 10.0.2.15/24 dev eth0
ip link set dev eth0 up
ip route add 10.0.2.0/24 dev eth0
ip route add default via 10.0.2.2 dev eth0

Also, your /etc/resolv.conf should contain

nameserver 10.0.2.3

From there, you should be able to apt install dhcpcd-base or whatever package(s) you want.

With virtualbox, you could change the network to bridged, and set up static networking as though it were a physical device on your LAN.  For example, if your LAN uses 192.168.1.0/24 with a gateway of 192.168.1.1 (I think this is a common default setup), you could do something like this

ip address add 192.168.1.20/24 dev eth0
ip link set dev eth0 up
ip route add 192.168.1.0/24 dev eth0
ip route add default via 192.168.1.1 dev eth0

Obviously, you'd want to use an address not in use by another device.  That was just an example.

#15 Re: Hardware & System Configuration » Update of nvidia drivers failed in Daedalus » 2026-08-25 14:58:50

Micronaut wrote:

Whatever is going on, it's blocking gnlug.org just like the other mirrors. All I get are "could not resolve" errors for both the original and these repositories.

That's odd. Is your nameserver accessible?  What's in /etc/resolv.conf?

#16 Re: Hardware & System Configuration » Update of nvidia drivers failed in Daedalus » 2026-08-25 14:54:40

from what I'm seeing on daedalus, nvidia-driver and nvidia-kernel-dkms are at version 535.261.03-1 (daedalus), 535.309.01-0+deb12u1 (daedalus-security), and oddly 535.216.03-2-bpo12+1 (daedalus-backports).
maybe this would work?

apt install nvidia-driver/daedalus-security nvidia-kernel-dkms/daedalus-security

Of course, you'll need to have apt working properly first.

#17 Re: Other Issues » yt-dlp in Debian 13 / Devuan 6 affected by serious CVE (Score: High) » 2026-08-20 16:45:34

I would also point out, according to what you wrote,

tux_99 wrote:

the --write-link, --write-url-link, and --write-desktop-link options can write .url or .desktop shortcut files ...

If you don't use those options (--write-link, --write-url-link, or --write-desktop-link), this particular issue won't affect you.  If you do use them, and don't want to check the output files, then by all means, update to a newer version (which is probably necessary anyway for it to work with youtube)

#18 Re: Installation » [SOLVED] Installation Problem after selecting Language and Country » 2026-08-03 03:19:32

OK.  For now it seems like you need to manually run

sh /lib/debian-installer-startup.d/S21ventoy-loop

to get your iso loop device set up properly.
Could you run the "expert install" and find out on which step does it freeze?  Are you able to change to tty4 at that point and read any debugging text?

#19 Re: Installation » [SOLVED] Installation Problem after selecting Language and Country » 2026-08-02 16:44:39

OK, your S21ventoy-loop file looks good.

What does this return?

losetup -a

If it returns nothing, try this

sh /lib/debian-installer-startup.d/S21ventoy-loop ; losetup -a

If there's this line: /dev/loop0: 0 /mnt/devuan_excalibur_6.1.1_amd64_netinstall.iso - then try this:

mkdir -p /cdrom ; mount -t iso9660 /dev/loop0 /cdrom

If it mounts correctly, then see if installation will continue.
If there are any errors/info displayed, please report back.

#20 Re: Installation » [SOLVED] Installation Problem after selecting Language and Country » 2026-07-31 17:27:02

6) re-write the excalibur netinstall iso to usb stick using a different writing program (or: burn to cd/dvd media)
There's probably a 7), 8), 9), and 10) that I haven't thought of yet, also.

#21 Re: Installation » [SOLVED] Installation Problem after selecting Language and Country » 2026-07-31 13:38:28

You seem to have a few options at this point.  It's up to you which to choose (in no particular order):
1) try an experiemental excalibur netinstall iso at https://files.devuan.org/user/tempforever/
2) try excalibur desktop-live iso
3) try freia netinstall iso (freia is in "testing" but it should mostly work)
4) continue trying the released excalibur netinstall iso

(FYI, I've been unable to get #1 and #3 to boot properly from ventoy, at least in efi mode.  But you're welcome to test, of course.)

If you choose #4 above, it would be helpful to know the debugging output text on tty4 after it fails to detect installation media.
For reference, the output on my test system (with ventoy) says:

cdrom-detect: Searching for Debian installation media...
cdrom-detect: Devices: '/dev/sr0'
cdrom-detect: CD-ROM mount succeeded: device=/dev/sr0 fstype=iso9660
cdrom-detect: Detected CD 'Devuan GNU/Linux 6.1.1 excalibur amd64 - netinstall 20260425'
kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
kernel: ISO 9660 Extensions: RRIP_1991A
cdrom-detect: Detected CD with 'stable' (excalibur) distribution
anna-install: Queueing udeb eject-udeb for later installation

What happens if you try to run, in tty2:

mkdir -p /cdrom ; mount -t iso9660 /dev/sr0 /cdrom

Also the output of this might be helpful:

ls /sys/class/block

(you can press alt + left-or-right arrow to switch between tty windows)

#22 Re: Installation » [SOLVED] Installation Problem after selecting Language and Country » 2026-07-28 04:37:58

My first suspicion would be to verify the download (check the sha256sum).  Secondly, verify that it was written to your boot media without any errors.  Is this a cd, usb stick, virtual machine install, something else ?  Also, which ISO file are you using?
The installer iso should allow you to press alt-F4 to view the latest ouput, there may be some debugging text there that will let you know what it's locked up on, or waiting for, or at least what succeeded last.  alt-F2 and alt-F3 will activate terminals in which you can issue commands, and alt-F1 will go back to the installer.
Another option is to do the "expert install" which will help narrow down on which point it is stuck.

#23 Re: Freedom Hacks » [SOLVED] Tips for people who don't like hidden scrollbars and other GTK3 things » 2026-07-09 16:48:16

Uityyy wrote:

Scrollbars that jump many pages when you click the wrong place

GTK themes can contain general GTK settings. Devuan Excalibur's theme contains a settings.ini containing the line

gtk-primary-button-warps-slider = false

This makes the scrollbar only scroll by one page if you left-click it somewhere other than the handle.
If you want this behavior all the time and not just when you're using Excalibur's default theme, simply create ~/.config/gtk-3.0/settings.ini and add the same line to it.

Thanks for posting this!  The same setting works on Daedalus also.  Note that if you're creating a settings.ini file, that code should be in a "[Settings]" group, like so:

[Settings]
gtk-primary-button-warps-slider = false

Otherwise you'll get a gtk warning, failed to parse settings.ini: Key file does not start with a group.

#24 Re: Other Issues » Other sources of documentation » 2026-07-06 21:12:17

There's this page, if you like trying to reproduce/fix bugs... https://bugs.devuan.org/db/ix/full.html

#25 Re: Other Issues » [SOLVED] Chromium 150.0.7871.46 Will Not Load After Password Update » 2026-07-06 12:50:31

chromium 150 appears to be working okay on a new installation (that is, I did not previously have 149).
does 'chromium --temp-profile' work?

Board footer

Forum Software