The officially official Devuan Forum!

You are not logged in.

#1 Re: Desktop and Multimedia » A devuan wiki page on virt-manager » 2024-03-19 19:43:55

I also use command line and spicy to connect to the console.

To set up a network bridge (all commands assume that the user executing qemu belongs to group kvm and VMs' IP numbers start with 192.168.128.2):

  • set up qemu-bridge-helper (has to be done once after upgrade):

    chgrp kvm /usr/lib/qemu/qemu-bridge-helper
    chmod 554 /usr/lib/qemu/qemu-bridge-helper
    setcap CAP_NET_ADMIN,CAP_NET_RAW,CAP_NET_BIND_SERVICE=ep /usr/lib/qemu/qemu-bridge-helper
  • enable bridge at boot:

    echo 1 > /proc/sys/net/ipv4/ip_forward
    ip link add name brvm type bridge
    ip addr add 192.168.128.1/24 dev brvm
    ip link set up brvm
    iptables -t nat -A POSTROUTING -s 192.168.128.0/24 -o eth+ -j MASQUERADE
    iptables -t nat -A POSTROUTING -s 192.168.128.0/24 -o wlan+ -j MASQUERADE
  • pass this parameter when launching qemu:
    -netdev tap,id=eth,br=brvm,helper=/usr/lib/qemu/qemu-bridge-helper

It is also possible to attach dhcpd and/or radvd to brvm for automatic address space management. By changing those ip commands above you may bridge brvm with workstation's ethernet interface and allow attaching VMs directly to the LAN.

#2 Re: Installation » Install ZFS » 2022-10-31 22:37:41

apulse doesn't always work unfortunately. It causes Firefox to freeze on my laptop.

One very bad thing about DKMS is that it launches all build commands as root. After some decades they finally moved wget to _apt, so maybe module builder will also get its own user _dkms by the end of 2030's.

#3 Re: Desktop and Multimedia » How disable apparmor? » 2022-10-31 22:23:35

Nothing. If you don't use it though it is safe to remove it.

Apparmor is on linux-image's recommended list, and that's why it may get selected automatically whenever a new kernel appears.

#4 Re: Desktop and Multimedia » amixer-gtk » 2022-09-11 13:54:24

This app obviously lacks some features like sound device selection. However it's pretty fine for a 0.1 release 👍

charliebrownau wrote:

* Ungoogled Chromium - Works with ALSA

Googled Chrome also works with ALSA. It's just Firefox developers who decided to relegate their browser back to the silent fim era.

Board footer

Forum Software