The officially official Devuan Forum!

You are not logged in.

#401 Re: Desktop and Multimedia » [SOLVED] PulseAudio issues on Ceres » 2022-04-02 12:40:10

Head_on_a_Stick wrote:

So was sound working under chimaera? Were your settings saved there?

Its was working. I am upgrade chimaera to ceres and now after upgrade sound is disabled. Manually i can enable it, but i want that its auto work. How i can find settings? Sorry.

#403 Re: Desktop and Multimedia » [SOLVED] PulseAudio issues on Ceres » 2022-04-01 19:25:13

also i have that output

freeartist@devuan:~$ sudo pacmd list-card
[sudo] password for freeartist: 
No PulseAudio daemon running, or not running as session daemon.
freeartist@devuan:~$ 

#405 Re: Desktop and Multimedia » [SOLVED] PulseAudio issues on Ceres » 2022-04-01 18:40:58

Head_on_a_Stick wrote:
deepforest wrote:

Devuan sid

I presume you mean Devuan ceres? The Debian sid repository should not be mixed with Devuan unless you know what you're doing.

deepforest wrote:

How fix that?

Copy the init script in this post to /etc/init.d/alsa-restore then run

# update-rc.d alsa-restore defaults

I did according your instructions. But its same.

root@devuan:/etc/init.d# ls -l /etc/init.d/alsa-restore 
-rwxrwxrwx 1 root root 700 Apr  1 21:23 /etc/init.d/alsa-restore
root@devuan:/etc/init.d# 
/etc/init.d/alsa-restore                                                                                                                                            700/700               100%
#!/bin/sh
# Generated by sysd2v v0.3  --  http://www.trek.eu.org/devel/sysd2v
# kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing.
if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then
    set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script
fi
### BEGIN INIT INFO
# Provides:       alsa-restore
# Required-Start: $remote_fs
# Required-Stop:  $remote_fs
# Default-Start:  2 3 4 5
# Default-Stop:   0 1 6
# Description:    Save/Restore Sound Card State
### END INIT INFO
DESC="alsa-restore"
DAEMON=none
PIDFILE=none

do_start_cmd_override ()
{
  /usr/bin/alsactl restore
  true
}

do_stop_cmd_override ()
{
  /usr/bin/alsactl store
  true
}

do_status_override () :

in boot log i see this

INIT: Entering runlevel: 2

Fri Apr  1 21:26:02 2022: Using makefile-style concurrent boot in runlevel 2.
Fri Apr  1 21:26:03 2022: Starting alsa-restore: none/etc/init.d/alsa-restore: 21: /lib/init/init-d-script: /usr/bin/alsactl: not found
Fri Apr  1 21:26:03 2022: .

UPD
I search alsactl and found it only here at sbin but not bin

root@devuan:/usr/sbin# /usr/sbin/alsactl 

I am replace at script "bin" to "sbin" and again apply command

root@devuan:/usr/sbin# /usr/sbin/alsactl 

But still same, at booting no errors but after booting volume is disabled

UPD2
now at boot log

Fri Apr  1 23:13:08 2022: Starting alsa-restore: none.

#406 Re: Desktop and Multimedia » network manager, couple questions » 2022-04-01 18:20:09

golinux wrote:
deepforest wrote:

I am on sid Devuan

Just to reduce confusion for new readers . . .

There is Debian sid.

There is no Devuan sid.

There IS Devuan ceres.

Devuan ceres identifies, works around some and blacklists other systemd dependencies in Debian sid.

Yes! Apologize me for that)

#407 Re: Desktop and Multimedia » network manager, couple questions » 2022-04-01 18:18:48

Head_on_a_Stick wrote:
deepforest wrote:

Why network some times not working after boot?

Have you checked the NM logs? I don't use it myself but I presume they're under /var/log/.

What is the network hardware & driver?

lspci -knn | grep -iA3 net
deepforest wrote:

