Fix Permission Denied on Pulseaudio
Tested on
- Manjaro
Problem
- Pulseaudio will not start,
pulseaudio --start
orpulseaudio
returns varying errors around failing to start (may includefailed to start main.c
)
Reason
- This is because the main home directory is not owned by you, the user, but rather is under root permissions only, meaning regular users cannot change or start anything that may interact with hardware - in this case, headphones/sound devices.
Fix
- Run the command
sudo chown $USER /home/$USER
to change the ownership (ch-own) to normal user - Run
pulseaudio --start
orpulseaudio
Audio should now work as intended
- ~5late