If a terminal (gnome-terminal or xterm whatever is available) type:
to check if your username is there, if not add it:
You can also do:
For more complex issues please visit official ubuntu sound troubleshooting help
aplay -l
If you see this:
Then typeaplay: device_list:221: no soundcard found...
sudo aplay -l
The output of that command should look something like this:
It means your sound card is okay and your problem may solve easily by adding your username into audio group. Now type**** List of PLAYBACK Hardware Devices **** card 0: Intel [HDA Intel], device 0: ALC861VD Analog [ALC861VD Analog] Subdevices: 0/1 Subdevice #0: subdevice #0
grep ^audio /etc/group
to check if your username is there, if not add it:
sudo addgroup <username> audio<username> will be your login name ( whoami or w will reveal your username if you are not sure)
You can also do:
sudo addgroup `whoami` audioNote the inverted single quote ( ` ), it is crucial.
For more complex issues please visit official ubuntu sound troubleshooting help
No comments :
Post a Comment