The officially official Devuan Forum!

You are not logged in.

#1 Re: Installation » Excalibur: Mounting NFS shares using /etc/fstab » Today 22:56:54

Traditionally, NFS mounts are set up as declared in fstab via the init script mountnfs.sh, and it's not as a side effect of networking. That kind of NFS mount is supported with sysvinit, and it works as fine with excalibur as it has done with prior repository codenames.

Clearly one may insist on some different NFS mount behaviour.. In such a case one will need to set up the system to support that.

#2 Re: Installation » dist upgrade to excalibur hits only security packages » Yesterday 22:35:35

That blank line between the stanzas, does that contain any spaces or tab?

#3 Re: Installation » Latest Excalibur desktop installer forces LXQt? » Yesterday 01:37:34

Yes it does... I'll try it out to see if I get the same. Will take a little while though.
Did you install with or without network?

#5 Re: Installation » Excalibur: Mounting NFS shares using /etc/fstab » 2025-11-03 23:06:06

@Andre4freedom: please show the error log, from the boot with fstab set up as in your daedalus. (It's awfully hard to just guess)

Probably logged to /var/log/dmesg and/or /var/log/syslog.

#6 Re: DIY » usb controllers and qemu » 2025-11-03 04:05:50

You might use the following qemu command line arguments for usb passthrough:

-device qemu-xhci,id=usb-bus \
-device usb-host,vendorid=0x0000,productid=0x1111

with of course the right vendor and product ids replacing 0x0000 and 0x1111.

The device must be plugged in when qemu starts. If you want to support removing and reinserting, you'll need to use the first "-device ..." argument only, and then the qemu monitor command line to add the device, with different but near enough similar syntax.

Before then, the user running qemu must have path access to the /dev/bus/usb/*/* devnode for the usb device to access.

To that end you might for example add GROUP="plugdev" appropriately in /lib/udev/rules.d/50-udev-default.rules, and make the user member of the plugdev group, and then the user gains access right whenever the device is blugged in.

It's also possible to refer to the device using the bus and device id.

#7 Re: DIY » Qemu question » 2025-11-02 00:17:57

It's not that hard:

* start with an opening square bracket, the word code, a closing square bracket

* end with an opening square bracket, a slash, the word code, a closing square bracket

Or maybe you want it to be a bit peculiar?

#8 Re: DIY » Qemu question » 2025-11-01 22:36:46

if you were to use "code" tags around code, then where would they be?
(You should be able to edit your post if you would want to).

#11 Re: Other Issues » [SOLVED] Debian User Forum » 2025-10-28 10:45:00

I'm using forums.debian.net... it seems available but different. (I haven't noticed before that the header includes "Debian Fish and Animal Emporium", whatever that means.)

EDIT: apparently an April 1 joke that was so hilarious for the admins that it has remained. "Fun" is something subjective, obviously.

#12 Re: Other Issues » changing invalid email » 2025-10-24 21:40:10

Perhaps you forget to "submit" it? I.e.
1 go to your profile
2 edit the email address to be the new one
3 scroll down and press "submit"

Note that "validity" of an email address refers to it's format rather than whether emails to the address are deliverable or not. (See e.g. RFC 6530 and details)

#13 Re: Off-topic » What is the devuan opinion about using elogind? » 2025-10-16 13:07:58

I'm more puzzled by your statement "don't want to open a debate" than anything. But I agree that using elogind or not is not really something worth debating.

#14 Re: Desktop and Multimedia » Excalibur RC1 + Xfce + slim + auto login shows Untitled window » 2025-10-15 03:16:16

Usually rather than fiddling with source via the browser, I would clone the packaging project and review the source from there. This would include using the command

$ dpkg-source --before-build .

within the packaging branch so as to apply any patch series (in case of quilt packaging). Doing so sets up all actual "before build" source in that workarea. (One may undo that by using --after-build instead)

If I then want to compile and prepare a local .deb for testing, I'd use

$ dpkg-checkbuilddeps

to tell which build dependencies need to be installed, and then use the command

$ debian/rules

i.e., execute the debian/rules make script by the shell with working directory at the project top. This typically creates a .deb file somewhere, possibly in the parent directory.

#15 Re: Hardware & System Configuration » OpenCL/AMDGPU-PRO? » 2025-10-12 04:49:26

Fair enough. Old thread, but since it's yours...

#16 Re: Devuan Derivatives » "ln -sf" resulted in a broken link » 2025-10-12 03:41:07

Firstly, you should rather use "update-alternatives" for that job, just to tee up with that particular subsystem; the "alternatives" subsystem. I would suggest you read the man pages about it.

If you rather go your own way (and "break" that subsystem), then you would do well checking out the man page for "ln"... "ln -sf A B" creates a link (file), where A is the content of that link (file), and B is the pathname for the link (file) with that content. I.e., it looks like the order of arguments is the opposite to what you tried.

EDIT: always check the man pages; you cannot go wrong with that. It's really one of the most useful skills to have.

#17 Re: Desktop and Multimedia » excalibur/KDE non-root X11 session is broken » 2025-10-12 00:22:04

It used to be that the user running Xorg has to be owner of the associated tty, i.e. /dev/tty7 in your case. How does it compare with  /dev/tty2 permissions in the working use case?

Though I don't know anything about sddm or KDE.

#18 Re: Installation » actuallization from Ceres impossible » 2025-10-08 00:11:11

Check out https://wiki.debian.org/SourcesList

But luckily for us the traditional format still works well. For some reason the "old" format is tagged as "less readable", which is peak nonsense of course.

#19 Re: Desktop and Multimedia » how renew DHCP lease? » 2025-10-08 00:07:43

Perhaps the DHCP options are on the ipv4 settings tab?

#20 Re: Installation » [SOLVED] How to report "gpg: BAD signature" » 2025-10-04 00:48:57

Perhaps you have it on a windows filesystem that have added ^M characters to the lines?

#21 Re: Installation » [SOLVED] How to report "gpg: BAD signature" » 2025-10-03 23:40:23

Was that "bad signature" for SHA256SUMS.txt.gpg?

Perhaps you need to refresh your pgp store?

gpg --keyserver keyserver.ubuntu.com --refresh-keys rrq@rrq.au

The sha256sum should be 722af7905595d9a1417f48f783d43dd40fe7da7a2e1d7998a8ea47df2d26941b
otherwise the download had errors.

EDIT: yes, fsmithred beat me to it smile

EDIT 2: concerns with the installers can be reported to the virtual project "devuan-installer"

#22 Re: Other Issues » [SOLVED] difficulty compiling openssl » 2025-10-02 22:56:22

The Devuan imperative has always been: do not use stable, oldstable. or oldoldstable as release codenames!

Those codenames have individual meanings for the forked packages and the Debian packages., so there is always this period of time when Debian has "moved" its meanings (e.g. it's stbale packages are in the trixie release) while the Devuan forked packages have note so "moved" (e.g., its "stable" packages are still in the "daedalus" release).

The reason may be of some complexity to digest, but the rule is simple:
do not use stable, oldstable. or oldoldstable as release codenames!

#23 Re: Hardware & System Configuration » iSCSI autostart » 2025-10-02 11:02:19

@deutschem: I have assumed that you have 1) an iscsi server correctly set up and running, and 2) set up the client with the required configuration regarding targets and identities. Are those assumptions correct? To me it looks like the client (initiator) cannot connect to a server.

I'd suggest you don't worry about the rc?.d/ links too much; they only come into play at boot and shutdown.

#24 Re: Installation » Also UEFI install problems » 2025-10-01 23:05:50

@sun skin only, you got your own thread. If you want to pursue any one of the range of issues you voice (or maybe all at once), you may continue on this thread.

#25 Re: Hardware & System Configuration » iSCSI autostart » 2025-10-01 22:37:45

Hmm I think you may need to enable iscid as well, as the /etc/rcS.d/K01iscsid may cause it to be stopped inadvertently on boot. By enabling it, it will be started on boot even with the "on demand" set up, but otherwise it might get killed by init. It should really have kill links only in 0 and 6; (looks like the debian developer is less read-in on sysvinit than could be expected).

Board footer

Forum Software