So, that has ATI graphics.
Are you using proprietary or open source drivers?
Not sure? Let's check.
As root what does
- Code: Select all
#eselect opengl list
Have selected?
If it's xorg-x11, then you are using the open source drivers.
If you are, then you probably need to add "radeon.audio=1" to the kernel parameters. I had to do this to get audio working on my htpc using the ati open source drivers and it works great once that was added.
What you will want to do is open up /etc/default/grub as root with any editor (nano should be installed by default).
Look for the following entry:
- Code: Select all
GRUB_CMDLINE_LINUX_DEFAULT
and make that line look like so:
- Code: Select all
GRUB_CMDLINE_LINUX_DEFAULT="radeon.audio=1"
Then run the following still as root:
- Code: Select all
grub-mkconfig -o /boot/grub/grub.cfg
Then reboot and it should work.
If you are using the proprietary drivers, the hdmi audio should be working without needing any extra configuring. If those are what you are running, then respond back and we'll do our best to figure out what's going on.