The officially official Devuan Forum!

You are not logged in.

#1 Forum Feedback » Request change name » 2025-11-20 15:29:59

Danielsan
Replies: 0

Dear staff,

it is possible to change my current account name from Danielsan to freezr?

Thanks in advance... 🙏

#2 Re: Hardware & System Configuration » [SOLVED] set up an "AD HOC" connection with HOSTAPD (OPENRC) » 2025-11-19 19:27:00

I found the pebcak: you don't need to specify any gateway if your goal is to create a "direct connection".

Here the steps I made:

  • 1. Install hostapd

  • 2. modify /etc/default/hostapd:

    DAEMON_CONF="/etc/hostapd/hostapd.conf"
  • 3. I need to create direct connection (crosscable), here my interfaces

    # The loopback network interface
    auto lo
    iface lo inet loopback
    
    # # DHCP
    # auto eth0
    # allow-hotplug eth0
    # iface eth0 inet dhcp
    
    # The primary network interface
    auto eth0
    iface eth0 inet static
    	address 10.0.10.1/24
    	netmask 255.255.255.0
    
    # wlan0
    auto wlan0
    iface wlan0 inet static
        address 10.1.10.1/24
        netmask 255.255.255.0
    
    # usb0
    allow-hotplug usb0
    iface usb0 inet dhcp
  • 4. Create: /etc/hostapd/hostapd.conf

    ### Wireless network name ###
    interface=wlan0
    driver=nl80211
    country_code=US
    ssid=$ESSID-NAME
    hw_mode=g
    channel=1
    wpa=2
    wpa_passphrase=$PASSPHRASE
    ## Key management algorithms ##
    wpa_key_mgmt=WPA-PSK
    ## Set cipher suites (encryption algorithms) ##
    ## TKIP = Temporal Key Integrity Protocol
    ## CCMP = AES in Counter mode with CBC-MAC
    wpa_pairwise=TKIP
    rsn_pairwise=CCMP
    ## Shared Key Authentication ##
    auth_algs=1
    ## Accept all MAC address ###
    macaddr_acl=0
  • 5. restart the network: sudo service networking restart

  • 6. start the hostapd deamon: sudo service networking start

⚠️ please be advised that I reverted the name of the interfaces to the legacy naming!

#3 Re: Hardware & System Configuration » [SOLVED] set up an "AD HOC" connection with HOSTAPD (OPENRC) » 2025-11-19 18:41:11

g4sra... Got you but I am already setup this way, unless I am doing a typical pebcak mistake!  🤷

# eth0
auto eth0
iface eth0 inet static
	address 10.0.10.1/24
	netmask 255.255.255.0
	gateway 10.0.10.254

# wlan0
auto wlan0
iface wlan0 inet static
    address 10.1.10.1/24
    netmask 255.255.255.0
    gateway 10.1.10.254

# usb0
allow-hotplug usb0
iface usb0 inet dhcp

#4 Re: Hardware & System Configuration » [SOLVED] set up an "AD HOC" connection with HOSTAPD (OPENRC) » 2025-11-19 16:25:41

Now I have two static IPv4:

