The officially official Devuan Forum!

You are not logged in.

#1 Re: Installation » fstab not mounting at startup » 2026-05-23 12:14:40

In Devuan, any references to systemd calls are null and void. There is no systemd in Devuan (and never will be, that's the entire reason Devuan exists in the first place) so you need to not look up & copy/paste from tutorials where a systemd distro is used roll

PS:
a) fstab is a file, it's not a mount-point
b) use code tags

#2 Re: Other Issues » Widelands error » 2026-05-03 18:44:10

I'm on Devuan Stable and refuse to use anything other then apt for installing packages. Appimage and flatpack (as well as snap) are fundamentally windows-fying the Linux install system b/c that's what we do on Windows roll Yes, on Win-OS, but Linux is damn well not Win-OS! sad

Rant over wink

#3 Re: Other Issues » Widelands error » 2026-05-03 18:29:39

This should work, I guess:
widelands_error.jpeg
OK, it does smile

So, is this a Devuan issue or upstream?

#4 Other Issues » Widelands error » 2026-05-03 16:53:57

Dutch_Master
Replies: 4

For a while now I'm getting an error when starting (attempting to) a widelands game with one particular tribe. See attached. This might be an upstream issue, but said tribe worked on the previous Stable version of Devuan. Other tribes on the current version work normally.

