42 lines
878 B
Markdown
42 lines
878 B
Markdown
## Installare sound su linux Debian 12 in un iMac 18.2 (late 2017)
|
|
|
|
sudo apt-get install linux-headers-$(uname -r)
|
|
sudo apt install build-essential
|
|
sudo apt install git
|
|
git clone http://forgit.patachina.it/Fabio/snd-hda-codec-cs8409.git
|
|
cd snd-hda-codec-cs8409
|
|
make
|
|
sudo make install
|
|
|
|
fare il reboot
|
|
|
|
deriva da [git link](https://github.com/egorenar/snd-hda-codec-cs8409)
|
|
|
|
_______________________________________
|
|
|
|
### per fedora
|
|
|
|
# install the kernel headers
|
|
sudo dnf install kernel-devel
|
|
|
|
# clone the repo of the module
|
|
git clone https://github.com/egorenar/snd-hda-codec-cs8409.git
|
|
|
|
# make and install
|
|
cd snd-hda-codec-cs8409
|
|
make
|
|
sudo make install
|
|
|
|
### per Debian 12
|
|
|
|
|
|
sudo apt install linux-headers-amd64 build-essential
|
|
|
|
git clone https://github.com/egorenar/snd-hda-codec-cs8409.git
|
|
|
|
make and install
|
|
|
|
cd snd-hda-codec-cs8409
|
|
make
|
|
sudo make install
|
|
|