Why i have different versions network manager?

Why do you think you have different versions? I can only see v1.36.4-1devuan1 in your two (identical) posted links.

Here info in moment when i see cross at NM

freeartist@devuan:~$ sudo ifconfig
[sudo] password for freeartist: 
eth0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        ether 00:1d:7d:c7:be:43  txqueuelen 1000  (Ethernet)
        RX packets 1  bytes 148 (148.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 91  bytes 12727 (12.4 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 91  bytes 12727 (12.4 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

freeartist@devuan:~$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc fq_codel state DOWN group default qlen 1000
    link/ether 00:1d:7d:c7:be:43 brd ff:ff:ff:ff:ff:ff
freeartist@devuan:~$ dmesg | grep eth0
[    1.650078] r8169 0000:03:00.0 eth0: RTL8168b/8111b, 00:1d:7d:c7:be:43, XID 380, IRQ 19
[    1.650083] r8169 0000:03:00.0 eth0: jumbo features [frames: 4074 bytes, tx checksumming: ko]
[   25.348992] r8169 0000:03:00.0 eth0: Link is Down
freeartist@devuan:~$ 
freeartist@devuan:~$ lspci -k | grep Ethernet
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 01)
	Subsystem: Gigabyte Technology Co., Ltd Onboard Ethernet
freeartist@devuan:~$ 

freeartist@devuan:~$ sudo dmesg | grep r8169
[    1.642156] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[    1.650078] r8169 0000:03:00.0 eth0: RTL8168b/8111b, 00:1d:7d:c7:be:43, XID 380, IRQ 19
[    1.650083] r8169 0000:03:00.0 eth0: jumbo features [frames: 4074 bytes, tx checksumming: ko]
[   25.287147] RTL8211B Gigabit Ethernet r8169-0-300:00: attached PHY driver (mii_bus:phy_addr=r8169-0-300:00, irq=MAC)
[   25.348992] r8169 0000:03:00.0 eth0: Link is Down
freeartist@devuan:~$ 

may be this can help?

/etc/network/interfaces                                                                                                                                             304/304               100%
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet dhcp

#408 Re: Desktop and Multimedia » network manager, couple questions » 2022-04-01 18:17:11

hevidevi wrote:

It may be problem with your nic or network manager. I have from time to time had issues using network manager with devuan and my nic being disabled/down for some reason. Has never happened on any other distro except for Devuan using network manager.

dmesg logs might also give more information once you have given the output of of head on a sticks command.

Before starting using Devuan i have same on Debian 10, 11

#409 Re: Desktop and Multimedia » [SOLVED] init: No inittab.d directory found during boot log » 2022-03-30 20:20:03

chris2be8 wrote:

mkdir /etc/inittab.d as root might get rid of the message.

What is the full text of the message? And what other messages came out at the same time? Those might tell us what is generating the message. Look for it in syslog, dmesg, boot.log etc.

Thank you very much! After creation of dir "/etc/inittab.d" no any warning messages at booting)

#410 Desktop and Multimedia » [SOLVED] PulseAudio issues on Ceres » 2022-03-30 20:17:31

deepforest
Replies: 11

Devuan Ceres

After boot, AWAYS, volume is turned off and output port at audio mixer always sets "Headfones" instead of "Line out".

I need always fix that manually. How fix that?

https://ibb.co/mCHVt6P

#411 Desktop and Multimedia » network manager, couple questions » 2022-03-30 20:02:27

deepforest
Replies: 15

HI)

I am on sid Devuan

Some times after boot network not work(i see red cross on NM applet). Enable and disable Networking via MN is help.

1. Why network some times not working after boot?
https://pastebin.com/raw/NjGMHR2N

2. Why i have different versions network manager?
https://pastebin.com/raw/NjGMHR2N

#412 Re: Installation » [SOLVED] any chances to install nvidia-legacy-340xx on Devuan chimaera? » 2022-03-24 14:59:54

