溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Linux系統(tǒng)怎么設(shè)置默認(rèn)聲卡

發(fā)布時(shí)間:2022-02-01 08:41:05 來源:億速云 閱讀:346 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹Linux系統(tǒng)怎么設(shè)置默認(rèn)聲卡,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

一:使用命令行查看:

 orangepi@orangepi3:~$ ll /proc/asound/
 total 0
 dr-xr-xr-x   4 root root 0 Dec 23 02:58 ./
 dr-xr-xr-x 178 root root 0 Jan  1  1970 ../
 dr-xr-xr-x   4 root root 0 Dec 23 11:02 card0/
 dr-xr-xr-x   4 root root 0 Dec 23 11:02 card1/
 -r--r--r--   1 root root 0 Dec 23 11:02 cards
 -r--r--r--   1 root root 0 Dec 23 11:02 devices
 -r--r--r--   1 root root 0 Dec 23 11:02 hwdep
 -r--r--r--   1 root root 0 Dec 23 11:02 pcm
 lrwxrwxrwx   1 root root 5 Dec 23 11:02 sndacx00codec -> card1/
 lrwxrwxrwx   1 root root 5 Dec 23 11:02 sndhdmi -> card0/
 -r--r--r--   1 root root 0 Dec 23 11:02 timers
 -r--r--r--   1 root root 0 Dec 23 11:02 version

可以看到我的Linux有兩個(gè)聲卡(sndhdmi和sndacx00-codec)

二:使用alsamixer查看

首先安裝一個(gè)程序

 sudo apt-get install alsa-base -y
 alsamixer

執(zhí)行上面的命令之后就會(huì)出現(xiàn)一個(gè)界面,然后按F6

 ┌─────────────────────────────────────── AlsaMixer v1.1.3 ────────────────────────────────────────┐
 │ Card: sndacx00-codec                                                    F1:  Help               │
 │ Chip:                                                                   F2:  System information │
 │ View: F3:[Playback] F4: Capture  F5: All                                F6:  Select sound card  │
 │ Item: Line Out Mixer [dB gain: 6.00]                                    Esc: Exit               │
 │                                                                                                 │
 │                                                                                                 │
 │      ┌──┐     ┌──┐     ┌──┐     ┌──┐     ┌──┐     ┌──┐     ┌──┐                                 │
 │      │??│     │??│     │??│     │??│     │??│     │??│     │??│                                 │
 │      │??│     │??│     │??│     │??│     │??│     │??│     │??│                                 │
 │      │??│     │??│     │??│     │??│     │??│     │??│     │??│                                 →
 │      │??│     │??│     │??│     │??┌───── Sound Card ──────┐??│                                 →
 │      │??│     │??│     │??│     │??│-  (default)           │??│                                 →
 │      │??│     │??│     │??│     │??│0  sndhdmi             │??│                                 →
 │      │??│     │??│     │??│     │??│1  sndacx00-codec      │??│                                 →
 │      │??│     │??│     │??│     │??│   enter device name...│??│                                 →
 │      │??│     │??│     │??│     │??└───────────────────────┘??│                                 →
 │      │??│     │??│     │??│     │??│     │??│     │??│     │??│                                 →
 │      │??│     │??│     │??│     │??│     │??│     │??│     │??│                                 →
 │      │??│     │??│     │??│     │??│     │??│     │??│     │??│                                 │
 │      │??│     │??│     │??│     │??│     │??│     │??│     │??│                                 │
 │      └──┘     └──┘     └──┘     └──┘     └──┘     └──┘     └──┘     ┌──┐     ┌──┐     ┌──┐      │
 │                                                                     │MM│     │OO│     │OO│      │
 │                                                                     └──┘     └──┘     └──┘      │
 │      100    100100   100      100    100100 100100   100                                  │
 │  I2S Mixe I2S Mixe ADC Inpu DAC Mixe DAC Mxie LINEOUT  Left DAC Left DAC Left I2S    │
 │                                                                                                 │
 │                                                                                                 │
 └─────────────────────────────────────────────────────────────────────────────────────────────────┘

可以看到我的Linux有兩個(gè)聲卡(sndhdmi和sndacx00-codec)

三:使用alpay查看

 orangepi@orangepi3:~$ aplay -l
 **** List of PLAYBACK Hardware Devices ****
 card 0: sndhdmiraw [sndhdmi], device 0: SUNXI-HDMIAUDIO audiohdmi-dai-0 []
   Subdevices: 1/1
   Subdevice #0: subdevice #0
 card 1: sndacx00codec [sndacx00-codec], device 0: SUNXI-AUDIO acx00-dai-0 []
   Subdevices: 1/1
   Subdevice #0: subdevice #0

可以看到我的Linux有兩個(gè)聲卡(sndhdmi和sndacx00-codec)

四:設(shè)置默認(rèn)聲卡

修改配置文件/etc/asound.conf

如果沒有這個(gè)文件,可以自己創(chuàng)建

 sudo touch /etc/asound.conf
 sudo vi /etc/asound.conf

asound.conf文件如下

 defaults.ctl.card 1
 defaults.pcm.card 1
 defaults.timer.card 1

以上是“Linux系統(tǒng)怎么設(shè)置默認(rèn)聲卡”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI