The officially official Devuan Forum!

You are not logged in.

#176 Re: Installation » [SOLVED] I had to remove my own user and add it back, what do I do now? » 2023-08-29 11:36:00

To own the files again, you may recursively do 'chown' or 'chgrp', e.g.:

sudo chown -R user /path/to/directrory/to/own

#177 Re: Desktop and Multimedia » [SOLVED] manually mount disks always have different mount points? » 2023-08-29 10:46:41

deepforest wrote:

why every reboot sda, sdb, sdc, disks swapped?

That is a good question for Intel.

As written before, you may want to use uuids or labels to identify partitions.

#178 Re: Installation » [SOLVED] Devuan 5.0 VLC cannot play some mp4 files well, many mosaics. » 2023-08-26 20:22:01

Can this be caused by missing firmware for the graphics device?
If so, and since you upgraded from chimaera, is 'non-free-firmware' in sources.list?

#179 Re: Other Issues » Lazarus package broken? » 2023-08-25 17:46:34

Tritonio wrote:

I guess apt isn't that smart and I need to manually fix the versions of these two packages?

apt will not downgrade a package versions, unless you pin it.

#180 Re: Installation » wine32 wants to remove desktop-base » 2023-08-21 08:36:51

2talltech wrote:

Ok, np. 'dpkg --add-architecture i386; apt update; apt install wine32:i386'


Just crossed my head:
Does it help, if you put apt upgrade in between 'apt update' and 'apt install wine32:i386' ? Might be helpful to sort out the dependencies.

EDIT: No, that was nonsense. Sorry.

#181 Re: ARM Builds » [SOLVED] Clock does not update. Daedalus, arm64 Rasp Pi. NTP server not running » 2023-08-19 09:33:10

Or it was a bug:

I got the same installation and error respective ntp on my pc.
Beside the fail-message, ntpd was actually running (ps ax | grep ntpd).
The final fix in my case was: apt purge ntp. EDIT: To have ntp in any case, additionally: apt install ntpsec

Description:
There were two init.d-scripts existing, both return "fail" on "status".
/etc/init.d/ntp
/etc/init.d/ntpsec
After doing apt purge ntp, the file /etc/init.d/ntp was gone and /etc/init.d/ntpsec status now returns correctly "running".
Re-installing for testing purposes: apt install ntp did not harm anymore, it turned into a basically empty (meta-)package. I don't remember the exact content, but ntp was a "real" package with functionality.

Summary / assumption: package ntp was not upgraded corectly by the new metapackage. The (installed file-)content changed after de- and re-installing it.

ExposeGlobalistsMadness wrote:

After upgrading from Devuan Chimaera to Daedalus  (...)

$ sudo service ntp status
NTP server is not running ... failed!

(...)
2) For Bookworm, "The ntp package, which used to be the default way to set the system clock from a Network Time Protocol (NTP) server, has been replaced by ntpsec. (...)

$ apt list --installed | grep ntp
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.

ntp/stable,stable,now 1:4.2.8p15+dfsg-2~1.2.2+dfsg1-1 all [installed]
ntpsec/stable,now 1.2.2+dfsg1-1 arm64 [installed,automatic]
python3-ntp/stable,now 1.2.2+dfsg1-1 arm64 [installed,automatic]

#183 Re: Desktop and Multimedia » nvidia-persistenced failed to initialize » 2023-08-18 12:28:51

I don't think it is "bug 700".
700 does not harm, it is an unhappy apt, complaining about an unfinished package installation, which functionally succeeded. Anything else is in order.
The error message looks like something went wrong with nvidia-persistenced.

What about the 2 not upgraded packages?
Just hoping that apt upgrade or dist-upgrade might fix it.
And de-installation is an option too.

#185 Re: Desktop and Multimedia » Ceres upgading error to kernel 6.4 » 2023-08-16 05:56:24

To complete #2:
I never tried to boot the kernel with the error during module compilation, just returned to daedalus' 6.1.
And there is a nvidia card involved as well, using the current driver version.

#186 Re: Desktop and Multimedia » Ceres upgading error to kernel 6.4 » 2023-08-15 22:04:26

No solution, but it is quite similar in daedalus using the liquorix kernel. It worked up to 6.3, 6.4 shows an error as above.

#187 Re: Installation » Devuan 5.0 netinstall failed [loading boot loader] » 2023-08-15 19:32:11

jacksprat wrote:

The drive has several partitions with different distributions [antix, void] that I do not want to distrurb.

There can be only ONE grub in the MBR.
Booting the respective installation and doing update-grub (or aquivalent command) should find the new installed devuan and make a boot-entry for it.

#188 Re: Installation » Devuan 5 daedalus gnome wayland doesn't work with nvidia » 2023-08-15 11:33:46

The following worked for me to migrate bookworm to daedalus in a virtual machine.
ssh'ed in the vm, then copy-pasted commands.

No guaranty!

$ cat migration.notes.txt

# commands done as "root" 

# stage 1:
apt update
apt upgrade
#apt install sysvinit-core ntp              # no X
apt install sysvinit-core ntp slim openbox  # simple DM and WM to not loose X eventually 
reboot

# stage 2
# keep network as it is
echo 'GRUB_CMDLINE_LINUX="net.ifnames=1"' >>/etc/default/grub
update-grub

keyring="devuan-keyring_2023.05.28_all.deb"     # daedalus 
[ ! -f "$keyring" ] && wget http://deb.devuan.org/merged/pool/DEVUAN/main/d/devuan-keyring/"$keyring"
dpkg -i "$keyring"