So. My solution.

1. Install or upgrade to Devuan sid
2. go to recovery mode and install just

apt install linux-headers-$(uname -r) build-essential
apt install nvidia-legacy-340xx-kernel-dkms

3. after removed nvidia.conf and "update-initramfs -u"  from

etc/modules-load.d
etc/modprobe.d

All works like a charm! Enjoy of Freedom! Glory and Long live to Devuan team!

#413 Re: Desktop and Multimedia » [SOLVED] init: No inittab.d directory found during boot log » 2022-03-24 14:55:44

Thanks foe reply!

What can i do that the this message doesn't appear? Or simply just ignore it?)

#414 Re: Installation » [SOLVED] any chances to install nvidia-legacy-340xx on Devuan chimaera? » 2022-03-23 23:12:24

Marjorie wrote:

You only need nvidia-persistenced if you are running CUDA.

nixer wrote:

I seem to recall seeing this error before and the easy fix is to uninstall the package "nvidia-persistenced".

And why i have error during full install driver

Errors were encountered while processing:
 nvidia-persistenced
E: Sub-process /usr/bin/dpkg returned an error code (1)

And have no error if i install nvidia-persistenced standalone?

freeartist@devuan:~$ dpkg -s nvidia-persistenced 
Package: nvidia-persistenced
Status: install ok installed
Priority: optional
Section: contrib/utils
Installed-Size: 91
Maintainer: Debian NVIDIA Maintainers <pkg-nvidia-devel@lists.alioth.debian.org>
Architecture: amd64
Multi-Arch: foreign
Version: 470.103.01-2
Depends: libnvidia-cfg1 | libnvidia-tesla-510-cfg1 | libnvidia-tesla-470-cfg1 | libnvidia-tesla-450-cfg1 | libnvidia-tesla-418-cfg1 | libnvidia-legacy-390xx-cfg1 | libnvidia-legacy-340xx-cfg1 | libnvidia-cfg.so.1 | libnvidia-cfg1-any, adduser, libc6 (>= 2.33), libtirpc3 (>= 1.0.2)
Pre-Depends: init-system-helpers (>= 1.54~)
Conffiles:
 /etc/init.d/nvidia-persistenced f24407fda40433544aaf2a2b930fcdbf
Description: daemon to maintain persistent software state in the NVIDIA driver
 When persistence mode is enabled, the daemon prevents the driver from
 releasing device state when the device is not in use.
 This can improve the startup time of new clients in this scenario.
Homepage: https://github.com/NVIDIA/nvidia-persistenced
freeartist@devuan:~$

#417 Re: Installation » [SOLVED] any chances to install nvidia-legacy-340xx on Devuan chimaera? » 2022-03-23 21:03:15

after removed nvidia.conf and "update-initramfs -u"  from

etc/modules-load.d
etc/modprobe.d-remove

error

[    1.584181] udevd[117]: Error running install command 'modprobe -i nvidia-legacy-340xx ' for module nvidia: retcode 1

gone

#418 Installation » [SOLVED] ceres sid update errors » 2022-03-23 20:59:25

deepforest
Replies: 3

/etc/apt/sources.list                                                                                 

# deb cdrom:[Devuan GNU/Linux 4.0 chimaera amd64 - netinstall 20211012]/ chimaera contrib main non-free

#deb cdrom:[Devuan GNU/Linux 4.0 chimaera amd64 - netinstall 20211012]/ chimaera contrib main non-free

#deb http://deb.devuan.org/merged ceres main contrib non-free
#deb-src http://deb.devuan.org/merged ceres main main contrib non-free

#deb http://pkgmaster.devuan.org/merged ceres-security main contrib non-free
#deb-src http://pkgmaster.devuan.org/merged ceres-security main contrib non-free

#deb http://deb.devuan.org/merged ceres-updates main contrib non-free
#deb-src http://deb.devuan.org/merged ceres-updates main contrib non-free