sudo ifconfig
[sudo] password for freezr: 
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.0.10.1  netmask 255.0.0.0  broadcast 10.255.255.255
        inet6 fe80::e251:d8ff:fe17:8dcd  prefixlen 64  scopeid 0x20<link>
        ether e0:51:d8:17:8d:cd  txqueuelen 1000  (Ethernet)
        RX packets 947810  bytes 72203287 (68.8 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 3407541  bytes 4858575073 (4.5 GiB)
        TX errors 0  dropped 2097 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 160515  bytes 387653396 (369.6 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 160515  bytes 387653396 (369.6 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

usb0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.92.39.251  netmask 255.255.255.0  broadcast 10.92.39.255
        inet6 fa45::23v7:vvde:la90:d3d4  prefixlen 64  scopeid 0x20<link>
        inet6 5678:lj70:4455:ddfr4:78ip:vvdd:45tr:u7t5  prefixlen 64  scopeid 0x0<global>
        ether 56:a5:lp:78:f5:f3  txqueuelen 1000  (Ethernet)
        RX packets 156925  bytes 214499218 (204.5 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 77688  bytes 11670689 (11.1 MiB)
        TX errors 0  dropped 2 overruns 0  carrier 0  collisions 0

wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.1.10.1  netmask 255.0.0.0  broadcast 10.255.255.255
        ether b0:ac:82:ff:a8:86  txqueuelen 1000  (Ethernet)
        RX packets 3262  bytes 235917 (230.3 KiB)
        RX errors 0  dropped 3  overruns 0  frame 0
        TX packets 3605  bytes 358278 (349.8 KiB)
        TX errors 0  dropped 95 overruns 0  carrier 0  collisions 0

perhaps I should made "that" bridge that I read in other articles like this one:

https://www.cyberciti.biz/faq/debian-ub … ess-point/

🤔

#5 Re: Hardware & System Configuration » [SOLVED] set up an "AD HOC" connection with HOSTAPD (OPENRC) » 2025-11-19 16:17:42

@dzz if I "force" to ignore the issues I can bring up wlan0.

sudo ifup -v --ignore-errors  wlan0

ifup: configuring interface wlan0=wlan0 (inet)
run-parts --verbose /etc/network/if-pre-up.d
run-parts: executing /etc/network/if-pre-up.d/hostapd
run-parts: executing /etc/network/if-pre-up.d/wireless-tools
run-parts: executing /etc/network/if-pre-up.d/wpasupplicant
ip addr add 10.1.10.1/255.255.255.0 broadcast 10.1.10.255 	  dev wlan0 label wlan0
Error: ipv4: Address already assigned.
ip link set dev wlan0   up
 ip route add default via 10.1.10.254  dev wlan0 onlink 
RTNETLINK answers: File exists
run-parts --verbose /etc/network/if-up.d
run-parts: executing /etc/network/if-up.d/mountnfs
run-parts: executing /etc/network/if-up.d/resolved
run-parts: executing /etc/network/if-up.d/wpasupplicant

inxi -bb

Network:
  Device-1: Realtek RTL8821CE 802.11ac PCIe Wireless Network Adapter
    driver: rtw_8821ce
  IF: wlan0 state: up mac: b0:ac:82:ff:a8:86
  Device-2: Realtek RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet
    driver: r8169
  IF: eth0 state: up speed: 1000 Mbps duplex: full mac: e0:51:d8:17:8d:cd
  IF-ID-1: usb0 state: unknown speed: -1 duplex: half mac: 96:e7:cd:80:f0:f7

#6 Re: Hardware & System Configuration » [SOLVED] set up an "AD HOC" connection with HOSTAPD (OPENRC) » 2025-11-19 15:15:40

HOSTAPD made the magic, however I am still unable to bring up wlan0:

sudo ifup wlan0
Error: ipv4: Address already assigned.
ifup: failed to bring up wlan0

#7 Re: Hardware & System Configuration » [SOLVED] set up an "AD HOC" connection with HOSTAPD (OPENRC) » 2025-11-18 20:29:20

Hi g4sra, I will follow you advise however I bought a dongle that should support hot-spot and "ad hoc " mode, then I'll try doing other tests.

#8 Re: Hardware & System Configuration » [SOLVED] set up an "AD HOC" connection with HOSTAPD (OPENRC) » 2025-11-18 20:19:46

Found another hint:

sudo wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant-wlan0.conf -i wlan0
Successfully initialized wpa_supplicant
Note: nl80211 driver interface is not designed to be used with ap_scan=2; this can result in connection failures

I tried to change driver, clearly this wifi chipset doesn't support "ad hoc":

sudo wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant-wlan0.conf -i wlan0 -D wext
Successfully initialized wpa_supplicant
ioctl[SIOCSIWENCODEEXT]: Invalid argument
ioctl[SIOCSIWENCODEEXT]: Invalid argument
wlan0: Trying to associate with SSID 'TEST-ESSID'
ioctl[SIOCSIWGENIE]: Operation not supported
wlan0: Association request to the driver failed
wlan0: Associated with 9a:dc:7c:a0:6d:5a
wlan0: CTRL-EVENT-CONNECTED - Connection to 9a:dc:7c:a0:6d:5a completed [id=0 id_str=]

#9 Re: Hardware & System Configuration » [SOLVED] set up an "AD HOC" connection with HOSTAPD (OPENRC) » 2025-11-18 19:57:50

I found the documentation and what I did looks right:

# mode: IEEE 802.11 operation mode
# 0 = infrastructure (Managed) mode, i.e., associate with an AP (default)
# 1 = IBSS (ad-hoc, peer-to-peer)
# 2 = AP (access point)
# Note: IBSS can only be used with key_mgmt NONE (plaintext and static WEP) and
# WPA-PSK (with proto=RSN). In addition, key_mgmt=WPA-NONE (fixed group key
# TKIP/CCMP) is available for backwards compatibility, but its use is
# deprecated. WPA-None requires following network block options:
# proto=WPA, key_mgmt=WPA-NONE, pairwise=NONE, group=TKIP (or CCMP, but not
# both), and psk must also be set.
#
# frequency: Channel frequency in megahertz (MHz) for IBSS, e.g.,
# 2412 = IEEE 802.11b/g channel 1. This value is used to configure the initial
# channel for IBSS (adhoc) networks. It is ignored in the infrastructure mode.
# In addition, this value is only used by the station that creates the IBSS. If
# an IBSS network with the configured SSID is already present, the frequency of
# the network will be used instead of this configured value.
# IBSS/ad-hoc network with RSN
network={
	ssid="ibss-rsn"
	key_mgmt=WPA-PSK
	proto=RSN
	psk="12345678"
	mode=1
	frequency=2412
	pairwise=CCMP
	group=CCMP
}

#10 Re: Hardware & System Configuration » [SOLVED] set up an "AD HOC" connection with HOSTAPD (OPENRC) » 2025-11-18 18:44:35

That page doesn't include a method to use a WPA protection, therefore any transmission on the air is plain.

#12 Hardware & System Configuration » [SOLVED] set up an "AD HOC" connection with HOSTAPD (OPENRC) » 2025-11-18 14:56:47

Danielsan
Replies: 15

Hi folks,

I am trying to create an "ad hoc" wifi connection through wpa_supplicant; I tried to mix together several sources, but with systemd becoming every day more predominant, it is very difficult finding information for systemdless systems.

This is my adapter:

01:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter

And the firmware is installed.

Here is my interfaces file:

# wlan0
auto wlan0
iface wlan0 inet static
    address 10.1.10.1
    gateway 10.1.10.254
    netmask 24
    #wpa-driver nl80211
    wpa-conf /etc/wpa_supplicant/wpa_supplicant-wlan0.conf

Here my wpa_supplicant-wlan0.conf with permissions set to 600.

ctrl_interface=DIR=/run/wpa_supplicant GROUP=netdev
fast_reauth=1
update_config=1
ap_scan=2

# AD-HOC NETWORK

network={
        ssid="ESSID"
        #psk="..."
        psk=YADA-YADA-YDAD
        frequency=2432
        mode=1
        proto=RSN
        key_mgmt=WPA-PSK
        pairwise=CCMP
        group=CCMP        
}

The wifi is clearly down:

ip link show wlan0
3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default qlen 1000
    link/ether b0:ac:82:ff:a8:86 brd ff:ff:ff:ff:ff:ff

When I try to raise up the wlan0 adapter, it fails:

sudo ifup wlan0
wpa_supplicant: /usr/sbin/wpa_supplicant daemon failed to start
run-parts: /etc/network/if-pre-up.d/wpasupplicant exited with return code 1
ifup: failed to bring up wlan0

And when I try to start the service alone it fails the same; wireless-tools are installed:

sudo service wpa_supplicant start
grep: /etc/init.d/wpa_supplicant: No such file or directory
wpa_supplicant: unrecognized service

Now are two days that I am trying to troubleshoot this issue but I couldn't find any solution.

Thanks… 🙏

#13 Re: Desktop and Multimedia » Issue with Evolution » 2025-11-15 15:27:27

Claws Mail works fine.

Evolution has been good so far... I found that also others dude in the non-systemd spectrum are having issue:

https://forum.artixlinux.org/index.php/ … 340.0.html

Today I got a beefy packages update (including a "libevolution") but it didn't fix the issue... On Debian Trixie I don't have this problem though...  I feel stink of systemd... 🤢

#14 Re: Desktop and Multimedia » Issue with Evolution » 2025-11-13 00:46:27

I am thinking to ditch Evolution, that used to work very well, with Claws Mail... 🤔

#15 Desktop and Multimedia » Issue with Evolution » 2025-11-13 00:42:51

Danielsan
Replies: 4

Hi guys, it looks like this upgrade to Excalibur hasn't been painless at all.

After the video card, the logs, it is time of Evolution:

$ evolution

(org.gnome.Evolution:13855): dbind-WARNING **: 19:32:13.898: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/115/at-spi/bus_0: Permission denied

(evolution-alarm-notify:13878): dbind-WARNING **: 19:32:15.005: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/115/at-spi/bus_0: Permission denied
bwrap: Can't find source path /run/user/115/at-spi: Permission denied

** (org.gnome.Evolution:13855): ERROR **: 19:32:15.205: Failed to fully launch dbus-proxy: Child process exited with code 1
fish: Job 1, 'evolution' terminated by signal SIGTRAP (Trace or breakpoint trap)

I tried to reinstall some packages, but I have this feeling the problem is that I have to (re)install it with all the recommended dependencies that means half gnome... 🤷

#16 Re: Hardware & System Configuration » [SOLVED] Where are my logs? » 2025-11-12 20:06:59

Thank you guys, it might be a me problem and of course another pebcak; but at least I learned how to revert to the usual log system; that has been one of the reason I moved my kid's laptop from Debian to Devuan; journalctl was pissing me off!

#17 Re: Hardware & System Configuration » [SOLVED] Where are my logs? » 2025-11-12 15:28:13

On two computers I have upgraded from Daedalus to Excalibur and I noticed the logs were missing. Logs is not something that I usually messed with, but I don't exclude I could have touched something else that messed up with the logs... 🤷♂️

#18 Re: Hardware & System Configuration » [SOLVED] Where are my logs? » 2025-11-12 13:44:30

I found out that moving from Debian Trixie to Devuan Excalibur the package rsyslog is not installed — and I assume that it is probably missing also in a fresh install.
If you upgrade from Daedalus to Excalibur it will modify rsyslog.conf in order to hide: cron.log; kern.log; mail.log; and user.log.

#19 Re: Hardware & System Configuration » [SOLVED] With Excalibur the intel GPU is using LLVMPIPE instead of UHD » 2025-11-12 00:41:21

I found the problem, it was a pebcak, I tried to move on modesettings removing: xserver-xorg-video-intel; the driver can work practically stateless since none of the options above are recognized anymore...

Now opengl and video decode are working fine:

intel-gpu-top: Intel Geminilake (Gen9) @ /dev/dri/card0 -  152/ 162 MHz;  39% RC6;  0.92/ 4.55 W
        285 irqs/s

         ENGINES     BUSY                                                                   MI_SEMA MI_WAIT
       Render/3D   55.70% |███████████████████████████████████▏                           |      0%      0%
         Blitter    0.00% |                                                               |      0%      0%
           Video    0.00% |                                                               |      0%      0%
    VideoEnhance    0.00% |                                                               |      0%      0%

 PID      MEM      RSS     Render/3D          Blitter            Video          VideoEnhance    NAME       
7404  219480K  219480K |████████▏       ||                ||                ||                | librewolf  
7011   51548K   51036K |▉               ||                ||                ||                | Xorg       
7529     980K     980K |                ||                ||                ||                | RDD Process

However I have this impression that I was confusing and mixing stuff together... So the point is with the MESA driver I can get hardware acceleration practically stateless; with the i915 I couldn't get the hardware and video acceleration; weird but true... 🤷

#20 Re: Hardware & System Configuration » [SOLVED] With Excalibur the intel GPU is using LLVMPIPE instead of UHD » 2025-11-11 23:21:03

I tried to triggering the guc from the kernel but nothing has changed... I don't understand, it looks correct and I get errors nowhere... 😩

#21 Hardware & System Configuration » [SOLVED] Where are my logs? » 2025-11-11 23:13:02

Danielsan
Replies: 7

Hi guys,

How can I restore kern.log; messages.log; syslog; etc.?

I already noticed that were missing in Trixie because of journalctl but it looks like this has affected Devuan as well...

Is there a way to revert this situation and get the usual logs?

Thanks in advance! 🙏

#22 Re: Hardware & System Configuration » [SOLVED] With Excalibur the intel GPU is using LLVMPIPE instead of UHD » 2025-11-11 04:40:57

I check with intel_gpu_top but especially with Netflix, I was getting an average of 20% CPU and 30% GPU, and now again with 100% CPU...

#23 Hardware & System Configuration » [SOLVED] With Excalibur the intel GPU is using LLVMPIPE instead of UHD » 2025-11-10 23:57:11

Danielsan
Replies: 12

Hi guys,

I don't understand why my Xorg setup that was working fine with Dadedalus now is not working properly with Excalibur, the video driver is using LLVMPIPE instead of the GPU acceleration. It was going great and I expected with Excalibur to go even better... 🤷♂️

As driver I am using the Intel one provided on kernel:

lsmod | grep i915
i915                 4386816  4
drm_buddy              24576  1 i915
drm_display_helper    274432  1 i915
cec                    69632  2 drm_display_helper,i915
ttm                   106496  1 i915
drm_kms_helper        253952  2 drm_display_helper,i915
i2c_algo_bit           16384  1 i915
drm                   774144  8 i2c_hid,drm_kms_helper,drm_display_helper,drm_buddy,i915,ttm
video                  81920  3 asus_wmi,asus_nb_wmi,i915
Section "Device"
	Identifier	"Intel Graphics"
	Driver      "intel"
	Option 	"DRI" "iris"
	Option      "AccelMethod"     "sna"
	Option      "TearFree"        "false"
	Option      "TripleBuffer"    "false"
	Option      "SwapbuffersWait" "false"
EndSection

It looks properly load on the XORG log:

X.Org X Server 1.21.1.16
X Protocol Version 11, Revision 0
[  6229.053] Current Operating System: Linux a11bk 6.12.48+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.48-1 (2025-09-20) x86_64
[  6229.053] Kernel command line: BOOT_IMAGE=/vmlinuz-6.12.48+deb13-amd64 root=/dev/mapper/a11bk--vg-root ro quiet
[  6229.053] xorg-server 2:21.1.16-1.3+deb13u1devuan1 (https://www.devuan.org/os/community) 
[  6229.053] Current version of pixman: 0.44.0
[  6229.053] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  6229.053] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  6229.053] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Nov 10 01:45:21 2025
[  6229.054] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  6229.054] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  6229.054] (==) No Layout section.  Using the first Screen section.
[  6229.054] (==) No screen section available. Using defaults.
[  6229.054] (**) |-->Screen "Default Screen Section" (0)
[  6229.054] (**) |   |-->Monitor "<default monitor>"
[  6229.054] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[  6229.054] (**) |   |-->Device "Intel Graphics"
[  6229.054] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[  6229.054] (**) Allowing byte-swapped clients
[  6229.054] (==) Automatically adding devices
[  6229.054] (==) Automatically enabling devices
[  6229.054] (==) Automatically adding GPU devices
[  6229.054] (==) Automatically binding GPU devices
[  6229.054] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  6229.054] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[  6229.054] 	Entry deleted from font path.
[  6229.054] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	built-ins
[  6229.054] (==) ModulePath set to "/usr/lib/xorg/modules"
[  6229.054] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[  6229.054] (II) Loader magic: 0x55714160fea0
[  6229.054] (II) Module ABI versions:
[  6229.054] 	X.Org ANSI C Emulation: 0.4
[  6229.054] 	X.Org Video Driver: 25.2
[  6229.054] 	X.Org XInput driver : 24.4
[  6229.054] 	X.Org Server Extension : 10.0
[  6229.054] (++) using VT number 7

