Article Title: summary of how to install the sound card driver in Linux. Linux is a technology channel of the IT lab in China. Includes basic categories such as desktop applications, Linux system management, kernel research, embedded systems, and open source.
Install the Linux OS several times and the Sound card driver several times. Generally, the ALSA (Adcance Linux Sound Architecture) driver is installed. It will be very simple after several times of installation.
First, the prerequisite is the dependency. I remember to install kernal-source (this is not installed by default for Several Linux OS I have used, you can search for this keyword in the software package management program of your OS and choose to install it. Remember to insert the system disc .), I don't remember whether to install gcc. It seems that there are no other.
To install the driver, you have to first download the alsa driver, URL is: www.alsa-project.org, I think to ensure maximum compatibility, it is best to download the latest version. Generally, you only need to download and install the following three packages,
Driver
Lib
Utils
Of course, it is best to use the same version. I have uploaded all the required packages, version 1.0.16. If you need them, please download them here.
URL: http://www.box.net/shared/0t5z8nao8c does not know if it is valid for a long time!
To ensure full installation is successful, we recommend that you switch to the root user for installation.
I installed the package in X Window, and right-click the downloaded package to decompress it, I want to use shell commands to decompress the document. Linux users do not need to come here to check the installation of the sound card driver.
First install the downloaded driver package, decompress it, and then transfer it to the decompressed folder on the terminal. Execute the following commands in sequence.
1./configure
2 make
3 make install
4./snddevices
In general, the above commands can be successfully executed. If not, please check the returned information. here we need to note that these processes are time-consuming, regardless of your hardware configuration, I have no way to explain this.
Once installed, You need to configure the system file. I don't know how to configure it manually, but I know a tool that can help us complete this task efficiently and without errors, that's the alsaconf tool, which is in the utils package.
Decompress the downloaded utils package and run the following command on the terminal to transfer the package to the decompressed directory.
./Alsaconf
Then a GUI is displayed, which allows you to select the OK key several times and start searching for the sound card type. After the search is complete, the list of sound cards is displayed and your actual chipset is selected, then, press the OK key several times and finally ask if you want him to help you write the configuration file. Of course, you need to pull it. So far, if you are lucky, you will be able to work with your sound card after restart.
If you cannot work after the restart, continue.
If you still cannot work, you usually need to install the remaining two packages. However, in order, install lib before installing utils.
Methods are similar, and installation must be performed on the terminal. The commands are the same.
1./configure
2 make
3 make install
Run utils after installation.
./Alsaconf
Configure the sound card again. For some systems, you need to set the sound card in the system management tool under X Window, but it is easy.
Restart the system. Your sound card should be able to work. Congratulations.