file="/etc/apt/sources.list.debian"
[ ! -f "$file" ] && cp -a /etc/apt/sources.list "$file" 
cat << EOF >/etc/apt/sources.list
deb http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware
# add recommended repos 
EOF

apt update
apt upgrade
apt dist-upgrade

apt purge systemd  # just to be sure
# likely, more stuff was de-installed  
# a syslogd may be missing

#189 Re: Installation » Devuan 5 daedalus gnome wayland doesn't work with nvidia » 2023-08-14 20:12:32

Marjorie wrote:

The problem seems to be with removing systemd at Pid 1, and not locking the system.

# apt install sysvinit-core 
# reboot

and init is pid 1.

#190 Re: Desktop and Multimedia » [SOLVED] HDMI - no sound output; microphone - no sound input » 2023-08-09 13:20:14

Just curious: Does the sound work in devuan when using /etc/modprobe.d/alsa-base.conf from ubuntu?

#191 Re: Installation » [SOLVED] Is nvidia-persistenced even neccessary? It fails while installing driv » 2023-08-07 12:33:08

Usually not.

$ sudo apt purge nvidia-persistenced

It took me a lot of time to come to that point.

Or, if you want to keep it:

$ sudo /etc/init.d/nvidia-persistenced stop
$ sudo apt install 

Then apt should be happy again.

#192 Re: Desktop and Multimedia » [SOLVED] HDMI - no sound output; microphone - no sound input » 2023-08-05 20:47:13

Sound is not a general problem. Notebooks can be special in different degrees.

A bit of googling:
Ubuntu seems to produce custom images for the Latitude 3420. https://ubuntu.com/certified/202101-28600
There was a question about missing sound here: https://askubuntu.com/questions/1291829 … -ubuntu-20
Not exactly the same model, maybe the answer applies to your case too.

#193 Re: Other Issues » [SOLVED] Is it possible to install czkawka? » 2023-08-05 18:12:22

The point on appimage is to have no dependencies.

Try the big one - the small one is a broken, it has the mentioned dependency.

#194 Re: Desktop and Multimedia » [SOLVED] HDMI - no sound output; microphone - no sound input » 2023-08-04 21:51:48

vrgovinda wrote:

Ubuntu which came pre-installed has everything working out of the box with kernel version 5.14 and pulseaudio. I am unable to understand if this is a problem specific to 5.10.

Don't know either, there should be no problem with 5.10. Alsa devices are looking good too.

I did a bit of testing, but have no speaker connected to any HDMI output ... .
I temporary installed pulsaudio, and could switch to a HDMI output device. The config was present.
qasmixer shows no level-fader for the HDMI audio output.

The generic name for the current kernel is "linux-image-amd64"

$ sudo apt install linux-image-amd64

should install daedalus' kernel 6.1.

#195 Re: Installation » The Perfect instalation ( Help! ) » 2023-08-04 00:50:17

I would
(1) invest in a new small SSD - just 20 bugs, it's worth it.
(2) use the the nvidia drivers from the non-free devuan repo (not the installer offered by nvidia)
(3) sysV-init is default

The counterpart to debian bookworm is devuan daedalus (but not yet released as new stable), the current stable release is still chimaera.

#196 Re: Desktop and Multimedia » [SOLVED] HDMI - no sound output; microphone - no sound input » 2023-08-03 23:52:10

You mentioned the kernel version: 5.10 is chimaera, daedalus has 6.1 and I would use this. Maye the old kernel is still booted as default for some reason?

The following command shows all sound devices on my box:

 $ cat  /proc/asound/pcm
00-00: ALC1150 Analog : ALC1150 Analog : playback 1 : capture 1
00-01: ALC1150 Digital : ALC1150 Digital : playback 1
00-02: ALC1150 Alt Analog : ALC1150 Alt Analog : capture 1
01-03: HDMI 0 : HDMI 0 : playback 1
01-07: HDMI 1 : HDMI 1 : playback 1

That's all I got ...

#197 Re: Installation » Howto install dual-boot Windows Linux best method » 2023-07-29 08:36:49

The title includes "dual-boot" and "best method".

20 bugs for an addional SSD - it's worth it.

One operating system per physical drive is a clear approach.
Installations can be done in a way that each drive can boot its operating system independently.
Since only one drive can boot as default, other drives may be selected through the "BIOS boot menu" ([F12] on my computer).
But grub can detect and start most operating systems anyway.

#198 Re: Installation » [SOLVED] server can not be found » 2023-07-16 07:54:16

Just recognised:

root@devuan:~# ssh devuan  

is (herer) equal to

root@devuan:~# ssh root@devuan

To login with a non-roor-user:

root@devuan:~# ssh your-non-root-user@devuan

Does this work?

#199 Re: Installation » [SOLVED] server can not be found » 2023-07-15 20:56:59

Sorry, I messed up the fist answer rerspective systemctl ... just one missing "no" .
This is systemd stuff and does not apply to devuan. Scrpts like "ssh.service"  may exist but are not used here.

root login via ssh might be forbidden by default. Does a non-root-user can login via ssh?
To get the state of sshd:

$ /etc/init.d/ssh status

#200 Re: Installation » [SOLVED] server can not be found » 2023-07-15 08:37:35

Good morning. Not sure about the question, there is systemctl in devuan. I usually do

$ sudo apt install task-ssh-server

to have ssh server installed and running.

EDIT:
Ooops, I messed this up entirely:  "... there is no systemctl in my devuan" is correct.

Board footer

Forum Software