deb http://deb.devuan.org/merged ceres main contrib non-free
deb http://deb.devuan.org/merged ceres-security main contrib non-free
deb http://deb.devuan.org/merged ceres-updates main contrib non-free
deb http://deb.devuan.org/merged ceres-backports main contrib non-free

#deb http://deb.devuan.org/merged chimaera main
#deb-src http://deb.devuan.org/merged chimaera main

#deb http://pkgmaster.devuan.org/merged chimaera-security main contrib non-free
#deb-src http://pkgmaster.devuan.org/merged chimaera-security main contrib non-free

# chimaera-updates, to get updates before a point release is made;
# see https://www.debian.org/doc/manuals/debian-reference/ch02.en.html#_updates_and_backports
#deb http://deb.devuan.org/merged chimaera-updates main contrib non-free
#deb-src http://deb.devuan.org/merged chimaera-updates main contrib non-free

# This system was installed using small removable media
# (e.g. netinst, live or single CD). The matching "deb cdrom"
# entries were disabled at the end of the installation process.
# For information about how to configure apt package sources,
# see the sources.list(5) manual.

root@devuan:/etc/apt# sudo apt-get update

Hit:1 http://deb.devuan.org/merged ceres InRelease
Ign:2 http://deb.devuan.org/merged ceres-security InRelease
Ign:3 http://deb.devuan.org/merged ceres-updates InRelease
Hit:4 https://dl.google.com/linux/chrome/deb stable InRelease
Ign:5 http://deb.devuan.org/merged ceres-backports InRelease
Err:6 http://deb.devuan.org/merged ceres-security Release
  404  Not Found [IP: 185.203.114.135 80]
Err:7 http://deb.devuan.org/merged ceres-updates Release
  404  Not Found [IP: 185.203.114.135 80]
Err:8 http://deb.devuan.org/merged ceres-backports Release
  404  Not Found [IP: 185.203.114.135 80]
Hit:9 http://debian.drdteam.org stable InRelease      
Reading package lists... Done                         
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
W: Target Translations (main/i18n/Translation-en_US) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
E: The repository 'http://deb.devuan.org/merged ceres-security Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://deb.devuan.org/merged ceres-updates Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://deb.devuan.org/merged ceres-backports Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: http://debian.drdteam.org/dists/stable/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
W: Target Translations (main/i18n/Translation-en_US) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/google-chrome.list:3 and /etc/apt/sources.list.d/google.list:1
root@devuan:/etc/apt# 

#419 Re: Installation » [SOLVED] any chances to install nvidia-legacy-340xx on Devuan chimaera? » 2022-03-21 16:22:24

nixer wrote:

Errors were encountered while processing:
nvidia-persistenced
E: Sub-process /usr/bin/dpkg returned an error code (1)

I will assume that you did not install the nvidia drivers with the "--no-install-recommends" part.  If not, then it will install the nvidia-persistenced package.
As for the other error message, I don't know about that.

Yes with "--no-install-recommends" i have no error due installation, thanks!

And what this mean? After install nvidia driver i have this files

/etc/nvidia/legacy-340xx/nvidia-modprobe.conf                                                                                                                       665/665               100%

install nvidia modprobe -i nvidia-legacy-340xx $CMDLINE_OPTS

install nvidia-uvm modprobe nvidia ; modprobe -i nvidia-legacy-340xx-uvm $CMDLINE_OPTS

remove nvidia modprobe -r -i nvidia-uvm nvidia

alias char-major-195* nvidia

# These aliases are defined in *all* nvidia modules.
# Duplicating them here sets higher precedence and ensures the selected
# module gets loaded instead of a random first match if more than one
# version is installed. See #798207.
alias   pci:v000010DEd00000E00sv*sd*bc04sc80i00*        nvidia
alias   pci:v000010DEd00000AA3sv*sd*bc0Bsc40i00*        nvidia
alias   pci:v000010DEd*sv*sd*bc03sc02i00*               nvidia
alias   pci:v000010DEd*sv*sd*bc03sc00i00*               nvidia

