You are not logged in.
Pages: 1
I feel like I'm doing something really stupid here, but I thought that when you chmod or chown something, it's supposed to be permanent, but it doesn't, at least, not for me. Everytime I restart the computer, I have to chmod /dev/dsp, /dev/adsp, etc in order to get full functionality out of sound. I don't know what I'm doing wrong here. I tried finding out through google and the arch wiki, but I couldn't find anything on it.
Offline
The devices are generated dynamically (e.g. during boot). The files you are chmodding are not actually the same, only their names are.
Add the user that should use sound to the audio group:
sudo usermod -a -G audio USERNAME
There are many other groups you may want to be member of: network, video, floppy, storage, slocate, dbus, camera, scanner, ... Read /etc/group for existing groups.
Offline
The devices are generated dynamically (e.g. during boot). The files you are chmodding are not actually the same, only their names are.
Add the user that should use sound to the audio group:
sudo usermod -a -G audio USERNAME
There are many other groups you may want to be member of: network, video, floppy, storage, slocate, dbus, camera, scanner, ... Read /etc/group for existing groups.
Ah, that explains a lot. I knew I was doing something stupid. Whatever, it's working now, thanks
Offline
Pages: 1