The officially official Devuan Forum!

You are not logged in.

#201 Re: Other Issues » OpenSSH fails to start with the latest update in Devuan 6 Excalibur » 2024-07-08 13:35:28

I'm not seeing this problem before or after upgrade today of excalibur amd64 on hardware with sysvinit. SSH login from remote works, rsync and dbus stop/start normally as do other services.

#202 Re: Hardware & System Configuration » hddtemp not available in Daedalus » 2024-07-07 16:27:42

If you're lucky, the hard drive reports temperature in degrees centigrade.

smartctl -a /dev/sda | awk '/Temperature/ { print $10 }'

#203 Re: Installation » Grub problem on HP Zbook with SSD HD » 2024-07-03 17:21:32

Maybe the problem is HP. The very first post in our documentation section is about uefi booting on HP Probook. The bootloader file had to be renamed to make the bios happy. https://dev1galaxy.org/viewtopic.php?id=15

If you decide or figure out how to go to legacy boot, and if you keep the disk with a gpt partition table, you need to have a special partition for grub that is at least 1MB in size, is not formatted with any filesystem, and has a bios_grub label (in gparted) or type ef02 (in gdisk).

#204 Re: Installation » Grub problem on HP Zbook with SSD HD » 2024-07-03 12:35:35

If it's really just the grub bootloader that needs to be off the nvme drive, then you could put just grub on a usb stick and use that to boot. If that's not enough, you could put a separate /boot partition and the bootloader on a usb stick. Right now I can't think of the best way to do that. I think you might need to boot the installer media in rescue mode and reinstall the bootloader, but make sure it gets installed to a usb drive. It should probably be a different one than the installer usb in case you want to boot and run the installer again.

Before you reinstall grub, you could edit /etc/default/grub on the hard drive and set os-prober to run when you run update-grub. Then windows will be in the grub boot menu.

Another option might be to edit the windows boot menu to load grub. I don't know how to do that or even if it is possible with uefi.

#205 Re: Desktop and Multimedia » Auto login » 2024-06-28 20:41:55

In /etc/slim.conf, uncomment and edit default_user and auto_login lines:

# default user, leave blank to not pre-load the username.
#default_user        simone

# Focus the password field on start when default_user is set
# Set to "yes" to enable this feature
#focus_password      no

# Automatically login the default user (without entering
# the password. Set to "yes" to enable this feature
#auto_login          no

In /etc/lightdm/lightdm.conf, go down to the section that begins with [Seat:*] and uncomment the autologin-user line and add your user name.

#206 Re: Installation » How to install devuan lxc-container on debian? » 2024-06-26 13:17:32

I don't know about lxc, so I don't know where you need to install the keyring, but here's the devuan-keyring package for daedalus -
https://pkgmaster.devuan.org/devuan/poo … 28_all.deb

The debootstrap error is easier - as root

cd /usr/share/debootstrap
ln -s ceres daedalus

I'm not sure if you need to install devuan's debootstrap. That's here -
https://pkgmaster.devuan.org/devuan/poo … n2_all.deb

#207 Re: Devuan Derivatives » [MiyoLinux] New Releases Uploaded » 2024-06-24 22:11:42

@grafiksink - here's source for a packaged version of the update-notifier that bgstack and I worked on. I don't know if this version made it into any miyolinux builds.
https://git.devuan.org/fsmithred/basic-update-notifier

I think all the other stuff I have is older than what's on the sourceforge site. (some yad scripts and themes)

#208 Re: Installation » [SOLVED] How to force the ESP partition to be formatted at installation ? » 2024-06-14 17:53:52

You should be able to select the efi partition from the partition list and set it to be formatted and used as the esp. I haven't done it in the installer in a long time.

Be forewarned that some motherboards with poor uefi implementations may be bricked by formatting the efi partition. Here's some info about that:
https://superuser.com/questions/1318593 … -dangerous

#209 Re: Installation » [SOLVED] How to force the ESP partition to be formatted at installation ? » 2024-06-14 17:13:48

You can (and should) remove the unwanted boot entries using efibootmgr.

efibootmgr -b XXXX -B

where XXXX is the boot order number given by efibootmgr without any arguments.

#210 Re: Hardware & System Configuration » Need acoustic signalling (sound) where only root account is present » 2024-06-14 00:52:14

Remove pulseaudio and just use alsa. aplay should work just fine for that.

I suppose you could use pipewire if you know about that. I don't.

#211 Re: Installation » daedalus: network interface names changing with (nearly) each boot » 2024-06-14 00:45:39

This is why they invented Predictable Network Interface Names.
https://www.freedesktop.org/wiki/Softwa … faceNames/

In debian, with udev you get the new names (enpblahblahblah) unless you boot with 'net.ifnames=0' to preserve the old names (eth0...)

In devuan, with eudev you get the old names (eth0...) unless you boot with 'net.ifnames=1'.   Add that to the boot command in /etc/default/grub like this:

GRUB_CMDLINE_LINUX_DEFAULT="quiet,net.ifnames=1"

and then run update-grub

You will need to edit any scripts you've written that reference the interfaces by the old names.

#212 Re: Desktop and Multimedia » [SOLVED] Skype, snap and how to run on Devuan? » 2024-05-31 13:35:49

Use dpkg to install packages that you downloaded manually.

dpkg -i ./skypeforlinux/skypeforlinux_8.109.0.209_amd64.deb

And you will probably need to also install some missing libraries that it complains about. Easiest way is

apt -f install

with no packages named in the command.

#213 Re: Devuan Derivatives » [SOLVED] Exe GNU/Linux live user name and login? » 2024-05-29 14:23:03

I think adding a debian repo without pinning it to a low priority is asking for trouble. You bypass amprolla which filters out systemd. It's also unnecessary because the same package is available through devuan repos in the non-free section.

