start_udev後報GOTO 'pulseraudio_check_usb' has no matching label in ...
解決方法如下:
修改'/lib/udev/rules.d/90-pulseaudio.rules'檔案:
原檔案:
SUBSYSTEM!="sound", GOTO="pulseaudio_end"
ACTION!="change", GOTO="pulseaudio_end"
KERNEL!="card*", GOTO="pulseaudio_end"
SUBSYSTEMS=="usb", GOTO="pulseaudio_check_usb"
SUBSYSTEMS=="usb", ATTRS{idVendor}=="17cc", ATTRS{idProduct}=="1978", ENV{PULSE_PROFILE_SET}="native-instruments-audio8dj.conf"
SUBSYSTEMS=="usb", ATTRS{idVendor}=="17cc", ATTRS{idProduct}=="0839", ENV{PULSE_PROFILE_SET}="native-instruments-audio4dj.conf"
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0763", ATTRS{idProduct}=="2012", ENV{PULSE_PROFILE_SET}="maudio-fasttrack-pro.conf"
# NVidia and Intel HDAs often have more than one HDMI codec/port on the same card
ATTRS{vendor}=="0x10de", ENV{PULSE_PROFILE_SET}="extra-hdmi.conf"
ATTRS{vendor}=="0x8086", ENV{PULSE_PROFILE_SET}="extra-hdmi.conf"
GOTO="pulseaudio_end"
LABEL="pulseaudio_end"
修改為:
SUBSYSTEM!="sound", GOTO="pulseaudio_end"
ACTION!="change", GOTO="pulseaudio_end"
KERNEL!="card*", GOTO="pulseaudio_end"
SUBSYSTEMS=="usb", GOTO="pulseaudio_check_usb"
LABEL="ppulseaudio_check_usb"
ATTRS{idVendor}=="17cc", ATTRS{idProduct}=="1978", ENV{PULSE_PROFILE_SET}="native-instruments-audio8dj.conf"
ATTRS{idVendor}=="17cc", ATTRS{idProduct}=="0839", ENV{PULSE_PROFILE_SET}="native-instruments-audio4dj.conf"
ATTRS{idVendor}=="0763", ATTRS{idProduct}=="2012", ENV{PULSE_PROFILE_SET}="maudio-fasttrack-pro.conf"
# NVidia and Intel HDAs often have more than one HDMI codec/port on the same card
ATTRS{vendor}=="0x10de", ENV{PULSE_PROFILE_SET}="extra-hdmi.conf"
ATTRS{vendor}=="0x8086", ENV{PULSE_PROFILE_SET}="extra-hdmi.conf"
GOTO="pulseaudio_end"
LABEL="pulseaudio_end"
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25116248/viewspace-1471867/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- goto?Go
- goto問題Go
- break,continue,gotoGo
- linux start_udev 導致VIP漂移Linuxdev
- network xxx was found but has incorrect label com.docker.compose.network set to "xxx"Docker
- 專案使用guzzleHttp報錯:certificate has expiredHTTP
- continue、break與gotoGo
- goto語句簡整Go
- java有沒有gotoJavaGo
- 遞迴與goto (轉)遞迴Go
- C++ goto語句C++Go
- C語言goto語句以及用goto語句構成迴圈C語言Go
- electron專案npm i 報錯certificate has expiredNPM
- 建立asm磁碟 報錯 oracleasm-write-label: Unable to clear deviceASMOracledev
- PHP goto操作符使用PHPGo
- 7.2 FM Index MatchingIndex
- F - Perfect Matching on a Tree
- svn報錯“Previous operation has not finished; run 'cleanup' if it was int
- Oracle Label SecurityOracle
- Label--自定義可貼上複製的Label
- 臭名遠揚之 goto 語句Go
- zt_powerdesigner_'find in diagram' 後彈出'the object has no symbol'ObjectSymbol
- jQuery has()jQuery
- jQuery :has()jQuery
- oracle hasOracle
- HTML <label> 標籤HTML
- goto 語法在 PHP 中的使用GoPHP
- GO語言————5.6 標籤與gotoGo
- break、continue與goto關鍵字Go
- start_udev導致監聽自動停止問題處理dev
- AttributeError: 'dict' object has no attribute 'has_key'ErrorObject
- ACM Binary String MatchingACM
- Scala的Pattern Matching Anonymous FunctionsFunction
- Golang Label使用方法Golang
- Oracle 標籤安全 LABELOracle
- Oracle_Label_Security[轉]Oracle
- The difference between literal and label.
- [CSS 3] :has()CSS