and this error during booting

[    1.584181] udevd[117]: Error running install command 'modprobe -i nvidia-legacy-340xx ' for module nvidia: retcode 1

#420 Re: Installation » [SOLVED] any chances to install nvidia-legacy-340xx on Devuan chimaera? » 2022-03-20 13:58:10

i did successfully upgrade distro to ceres sid. And install legacy nvidia driver 340-108-13 It work correctly. BUT i have some warnings due boot and install process.

At end of install i have this message

Errors were encountered while processing:
 nvidia-persistenced
E: Sub-process /usr/bin/dpkg returned an error code (1)

And at boot log i have this

[    1.584181] udevd[117]: Error running install command 'modprobe -i nvidia-legacy-340xx ' for module nvidia: retcode 1

What mean this messages?

#421 Re: Installation » [SOLVED] any chances to install nvidia-legacy-340xx on Devuan chimaera? » 2022-03-19 21:39:23

golinux wrote:

You can download and install just what you need.
pkginfo.devuan.org is a very useful tool.

And how its can help?

Results for package pattern: nvidia-legacy-340xx*
nvidia-legacy-340xx-alternative
340.108-13
http://deb.devuan.org/merged
ceres/non-free
amd64

driver from sid and i use stable

I already tried this trick, but stuck at nvidia-modprobe it broke libc6 and locale
https://forums.debian.net/viewtopic.php … 21#p746211
https://forums.debian.net/viewtopic.php … 35#p752135

#422 Re: Installation » [SOLVED] any chances to install nvidia-legacy-340xx on Devuan chimaera? » 2022-03-19 19:58:06

golinux wrote:

No need to add Debian repo.  Devuan already has it!

Debian sid = Devuan ceres

Thanks. But if i add Ceres repo to my Chimaera, update and install nvidia 340 driver, my OS is turn into Ceres?

#423 Re: Installation » [SOLVED] any chances to install nvidia-legacy-340xx on Devuan chimaera? » 2022-03-19 14:57:49

GlennW wrote:

Hi, What was the out-come of the "broken" nvidia-340xx install?

I have some experience... Maybe I can help. :-)

Hi) Thanks!

340 nvidia driver have no in Devuan repo

root@devuan:/home/freeartist# apt install nvidia-legacy-340xx-kernel-dkms --no-install-recommends
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package nvidia-legacy-340xx-kernel-dkms
root@devuan:/home/freeartist# apt install nvidia-legacy-340xx-driver --no-install-recommends
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package nvidia-legacy-340xx-driver
root@devuan:/home/freeartist# 

340 nvidia driver available only in sid repo of Debian 11. If i link Debian 11 sid repo to Devuan what happened?

Also was tried this trick. But i have stuck at installing nvidia-modprobe it need libc6 that broke locales and etc.
https://forums.debian.net/viewtopic.php … 77#p745277

#424 Re: Installation » [SOLVED] any chances to install nvidia-legacy-340xx on Devuan chimaera? » 2022-03-18 19:15:13

A step by step description and a printout of the terminal as the job progresses would be ideal.

I follow this instructions and broke my Devuan((
https://forums.debian.net/viewtopic.php … 77#p745277

Please post the link.

https://aur.archlinux.org/packages/nvidia-340xx

#425 Re: Installation » [SOLVED] any chances to install nvidia-legacy-340xx on Devuan chimaera? » 2022-03-18 17:47:09

Altoid
Thanks for great explanations man! You awesome!

If you try and succeed, please let us know how you did it and what results you got.

Ok. I am try and report here about result.

The 340XX drivers are propiertary/closed source and Debian cannot supply a 340XX package because Nvidia will not update them for newer kernels.

Arch AUR community patched this drivers for new kernels and its still works.

Board footer

Forum Software