$ apt policy nvidia-driver
nvidia-driver:
  Installed: (none)
  Candidate: 525.147.05-7~deb12u1
  Version table:
     535.161.08-2~deb12u1 100
        100 http://pkgmaster.devuan.org/merged daedalus-proposed-updates/non-free amd64 Packages
     525.147.05-7~deb12u1 500
        500 http://deb.devuan.org/merged daedalus-updates/non-free amd64 Packages
     525.147.05-4~deb12u1 500
        500 http://deb.devuan.org/merged daedalus/non-free amd64 Packages

Note: I have proposed-updates pinned to low priority (100) and that's why the newest version isn't shown as the Candidate.

#214 Re: Devuan Derivatives » [SOLVED] Exe GNU/Linux live user name and login? » 2024-05-28 14:44:52

Maybe also add set gfxpayload=1280x1024 to the boot command. (or use your favorite resolution)

#215 Re: Devuan Derivatives » [SOLVED] Exe GNU/Linux live user name and login? » 2024-05-27 21:48:29

I'm 99.9% sure that login:password is user:user and root:root and that it should boot to a desktop without logging in.

#216 Re: Other Issues » desktop dress-up » 2024-05-27 10:29:46

I still don't understand what you're trying to do. Do you want an icon that will present images with text to you like a slideshow or powerpoiint presentation? Or do you just want an image with embedded text? What does "self-selected text" mean? I think there's a screensaver that displays sayings from fortune when it runs. Is that something like what you want?

#217 Re: Other Issues » desktop dress-up » 2024-05-26 11:04:10

notify-send will make a popup window with icon and message. The package name is libnotify-bin and it might already be installed.

If you want an icon to sit on the desktop to click and get a message, I think you just need to create a file or shortcut, but how you do it probably depends on what the text message is. Is it a note you wrote or do you want some text generated automatically?

Icons are just image files. You can make one in gimp.

#218 Re: Documentation » [SOLVED] Daedalus runit documentation » 2024-05-24 00:05:40

If you search this forum for 'runit' you will get a lot of hits. This one is probably a good place to start. Lorenzo is the Debian maintainer for runit.
https://dev1galaxy.org/viewtopic.php?id=5555

#219 Re: Devuan Derivatives » Devuan est à la traîne (google: Devuan is lagging behind) ! » 2024-05-16 20:09:42

If google says that devuan is lagging behind debian, then google is confused. Almost all of the packages in devuan are taken directly from debian's repos when you install something.

If you think I was too aggressive when I told you and someone else to stop talking about each other, then I guess you misunderstood. We are here to talk about devuan, not to have personal arguments with other users. Or maybe the part you misunderstood was that I don't want to have a discussion about how to have a discussion. I don't require or want any feedback regarding this particular issue. Just stay on-topic.

@others - Thanks for the support.

#220 Re: Hardware & System Configuration » kernel -- immutable - DEFECT in 6.0 onwards or hardened » 2024-05-14 20:49:33

We don't package the kernel. Bug reports for this should go to debian.

I removed your duplicate posts. This one should be enough in case anyone has a similar setup.

#221 Re: Installation » error install excalibur volume cripto_LUKS » 2024-05-06 19:04:40

Confirmed. I used the amd64 netinstall iso from April 24. That library (libgcc_s.so.1) is in package libgcc-s1 and it's in the iso. I tried dropping to shell and installing it, but that didn't work.

./pool/DEBIAN/main/g/gcc-14/libgcc-s1_14-20240330-1_amd64.deb

#222 Re: Hardware & System Configuration » [SOLVED] Add disk can not boot » 2024-05-06 11:17:46

Check /etc/default/grub to make sure that UUID is not disabled for update-grub. The line should be commented like this:

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

#223 Re: Hardware & System Configuration » Broken link fix? » 2024-05-05 20:13:39

My first thought was maybe a package got removed. I can find clhsdb in daedalus but not in chimaera. In daedalus, apt-file shows the path to be different from what you posted. There's an extra 'jre' in yours. I don't have that package installed, so I don't know what it really does. You can also run dpkg -L <package> to see what files from a package are actually installed on your system.

$ apt-file find clhsdb
openjdk-8-jdk-headless: /usr/lib/jvm/java-8-openjdk-amd64/bin/clhsdb
$ apt-file list openjdk-8-jdk-headless
openjdk-8-jdk-headless: /usr/lib/jvm/java-8-openjdk-amd64/ASSEMBLY_EXCEPTION
openjdk-8-jdk-headless: /usr/lib/jvm/java-8-openjdk-amd64/THIRD_PARTY_README
openjdk-8-jdk-headless: /usr/lib/jvm/java-8-openjdk-amd64/bin/clhsdb
openjdk-8-jdk-headless: /usr/lib/jvm/java-8-openjdk-amd64/bin/extcheck
openjdk-8-jdk-headless: /usr/lib/jvm/java-8-openjdk-amd64/bin/hsdb
<snip>

#224 Re: Hardware & System Configuration » [SOLVED] Add disk can not boot » 2024-05-03 10:50:49

/dev/sda4 does not exist

First thing to try - Go into bios and change the boot order of the hard disks. That might work.

Maybe a better solution is to unplug the new disk, reboot and edit /etc/fstab to use UUID instead of device names.

#225 Re: Devuan » [SOLVED] Why is seatd a hard dependency? » 2024-05-01 10:17:33

Is it also trying to remove libseat1 when it removes seatd?  When I try to remove libseat1, it wants to remove xorg. I can't try to remove seatd because it's not installed. Maybe you could apt install libseat1 to set it to manually installed so it doesn't get removed with seatd.

Board footer

Forum Software