The Diagonistics
Open a terminal (Applications -> Accessories -> Terminal) and type$ sudo aplay -l
Response to the above command
aplay: device_list:240: no soundcards found...
To check that sound card is physically installed and recognized by the hardware, type
$ lspci -v | grep -A7 -i "audio"
Response to the above command
20:01.0 Audio device: VIA Technologies, Inc. VT8237A/VT8251 HDA Controller (rev 10)
Subsystem: ASUSTeK Computer Inc. Device 8290
Flags: fast devsel, IRQ 17
Memory at <ignored> (64-bit, non-prefetchable)
Capabilities: <access denied>
Kernel modules: snd-hda-intel
Next go to (Applications -> System Tools -> System Settings --> Sound)
Found nothing under the Hardware section
The Solution
Open a terminal (Applications -> Accessories -> Terminal) and type$ sudo gedit /etc/default/grub
and then change the line from
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pci=use_crs"
After saving the file run update-grub
$ sudo update-grub
Restart the Machine !
The Result
I heard the SOUND!
Open a terminal (Applications -> Accessories -> Terminal) and type
$ sudo aplay -l
Response to the above command
**** List of PLAYBACK Hardware Devices ****
card 0: VT82xx [HDA VIA VT82xx], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: VT82xx [HDA VIA VT82xx], device 1: ALC662 rev1 Digital [ALC662 rev1 Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0
Next go to (Applications -> System Tools -> System Settings --> Sound)
No comments:
Post a Comment
NO JUNK, Please try to keep this clean and related to the topic at hand.
Comments are for users to ask questions, collaborate or improve on existing.