The officially official Devuan Forum!

You are not logged in.

#1 Re: Hardware & System Configuration » [SOLVED] syslog not being rotated » 2026-04-19 08:55:52

Editing /etc/logrotate.d/rsyslog like this

[...]
	postrotate
		invoke-rc.d rsyslog rotate > /dev/null
	endscript
[...]

solved the issue. I suppose there's something wrong in the /usr/lib/rsyslog/rsyslog-rotate test condition

#2 Hardware & System Configuration » [SOLVED] syslog not being rotated » 2026-04-18 16:54:04

dgiglio
Replies: 4

The first entry in /var/log/syslog dates back to October 2025, and the file takes now more than 150MB

The content of /etc/logrotate.d/rsyslog is

/var/log/syslog
/var/log/mail.log
/var/log/kern.log
/var/log/auth.log
/var/log/user.log
/var/log/cron.log
{
	rotate 4
	weekly
	missingok
	notifempty
	compress
	delaycompress
	sharedscripts
	postrotate
		/usr/lib/rsyslog/rsyslog-rotate
	endscript
}

while /usr/lib/rsyslog/rsyslog-rotate contains

#!/bin/sh

if [ -d /run/systemd/system ]; then
    systemctl kill -s HUP --kill-whom=main rsyslog.service
else
    invoke-rc.d rsyslog rotate > /dev/null
fi

Any clue?

#3 Re: Hardware & System Configuration » Open nvidia drivers only use Mesa as renderer » 2025-10-04 08:07:48

This is my nvidia-smi output

+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 550.163.01             Driver Version: 550.163.01     CUDA Version: N/A      |
|-----------------------------------------+------------------------+----------------------+
| GPU  Name                 Persistence-M | Bus-Id          Disp.A | Volatile Uncorr. ECC |
| Fan  Temp   Perf          Pwr:Usage/Cap |           Memory-Usage | GPU-Util  Compute M. |
|                                         |                        |               MIG M. |
|=========================================+========================+======================|
|   0  NVIDIA GeForce GTX 1660 Ti     Off |   00000000:08:00.0  On |                  N/A |
| 41%   30C    P8             10W /  120W |      18MiB /   6144MiB |      0%      Default |
|                                         |                        |                  N/A |
+-----------------------------------------+------------------------+----------------------+
                                                                                         
+-----------------------------------------------------------------------------------------+
| Processes:                                                                              |
|  GPU   GI   CI        PID   Type   Process name                              GPU Memory |
|        ID   ID                                                               Usage      |
|=========================================================================================|
|  No running processes found                                                             |
+-----------------------------------------------------------------------------------------+

And this is glxinfo -B

name of display: :0
display: :0  screen: 0
direct rendering: Yes
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: Mesa (0xffffffff)
    Device: llvmpipe (LLVM 19.1.7, 256 bits) (0xffffffff)
    Version: 25.0.7
    Accelerated: no
    Video memory: 32012MB
    Unified memory: yes
    Preferred profile: core (0x1)
    Max core profile version: 4.5
    Max compat profile version: 4.5
    Max GLES1 profile version: 1.1
    Max GLES[23] profile version: 3.2
Memory info (GL_ATI_meminfo):
    VBO free memory - total: 31 MB, largest block: 31 MB
    VBO free aux. memory - total: 28303 MB, largest block: 28303 MB
    Texture free memory - total: 31 MB, largest block: 31 MB
    Texture free aux. memory - total: 28303 MB, largest block: 28303 MB
    Renderbuffer free memory - total: 31 MB, largest block: 31 MB
    Renderbuffer free aux. memory - total: 28303 MB, largest block: 28303 MB
Memory info (GL_NVX_gpu_memory_info):
    Dedicated video memory: 380161 MB
    Total available memory: 412173 MB
    Currently available dedicated video memory: 31 MB
OpenGL vendor string: Mesa
OpenGL renderer string: llvmpipe (LLVM 19.1.7, 256 bits)
OpenGL core profile version string: 4.5 (Core Profile) Mesa 25.0.7-2
OpenGL core profile shading language version string: 4.50
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile

OpenGL version string: 4.5 (Compatibility Profile) Mesa 25.0.7-2
OpenGL shading language version string: 4.50
OpenGL context flags: (none)
OpenGL profile mask: compatibility profile

OpenGL ES profile version string: OpenGL ES 3.2 Mesa 25.0.7-2
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20

#4 Re: Documentation » Devuan 6.0 documentation of how to enable pipewire even in KDE Wayland » 2025-10-02 23:18:05

I run this script:

#!/usr/bin/env bash

# kill any existing pipewire instance to restore sound
pkill -u "$USER" -fx /usr/bin/pipewire-pulse 1>/dev/null 2>&1
pkill -u "$USER" -fx /usr/bin/wireplumber 1>/dev/null 2>&1
pkill -u "$USER" -fx /usr/bin/pipewire 1>/dev/null 2>&1

exec /usr/bin/pipewire &

# wait for pipewire to start before attempting to start related daemons
while [ "$(pgrep -f /usr/bin/pipewire)" = "" ] ; do
   sleep 1
done

exec /usr/bin/wireplumber &

# wait for wireplumber to start before attempting to start pipewire-pulse
while [ "$(pgrep -f /usr/bin/wireplumber)" = "" ] ; do
   sleep 1
done

exec /usr/bin/pipewire-pulse &

#5 Re: Hardware & System Configuration » [SOLVED] Suddenly no audio » 2025-09-29 08:51:48

Same issue. I had switched from pulseaudio to pipewire. At the moment I have to run a script to start the service that exposes audio resources.
If it's your case too, I can provide the script later.

#6 Hardware & System Configuration » Open nvidia drivers only use Mesa as renderer » 2025-09-16 20:46:26

dgiglio
Replies: 3

No matter what, I was unable to configure correctly the open nvidia drivers (v550). I almost followed this https://wiki.debian.org/NvidiaGraphicsDrivers which is pretty old.
The only way I was able to use nvidia drivers was availing to the closed version. But now I'm struggling to make Wayland run.
Any clue?
Thanks in advance

Board footer

Forum Software