[  6229.054] (II) seat-libseat: libseat integration requires -keeptty and -keeptty was not provided, disabling libseat integration
[  6229.055] (II) xfree86: Adding drm device (/dev/dri/card0)
[  6229.055] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[  6229.067] (--) PCI:*(0@0:2:0) 8086:3185:1043:1132 rev 6, Mem @ 0xa0000000/16777216, 0x90000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[  6229.067] (II) LoadModule: "glx"
[  6229.068] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  6229.069] (II) Module glx: vendor="X.Org Foundation"
[  6229.069] 	compiled for 1.21.1.16, module version = 1.0.0
[  6229.069] 	ABI class: X.Org Server Extension, version 10.0
[  6229.069] (II) LoadModule: "intel"
[  6229.069] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[  6229.070] (II) Module intel: vendor="X.Org Foundation"
[  6229.070] 	compiled for 1.21.1.3, module version = 2.99.917
[  6229.070] 	Module class: X.Org Video Driver
[  6229.070] 	ABI class: X.Org Video Driver, version 25.2
[  6229.070] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
	i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
	915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
	Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
	GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[  6229.070] (II) intel: Driver for Intel(R) HD Graphics
[  6229.070] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[  6229.070] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[  6229.071] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 0
[  6229.071] (II) intel(0): SNA compiled: xserver-xorg-video-intel 2:2.99.917+git20210115-1 (Timo Aaltonen <tjaalton@debian.org>)
[  6229.071] (II) intel(0): SNA compiled for use with valgrind
[  6229.072] (--) intel(0): gen9 engineering sample
[  6229.072] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2; using a maximum of 2 threads
[  6229.072] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[  6229.072] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[  6229.072] (==) intel(0): RGB weight 888
[  6229.072] (==) intel(0): Default visual is TrueColor
[  6229.072] (**) intel(0): Option "AccelMethod" "sna"
[  6229.072] (**) intel(0): Option "DRI" "iris"
[  6229.072] (**) intel(0): Option "SwapbuffersWait" "false"
[  6229.072] (**) intel(0): Option "TripleBuffer" "false"
[  6229.072] (**) intel(0): Option "TearFree" "false"
[  6229.073] (II) intel(0): Output eDP1 has no monitor section
[  6229.073] (**) intel(0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
[  6229.073] (II) intel(0): Enabled output eDP1
[  6229.073] (II) intel(0): Output HDMI1 has no monitor section
[  6229.074] (II) intel(0): Enabled output HDMI1
[  6229.074] (II) intel(0): Output DP1 has no monitor section
[  6229.074] (II) intel(0): Enabled output DP1
[  6229.074] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[  6229.074] (II) intel(0): Output VIRTUAL1 has no monitor section
[  6229.074] (II) intel(0): Enabled output VIRTUAL1
[  6229.074] (--) intel(0): Output eDP1 using initial mode 1366x768 on pipe 0
[  6229.074] (**) intel(0): TearFree disabled
[  6229.074] (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
[  6229.074] (==) intel(0): DPI set to (96, 96)
[  6229.074] (II) Loading sub module "dri3"
[  6229.074] (II) LoadModule: "dri3"
[  6229.074] (II) Module "dri3" already built-in
[  6229.074] (II) Loading sub module "dri2"
[  6229.074] (II) LoadModule: "dri2"
[  6229.074] (II) Module "dri2" already built-in
[  6229.074] (II) Loading sub module "present"
[  6229.074] (II) LoadModule: "present"
[  6229.074] (II) Module "present" already built-in
[  6229.075] (II) intel(0): SNA initialized with Geminilake (gen9) backend
[  6229.075] (==) intel(0): Backing store enabled
[  6229.075] (==) intel(0): Silken mouse enabled
[  6229.075] (II) intel(0): HW Cursor enabled
[  6229.075] (==) intel(0): DPMS enabled
[  6229.075] (==) intel(0): Display hotplug detection enabled
[  6229.075] (II) intel(0): [DRI2] Setup complete
[  6229.075] (II) intel(0): [DRI2]   DRI driver: iris
[  6229.075] (II) intel(0): [DRI2]   VDPAU driver: va_gl
[  6229.075] (II) intel(0): direct rendering: DRI2 enabled
[  6229.075] (II) intel(0): hardware support for Present enabled
[  6229.075] (II) Initializing extension Generic Event Extension
[  6229.076] (II) Initializing extension SHAPE
[  6229.076] (II) Initializing extension MIT-SHM
[  6229.076] (II) Initializing extension XInputExtension
[  6229.076] (II) Initializing extension XTEST
[  6229.076] (II) Initializing extension BIG-REQUESTS
[  6229.076] (II) Initializing extension SYNC
[  6229.077] (II) Initializing extension XKEYBOARD
[  6229.077] (II) Initializing extension XC-MISC
[  6229.077] (II) Initializing extension SECURITY
[  6229.077] (II) Initializing extension XFIXES
[  6229.077] (II) Initializing extension RENDER
[  6229.077] (II) Initializing extension RANDR
[  6229.078] (II) Initializing extension COMPOSITE
[  6229.078] (II) Initializing extension DAMAGE
[  6229.078] (II) Initializing extension MIT-SCREEN-SAVER
[  6229.078] (II) Initializing extension DOUBLE-BUFFER
[  6229.078] (II) Initializing extension RECORD
[  6229.078] (II) Initializing extension DPMS
[  6229.079] (II) Initializing extension Present
[  6229.079] (II) Initializing extension DRI3
[  6229.079] (II) Initializing extension X-Resource
[  6229.079] (II) Initializing extension XVideo
[  6229.079] (II) Initializing extension XVideo-MotionCompensation
[  6229.079] (II) Initializing extension SELinux
[  6229.079] (II) SELinux: Disabled on system
[  6229.079] (II) Initializing extension GLX
[  6229.136] (II) AIGLX: Loaded and initialized iris
[  6229.136] (II) GLX: Initialized DRI2 GL provider for screen 0
[  6229.136] (II) Initializing extension XFree86-VidModeExtension
[  6229.136] (II) Initializing extension XFree86-DGA
[  6229.136] (II) Initializing extension XFree86-DRI
[  6229.136] (II) Initializing extension DRI2
[  6229.138] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[  6229.144] (II) intel(0): Setting screen physical size to 361 x 203
[  6229.186] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
[...]

However when I check (and I test it) it using LLVMPIPE:

glxinfo -B
name of display: :0.0
display: :0  screen: 0
direct rendering: Yes
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: Mesa (0xffffffff)
    Device: llvmpipe (LLVM 19.1.7, 128 bits) (0xffffffff)
    Version: 25.0.7
    Accelerated: no
    Video memory: 3745MB
    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: 1509 MB, largest block: 1509 MB
    Texture free memory - total: 31 MB, largest block: 31 MB
    Texture free aux. memory - total: 1509 MB, largest block: 1509 MB
    Renderbuffer free memory - total: 31 MB, largest block: 31 MB
    Renderbuffer free aux. memory - total: 1509 MB, largest block: 1509 MB
Memory info (GL_NVX_gpu_memory_info):
    Dedicated video memory: 660757 MB
    Total available memory: 664502 MB
    Currently available dedicated video memory: 31 MB
OpenGL vendor string: Mesa
OpenGL renderer string: llvmpipe (LLVM 19.1.7, 128 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

Any recommendation to fix this?
Thanks... 🙏

#24 Re: Freedom Hacks » ALSA without PulseAudio and PipeWire » 2025-11-10 15:23:57

Thanks good to know... The only limits I remember with dmix/alsa was the inability to switch from internal audio to hdmi audio, and thus I had to invoke a custom script shell, but for my battle laptop I could get rid off of both pulse and pipewire though... 🤔

#25 Re: Freedom Hacks » ALSA without PulseAudio and PipeWire » 2025-11-10 14:58:40

I saw there is a conf file but it is not active:

s -l /etc/alsa/conf.d/
total 4
lrwxrwxrwx 1 root root  44 Jul 29  2024 10-rate-lav.conf -> /usr/share/alsa/alsa.conf.d/10-rate-lav.conf
lrwxrwxrwx 1 root root  46 Jul 29  2024 10-samplerate.conf -> /usr/share/alsa/alsa.conf.d/10-samplerate.conf
lrwxrwxrwx 1 root root  45 Jul 29  2024 10-speexrate.conf -> /usr/share/alsa/alsa.conf.d/10-speexrate.conf
lrwxrwxrwx 1 root root  48 Jul 29  2024 50-arcam-av-ctl.conf -> /usr/share/alsa/alsa.conf.d/50-arcam-av-ctl.conf
lrwxrwxrwx 1 root root  40 Jul 29  2024 50-jack.conf -> /usr/share/alsa/alsa.conf.d/50-jack.conf
lrwxrwxrwx 1 root root  39 Jul 29  2024 50-oss.conf -> /usr/share/alsa/alsa.conf.d/50-oss.conf
lrwxrwxrwx 1 root root  46 Jul 29  2024 50-pulseaudio.conf -> /usr/share/alsa/alsa.conf.d/50-pulseaudio.conf
lrwxrwxrwx 1 root root  47 Jul 29  2024 60-a52-encoder.conf -> /usr/share/alsa/alsa.conf.d/60-a52-encoder.conf
lrwxrwxrwx 1 root root  41 Jul 29  2024 60-speex.conf -> /usr/share/alsa/alsa.conf.d/60-speex.conf
lrwxrwxrwx 1 root root  41 Jul 29  2024 60-upmix.conf -> /usr/share/alsa/alsa.conf.d/60-upmix.conf
lrwxrwxrwx 1 root root  44 Jul 29  2024 60-vdownmix.conf -> /usr/share/alsa/alsa.conf.d/60-vdownmix.conf
lrwxrwxrwx 1 root root  46 Jul 29  2024 98-usb-stream.conf -> /usr/share/alsa/alsa.conf.d/98-usb-stream.conf
-rw-r--r-- 1 root root 201 Jul  5  2022 99-pulseaudio-default.conf.example
lrwxrwxrwx 1 root root  38 Mar  9  2025 99-pulse.conf -> /usr/share/alsa/alsa.conf.d/pulse.conf

Board footer

Forum Software