[edit: it appears posting images on/to this forum is disabled as there's no way to upload them.]

#5 Re: Other Issues » [SOLVED] Firefox anon YT browsing defunct » 2026-04-24 15:14:58

Got an answer on the LTT forums: I've downloaded too much, too quickly so YT put my IP address on a blacklist of sorts. It'll resolve itself in a while I s'pose.

#6 Other Issues » [SOLVED] Firefox anon YT browsing defunct » 2026-04-24 14:06:06

Dutch_Master
Replies: 3

WTF! Just rebooted my Devuan Stable system after 3 weeks uptime. Before I could browse YT effortlessly in an anonymous browser session, but now YT demands I log in! Obviously I'm not going to, otherwise I wouldn't be using an anonymous FF window to visit YT, right? roll

Any way to fix this, as it worked before with this exact setup.

TIA!

#7 Re: Installation » How to pure OpenRC-based Devuan? » 2026-03-25 05:14:30

I'm aware there's a script that needs to be called manually when converting from SysVinit to OpenRC in Devuan, populating the various levels properly, but I can't recall said script. You should be able to trace it down following the dependency chain in apt.

HTH!

#8 Re: Installation » [SOLVED] Brother MFC-L2690DW » 2026-03-21 00:14:46

Brother has an installer for its devices. Just a script, runs on pretty much any Linux version and does the work of installing the correct drivers for you. See the Brother Linux page to find it.

#9 Re: Desktop and Multimedia » [SOLVED] Inability to install printer » 2026-02-19 23:30:48

First error in step 3: you need to log in as root, not a regular user.

Chances are Cups already has the drivers as it only needs the ppd files. Try installing the printer in step 3 as root first, if that fails we go from there.

#10 Re: Other Issues » errors with apt update on Daedalus » 2026-02-14 11:49:43

Do first:

apt-get --allow-releaseinfo-change update

If you haven't already, you need to update/install usrmerge before upgrading your system;

apt-get install usrmerge

Let it complete, can take some time. Then:

apt-get dist-upgrade

Again, let it finish before changing any packages (install/uninstall, etc)

#11 Re: Other Issues » VLC playback issues » 2026-02-07 16:09:37

After the latest upgrade to the current stable the issue is resolved and previously blacked-out video streams can be viewed normally in VLC.

#12 Re: Installation » [SOLVED] Partitions » 2026-01-18 01:49:10

Why are you installing manually? Just use the automated installer, it'll fix pretty much anything.

For underwear,try https://www.lttstore.com wink

Oh wait, different forum lol

#13 Re: Other Issues » Superuser authentication failure in graphical mode » 2026-01-11 21:53:37

That's why it's called testing roll Don't use testing if you can't fix it.

#14 Re: Hardware & System Configuration » Cloning and UUIDs » 2026-01-04 22:21:25

Boot from the clone drive, become root, then this command:

blkid /dev/sd* >> /etc/fstab

This lists all disks and every partition on that disk with their respective UUID's in /etc/fstab. If you type in the command by hand, make sure you have the double arrow! Otherwise your fstab file is gone :-\

Next, open /etc/fstab in a graphical text editor like Pluma, so you can easily copy/paste the UUID's into the correct entries. Once you're certain everything is in the right place, either remove all UUID entries from the earlier command or better, comment them out so you have something to fall back on in case something went haywire :-{ Save the fstab file and reboot.

#15 Re: Hardware & System Configuration » Removing obsolete keyrings » 2025-12-22 11:56:56

I have now removed both keyring archives mentioned in my OP, but left all others in that directory. So far, apt/aptitude/synaptic is not complaining (yes, also updated Devuan Stable on my system)

#16 Re: Hardware & System Configuration » Removing obsolete keyrings » 2025-12-22 09:25:29

Thx for that reply. Won't these keys need to be de-registered? (they're found in /etc/apt btw)

#17 Hardware & System Configuration » Removing obsolete keyrings » 2025-12-22 06:56:13

Dutch_Master
Replies: 7

Over time, upgrades to Devuan have increasingly becoming more annoying as errors come up, either in aptitude or synaptic. The 2 main culprits are old Devuan keyring archives: devuan-keyring-2022-archive.asc and devuan-keyring-2016-archive.asc Neither show up in package management tools. Both error out with "unsupported file type" or similarly named. So, how to get rid of these? Is there a tool to do so ('cuz I didn't find any sad )

#18 Re: Hardware & System Configuration » [SOLVED] Unmount CIFS shares before shutdown » 2025-12-21 13:44:03

Rename the script cifsdown.sh, copy to /etc/init.d, give it executable rights like you already did then create a symlink in /etc/rc0.d Make sure the sym-link in /etc/rc0.d is named K01cfisdown.sh DO NOT deviate from that name, as the order of shutting down services is important.

Alternatively, execute the following line by line:

sudo su #only if you use sudo, otherwise just use su instead
mv /etc/NetworkManager/dispatcher.d/pre-down.d/umount.sh /etc/init.d/cifsdown.sh
chmod +x /etc/init.d/cifsdown.sh
ln -s /etc/init.d/cifsdown.sh /etc/rc0.d/K01cifsdown.sh

You can use cp instead of mv to keep a copy in the original location. That's the difference between cp and mv: cp leaves a copy, mv (move) doesn't. Make sure you disable the script left there before rebooting:

chmod -x /etc/NetworkManager/dispatcher.d/pre-down.d/umount.sh

HTH!

#19 Re: Hardware & System Configuration » [SOLVED] AMD or nvidia? » 2025-11-06 15:03:14

If he really wants it, he can buy one himself roll

Intel B580 is a decent card for the price.

#20 Re: Installation » Devuan 5 to 6 install failures » 2025-11-05 16:58:15

Aaaaannnnddd I'm stuck roll  Even after attempting to install usrmerge with aptitude, installation fails b/c of the above failure :-{ Apt does work, so why not aptitude?

#21 Installation » Devuan 5 to 6 install failures » 2025-11-05 16:48:42

Dutch_Master
Replies: 5

Tried upgrading my Devuan 5 to 6 today.

First issue: using aptitude it couldn't download the inrelease file. In FF the file could be found, after I removed some charachers in the URL that shouldn't be there.
http://pkgmaster.devuan.org/merged/dist … /InRelease
Using apt I could obtain the upgrade list and my system has 2610 packages to upgrade.

Then I hit this:

Preparing to unpack .../base-files_13.8+deb13u1devuan1_amd64.deb ...

******************************************************************************
*
* The base-files package cannot be installed because
* /bin is a directory, but should be a symbolic link.
*
* Please install the usrmerge package to convert this system to merged-/usr.
*
* For more information please read https://wiki.debian.org/UsrMerge.
*
******************************************************************************

dpkg: error processing archive /var/cache/apt/archives/base-files_13.8+deb13u1de
vuan1_amd64.deb (--unpack):
 new base-files package pre-installation script subprocess returned error exit s
tatus 1
Errors were encountered while processing:
 /var/cache/apt/archives/base-files_13.8+deb13u1devuan1_amd64.deb
needrestart is being skipped since dpkg has failed
E: Sub-process /usr/bin/dpkg returned an error code (1)

Frankly, this should have been taken care of by apt, clearly it didn't sad
Not sure I see the need for this change, but here we go roll

#22 Re: Hardware & System Configuration » how to thin out the system (drivers and modules) » 2025-10-20 14:02:01

If you want to de-clutter your system at all, start with a source-based distro, not Devuan nor Debian. Consider Gentoo, Arch, LFS or Slackware. You'll learn a lot but boy that learning curve is steep! :-\

#23 Re: Off-topic » When installing a system, do you manually partition first? » 2025-10-07 13:36:50

I'm using the partitioning tool of the installer (which under the hood is gparted anyway tongue ) to manually set partitions for /, /boot, /usr, /etc, /var, /tmp and /home. By limiting the size of these directories any rogue process triggered to fill up as much space as possible cannot make the system unstable or even unbootable.

#24 Other Issues » VLC playback issues » 2025-09-05 08:26:24

Dutch_Master
Replies: 3

I've been using yt-dlp to grab various YT video's but lately VLC is having trouble playing them back. Sound works just fine, but the screen remains black, which kinda defeats the purpose of video. tongue It's not the source material, playback on different tools like mpv and smplayer works as it should. Oddly enough, video files I grabbed earlier this year work just fine, also on VLC.

VLC: 3.0.21
YT-DLP is current stable, but earlier versions also affected.

Examples:
long: https://www.youtube.com/watch?v=c8gswrUDh_s
short: https://www.youtube.com/watch?v=o_QTaUuU8F4

YT_DLP downloads in the highest resolution offered (by default), which is the setting I use.

Is this known or an upstream issue?

TIA!

#25 Re: Installation » how to fix broken dep hell? » 2025-08-15 21:52:06

The answer is there, first post, several times even:

apt --fix-broken install

Board footer

Forum Software