AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题

问题[modprobe](ubuntu)

Martin Hope
GizmoChicken
Asked: 2020-08-18 09:44:42 +0800 CST

ls -1 /dev/{ashmem,binder} 产生 /dev/ashmem 的预期结果,但 /dev/binder 出现错误

  • 3

背景

在另一篇文章中,我报告说:

我在 UEFI 系统上运行带有默认内核 5.4.0-42-generic(从 Main 安装)的Ubuntu 20.04.1 。我想在启用安全启动的情况下加载两个内核模块(“ ashmem ”和“ binder ”)。至少对我来说,“binder”在启用安全启动的情况下加载正常,但“ashmem”在启用安全启动的情况下无法加载。两个模块都在禁用安全启动的情况下加载。

对于上述内容,我要补充一点,我在Ubuntu 20.04的初始全新安装期间启用了安全启动(并注册了 MOK) 。即便如此,按照Rinzwind提供的出色建议,我在初始安装后运行了以下命令:

sudo kmodsign sha512 /var/lib/shim-signed/mok/MOK.priv /var/lib/shim-signed/mok/MOK.der /lib/modules/`uname -r`/kernel/drivers/staging/android/ashmem_linux.ko

运行上述内容后,我重新运行:

sudo modprobe ashmem_linux

sudo modprobe binder_linux

lsmod | grep -e ashmem_linux -e binder_linux

成功!“ashmem”和“binder”都加载了!谢谢林兹温德!!

更重要的是,Anbox现在为我启用了 Secure Boot,这是我的最终目标。:)

错误信息

尽管“ashmem”和“binder”现在都加载了,并且Anbox现在启动(并且似乎可以正常工作)我现在启用了安全启动,但我仍然运行了以下命令:

ls -1 /dev/{ashmem,binder}

我得到了以下信息:

ls: cannot access '/dev/binder': No such file or directory
/dev/ashmem

现在,我仍然很好奇为什么我会收到关于“binder”模块的上述错误(“无法访问'/dev/binder':没有这样的文件或目录”),以及我是否应该关注。

问题

  1. /dev/binder 是否应该在加载“binder”模块时创建?(这个错误应该与我有关吗?)
  2. 如果 /dev/binder 应该在加载“binder”模块时创建,我如何强制创建 /dev/binder?
  3. 如果 /dev/binder 应该在加载“binder”模块时创建(也就是说,如果我发现了一个错误),我应该在 Launchpad 的哪个位置报告错误?

重申一下,根据 lsmod,“ashmem”和“binder”都加载。此外,启用安全启动后, Anbox现在对我来说似乎可以正常工作。我在这里发帖是为了 (a) 满足我自己的好奇心,(b) 为其他人记录这一点,以及 (c) 确定是否应该提交有关 binder 的错误报告(以及在哪里提交,如果有必要的话)。

kernel modprobe secure-boot anbox
  • 2 个回答
  • 3633 Views
Martin Hope
GizmoChicken
Asked: 2020-08-17 21:39:52 +0800 CST

模块“ashmem”不加载安全启动(但“活页夹”加载安全启动)

  • 5

概括

我在 UEFI 系统上运行带有默认内核 5.4.0-42-generic(从 Main 安装)的Ubuntu 20.04.1 。我想在启用安全启动的情况下加载两个内核模块(“ ashmem ”和“ binder ”)。至少对我来说,“binder”在启用安全启动的情况下加载正常,但“ashmem”在启用安全启动的情况下无法加载。 两个模块都在禁用安全启动的情况下加载。

细节

内核包(从 Main 安装)

  • linux-headers-5.4.0-42

  • linux-headers-5.4.0-42-generic

  • linux-image-5.4.0-42-generic

  • linux-modules-5.4.0-42-generic

  • linux-modules-extra-5.4.0-42-generic

安全启动已禁用

禁用安全启动后,我可以使用以下命令加载模块“ashmem”:

sudo modprobe ashmem_linux

此外,在禁用安全启动的情况下,我可以使用以下命令加载模块“绑定器”:

sudo modprobe binder_linux

因此,禁用Secure Boot 后一切正常。

启用安全启动

启用安全启动后,我无法使用以下命令加载模块“ashmem”:

sudo modprobe ashmem_linux

尝试这样做时,我得到以下信息:

modprobe: ERROR: could not insert 'ashmem_linux': Operation not permitted

但是,即使启用了安全启动,我仍然可以使用以下命令毫无问题地加载模块“binder”:

sudo modprobe binder_linux

所以,我很困惑为什么“binder”在启用安全启动的情况下加载,但“ashmem”在启用安全启动的情况下不加载。

对于它的价值,我在使用 Secure Boot 时没有遇到任何其他问题。

问题

  1. 有没有办法强制“ashmem”在启用安全启动的情况下加载?

  2. 启用安全启动后无法加载“ashmem”是功能还是错误?

  3. 如果它是一个错误,那么在 Launchpad 上的哪个位置是报告错误的最佳位置?

附录

对于上述内容,我要补充一点,我在Ubuntu 20.04的初始全新安装期间启用了安全启动(并注册了 MOK) 。即便如此,按照Rinzwind提供的出色建议,我在初始安装后运行了以下命令:

sudo kmodsign sha512 /var/lib/shim-signed/mok/MOK.priv /var/lib/shim-signed/mok/MOK.der /lib/modules/`uname -r`/kernel/drivers/staging/android/ashmem_linux.ko

运行上述内容后,我重新运行:

sudo modprobe ashmem_linux

sudo modprobe binder_linux

lsmod | grep -e ashmem_linux -e binder_linux

成功!“ashmem”和“binder”都加载了!谢谢林兹温德!!

更重要的是,Anbox现在为我启用了 Secure Boot,这是我的最终目标。:)

鉴于“ashmem”和“binder”现在都为我加载启用了安全启动,我将此问题标记为已回答。然而,我注意到另一个关于“binder”模块的错误。对于那些感兴趣的人,我在这里发布了一个与该错误相关的问题。

kernel modprobe secure-boot anbox
  • 1 个回答
  • 4449 Views
Martin Hope
Sterling Butters
Asked: 2020-08-05 10:31:57 +0800 CST

自动加载驱动程序:Cron、Init 或 Modprobe

  • 0

主要问题

我正在尝试为我的系统自动加载驱动程序。驱动程序是手动构建的,必须手动加载。另一个需要注意的是,必须先加载和卸载其中一个系统驱动程序,然后才能手动插入构建的驱动程序。在 CLI 中,它看起来像这样:

modprobe gspca_main && rmmod gspca_main && modprobe videodev && insmod gspca_main.ko && insmod gspca_kinect2.ko

选项

我想在启动时自动执行此操作,这样我就不必每次都运行上述内容。正如我目前所看到的,我有几个选择:

  1. 克朗

看起来我可以在这里使用@reboot 字符串来运行脚本

  1. 在里面

或者,我考虑过创建一个init脚本,但我不一定需要对runlevel's 或执行时间的所有控制。在这里,我没有看到任何Exec“另一件事”所必需的 multiples 实例。

  1. 模组探针

在下面添加一个conf文件/etc/modprobe.d似乎最有意义,因为毕竟我正在尝试加载一些驱动程序。这个选项的唯一问题是我不确定驱动程序是否可以顺序加载然后卸载。

另一件事

所有这一切的另一部分是在加载驱动程序后,我还需要运行一个脚本:

#!/bin/sh
sudo rmmod v4l2loopback
sudo modprobe v4l2loopback video_nr=10 card_label="Kinect v2"
ffmpeg \
    -i /dev/video0 \
    -vsync drop \
    -filter:v fps=30,scale=1280:-1,hflip \
    -pix_fmt yuyv422 \
    -color_trc bt709 \
    -color_primaries bt709 \
    -color_range tv \
    -f v4l2 \
    /dev/video10

哪个似乎更适合cronor init。

哪个选项是稳定性和易于配置的最佳折衷方案?

提前感谢您的任何/所有帮助!

scripts drivers init.d cron modprobe
  • 2 个回答
  • 375 Views
Martin Hope
Mark Lee
Asked: 2020-05-31 07:52:14 +0800 CST

如何在启动时自动运行 modprobe v4l2loopback?

  • 7

我正在使用 OBS Studio,并希望永久保存虚拟视频输出,以便在启动应用程序时运行它。

此命令创建虚拟输出:

sudo modprobe v4l2loopback video_nr=10 card_label="OBS Video Source" exclusive_caps=1

但是我必须在每次启动时在控制台中运行该命令。我怎样才能使它永久化?利用 OBS Studio 中的输出的插件被配置为自动启动,但/dev/video10在系统重启后不可用。

$ modinfo v4l2loopback | grep -i parm
parm:           debug:debugging level (higher values == more verbose) (int)
parm:           max_buffers:how many buffers should be allocated (int)
parm:           max_openers:how many users can open loopback device (int)
parm:           devices:how many devices should be created (int)
parm:           video_nr:video device numbers (-1=auto, 0=/dev/video0, etc.) (array of int)
parm:           card_label:card labels for every device (array of charp)
parm:           exclusive_caps:whether to announce OUTPUT/CAPTURE capabilities exclusively or not (array of bool)
parm:           max_width:maximum frame width (int)
parm:           max_height:maximum frame height (int)
modprobe obs-studio 20.04
  • 2 个回答
  • 15400 Views
Martin Hope
Nemgathos
Asked: 2020-05-15 02:53:41 +0800 CST

从 19.10 更新到 20.04 后屏幕撕裂再次出现(GeForce GTX 1050 Ti Mobile)

  • 0

我正在使用具有 GeForce GTX 1050 Ti 移动显卡的 MSI GL62M 7REX 笔记本电脑。当我使用 Ubuntu 19.10 时,我能够通过以下方式处理屏幕撕裂:

  1. 与此答案类似,我打开终端并输入sudo gedit /etc/default/grub打开 gedit 的内容如下:
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
  1. 我编辑GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"并GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvidia-drm.modeset=1"保存了文件。

  2. 打字nvidia-smi返回了以下细节:

Thu May 14 12:39:03 2020       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 435.21       Driver Version: 435.21       CUDA Version: 10.1     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 105...  Off  | 00000000:01:00.0 Off |                  N/A |
| N/A   51C    P0    N/A /  N/A |    247MiB /  4042MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+

+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|    0      1180      G   /usr/lib/xorg/Xorg                            45MiB |
|    0      1717      G   /usr/lib/xorg/Xorg                           105MiB |
|    0      1972      G   /usr/bin/gnome-shell                          89MiB |
+-----------------------------------------------------------------------------+
  1. 现在我知道我的 Nvidia 驱动程序的主要版本是我435下一步需要的。

  2. 根据这个指令(post #5),我创建了一个.conf文件,/etc/modprobe.d/其中包含以下行:options nvidia_435_drm modeset=1.

  3. 之后,我运行sudo update-initramfs -u并重新启动了我的机器。

  4. sudo cat /sys/module/nvidia_drm/parameters/modeset然后返回Y并解决了问题。

在我升级到 Ubuntu 20.04 之后,这些选项还是一样的。内核参数依然完好,里面的.conf文件/etc/modprobe.d/依然存在。此外,Nvidia驱动程序的编号仍然正确,但屏幕撕裂再次发生。

尝试编辑 Nvidia X 服务器设置无济于事,因为如下所示:

Nvidia X 服务器设置

这就是我尝试此处描述的对我有用的其他解决方案的原因。

如何使用 Ubuntu 20.04 解决此问题?

grub2 tearing modprobe nvidia-geforce 20.04
  • 1 个回答
  • 520 Views
Martin Hope
Arthur Tabbal
Asked: 2020-03-13 17:59:08 +0800 CST

如何编写在启动时运行的脚本?

  • 2

新手来了 我有一台戴尔 Inspiron 灵越 3442,它遇到了“CPU 卡在 800Mhz”的问题。在 Windows 中,我曾经在每次启动时运行 ThrottleStop 并禁用 BD PROCHOT ......所以我最近安装了 Ubuntu 并学会了用这个答案中的一组命令来解决这个问题:

https://askubuntu.com/a/1192949/1053161

哪个是 :

sudo cpufreq-set -c 0 -g performance
sudo cpufreq-set -c 1 -g performance
sudo cpufreq-set -c 2 -g performance
sudo cpufreq-set -c 3 -g performance
sudo modprobe msr
sudo wrmsr 0x1FC 17422

这些完全解决了我的问题。现在我想制作一个可以在启动/登录后自动运行的脚本。实现这一目标的最简单方法是什么?

提前致谢!

scripts performance startup cpufreq modprobe
  • 1 个回答
  • 401 Views
Martin Hope
Bruno Golosio
Asked: 2020-02-15 06:27:23 +0800 CST

Ubuntu 相当于 mkinitcpio.conf

  • 5

据我所知,在加载图形驱动程序模块之前,我有一个应该在系统启动期间执行的 sh 脚本。

可能这与答案无关,但此脚本用于 GPU 的 PCI 直通,在特殊情况下,系统有两个相同的 GPU 共享相同的 id,仅覆盖两个 GPU 之一上的驱动程序分配。

对于 Arch linux 系统,wiki 说应该:

Edit /etc/mkinitcpio.conf:
Add modconf to the HOOKS array and /usr/local/bin/vfio-pci-override.sh 
to the FILES array.
Edit /etc/modprobe.d/vfio.conf:
Add the following line: install vfio-pci /usr/local/bin/vfio-pci-override.sh
Regenerate the initramfs and reboot.

mkinitcpio.conf 的 Ubuntu 等价物是什么,在这种情况下应该如何修改?以防万一,脚本如下:

#!/bin/sh

DEVS="0000:01:00.0 0000:01:00.1"

if [ ! -z "$(ls -A /sys/class/iommu)" ]; then
    for DEV in $DEVS; do
        echo "vfio-pci" > /sys/bus/pci/devices/$DEV/driver_override
    done
fi

initramfs modprobe
  • 1 个回答
  • 10704 Views
Martin Hope
Googlebot
Asked: 2018-12-10 17:06:52 +0800 CST

WiFi设置中的“options iwlwifi 11n_disable=1”是什么?

  • 4

改善 WiFi 信号的常见解决方案之一是使用此命令

options iwlwifi 11n_disable=1

在

/etc/modprobe.d/iwlwifi.conf

并且数字可以是0, 1, 2, 8。

我找不到该命令的手册。这些数字有什么作用?我们应该如何在可用选项中进行选择?

networking wireless drivers modprobe iwlwifi
  • 2 个回答
  • 10235 Views
Martin Hope
V. Dalechyn
Asked: 2018-10-19 01:11:04 +0800 CST

modprobe nvidia 抛出错误:无法插入“关闭”

  • 5

我正在尝试配置 bumblebee 以切换我的 nvidia 独立卡。尝试 modprobe nvidia 时,大黄蜂也会崩溃。当我尝试手动执行时,我面临同样的错误:

$ modprobe nvidia

modprobe: ERROR: ../libkmod/libkmod-module.c:832 kmod_module_insert_module() could not find module by name='off'
modprobe: ERROR: could not insert 'off': Unknown symbol in module, or unknown parameter (see dmesg)

Nvidia驱动程序版本是410,使用390时我面临同样的错误。

drivers nvidia graphics bumblebee modprobe
  • 1 个回答
  • 6476 Views
Martin Hope
Kewal Shah
Asked: 2018-06-01 05:30:10 +0800 CST

Ubuntu 18.04 HP 笔记本没有声音

  • 9

请注意,我已经尝试了以下两个链接中的所有解决方案:

Ubuntu 14.04 中的“虚拟输出”声音

声音设置中未检测到声卡,但声音正常

pulseaudio -k && sudo alsa force-reload没有解决问题

pacmd list-cards节目0 card(s) available.

当声音在我之前的 18.04 上运行良好时,我尝试修改 /etc/modprobe.d/alsa-base.conf以解决此答案之后的另一个问题。但是在我的声音停止工作后,我删除了将驱动程序列入黑名单的添加行。这会导致我的问题吗?

请帮帮我,我的电脑不能长时间没有声音工作

更新:

由于我的 PC 上有双启动,我启动到 Windows 中也没有声音,Windows 疑难解答无法识别问题,所以我进入设备管理器并重新安装 Realtek HD 音频控制器,它没有解决我的问题,声音仍然没有播放,但发生的一件值得注意的事情是当我重新启动到 Ubuntu 18.04 时,它检测到内置音频

现在pacmd list-cards显示:

1 card(s) available.
index: 0
name: <alsa_card.pci-0000_00_1f.3>
driver: <module-alsa-card.c>
owner module: 7
properties:
    alsa.card = "0"
    alsa.card_name = "HDA Intel PCH"
    alsa.long_card_name = "HDA Intel PCH at 0xa1428000 irq 128"
    alsa.driver_name = "snd_hda_intel"
    device.bus_path = "pci-0000:00:1f.3"
    sysfs.path = "/devices/pci0000:00/0000:00:1f.3/sound/card0"
    device.bus = "pci"
    device.vendor.id = "8086"
    device.vendor.name = "Intel Corporation"
    device.product.id = "9d70"
    device.product.name = "Sunrise Point-LP HD Audio"
    device.form_factor = "internal"
    device.string = "0"
    device.description = "Built-in Audio"
    module-udev-detect.discovered = "1"
    device.icon_name = "audio-card-pci"
profiles:
    input:analog-stereo: Analog Stereo Input (priority 60, available: unknown)
    output:analog-stereo: Analog Stereo Output (priority 6000, available: unknown)
    output:analog-stereo+input:analog-stereo: Analog Stereo Duplex (priority 6060, available: unknown)
    output:hdmi-stereo: Digital Stereo (HDMI) Output (priority 5400, available: no)
    output:hdmi-stereo+input:analog-stereo: Digital Stereo (HDMI) Output + Analog Stereo Input (priority 5460, available: unknown)
    output:hdmi-surround: Digital Surround 5.1 (HDMI) Output (priority 300, available: no)
    output:hdmi-surround+input:analog-stereo: Digital Surround 5.1 (HDMI) Output + Analog Stereo Input (priority 360, available: unknown)
    output:hdmi-surround71: Digital Surround 7.1 (HDMI) Output (priority 300, available: no)
    output:hdmi-surround71+input:analog-stereo: Digital Surround 7.1 (HDMI) Output + Analog Stereo Input (priority 360, available: unknown)
    output:hdmi-stereo-extra1: Digital Stereo (HDMI 2) Output (priority 5200, available: no)
    output:hdmi-stereo-extra1+input:analog-stereo: Digital Stereo (HDMI 2) Output + Analog Stereo Input (priority 5260, available: unknown)
    output:hdmi-surround-extra1: Digital Surround 5.1 (HDMI 2) Output (priority 100, available: no)
    output:hdmi-surround-extra1+input:analog-stereo: Digital Surround 5.1 (HDMI 2) Output + Analog Stereo Input (priority 160, available: unknown)
    output:hdmi-surround71-extra1: Digital Surround 7.1 (HDMI 2) Output (priority 100, available: no)
    output:hdmi-surround71-extra1+input:analog-stereo: Digital Surround 7.1 (HDMI 2) Output + Analog Stereo Input (priority 160, available: unknown)
    output:hdmi-stereo-extra2: Digital Stereo (HDMI 3) Output (priority 5200, available: no)
    output:hdmi-stereo-extra2+input:analog-stereo: Digital Stereo (HDMI 3) Output + Analog Stereo Input (priority 5260, available: unknown)
    output:hdmi-surround-extra2: Digital Surround 5.1 (HDMI 3) Output (priority 100, available: no)
    output:hdmi-surround-extra2+input:analog-stereo: Digital Surround 5.1 (HDMI 3) Output + Analog Stereo Input (priority 160, available: unknown)
    output:hdmi-surround71-extra2: Digital Surround 7.1 (HDMI 3) Output (priority 100, available: no)
    output:hdmi-surround71-extra2+input:analog-stereo: Digital Surround 7.1 (HDMI 3) Output + Analog Stereo Input (priority 160, available: unknown)
    output:hdmi-stereo-extra3: Digital Stereo (HDMI 4) Output (priority 5200, available: no)
    output:hdmi-stereo-extra3+input:analog-stereo: Digital Stereo (HDMI 4) Output + Analog Stereo Input (priority 5260, available: unknown)
    output:hdmi-surround-extra3: Digital Surround 5.1 (HDMI 4) Output (priority 100, available: no)
    output:hdmi-surround-extra3+input:analog-stereo: Digital Surround 5.1 (HDMI 4) Output + Analog Stereo Input (priority 160, available: unknown)
    output:hdmi-surround71-extra3: Digital Surround 7.1 (HDMI 4) Output (priority 100, available: no)
    output:hdmi-surround71-extra3+input:analog-stereo: Digital Surround 7.1 (HDMI 4) Output + Analog Stereo Input (priority 160, available: unknown)
    output:hdmi-stereo-extra4: Digital Stereo (HDMI 5) Output (priority 5200, available: no)
    output:hdmi-stereo-extra4+input:analog-stereo: Digital Stereo (HDMI 5) Output + Analog Stereo Input (priority 5260, available: unknown)
    output:hdmi-surround-extra4: Digital Surround 5.1 (HDMI 5) Output (priority 100, available: no)
    output:hdmi-surround-extra4+input:analog-stereo: Digital Surround 5.1 (HDMI 5) Output + Analog Stereo Input (priority 160, available: unknown)
    output:hdmi-surround71-extra4: Digital Surround 7.1 (HDMI 5) Output (priority 100, available: no)
    output:hdmi-surround71-extra4+input:analog-stereo: Digital Surround 7.1 (HDMI 5) Output + Analog Stereo Input (priority 160, available: unknown)
    off: Off (priority 0, available: unknown)
active profile: <output:analog-stereo+input:analog-stereo>
sinks:
    alsa_output.pci-0000_00_1f.3.analog-stereo/#0: Built-in Audio Analog Stereo
sources:
    alsa_output.pci-0000_00_1f.3.analog-stereo.monitor/#0: Monitor of Built-in Audio Analog Stereo
    alsa_input.pci-0000_00_1f.3.analog-stereo/#1: Built-in Audio Analog Stereo
ports:
    analog-input-internal-mic: Internal Microphone (priority 8900, latency offset 0 usec, available: unknown)
        properties:
            device.icon_name = "audio-input-microphone"
    analog-input-mic: Microphone (priority 8700, latency offset 0 usec, available: no)
        properties:
            device.icon_name = "audio-input-microphone"
    analog-output-speaker: Speakers (priority 10000, latency offset 0 usec, available: unknown)
        properties:
            device.icon_name = "audio-speakers"
    analog-output-headphones: Headphones (priority 9000, latency offset 0 usec, available: no)
        properties:
            device.icon_name = "audio-headphones"
    hdmi-output-0: HDMI / DisplayPort (priority 5900, latency offset 0 usec, available: no)
        properties:
            device.icon_name = "video-display"
    hdmi-output-1: HDMI / DisplayPort 2 (priority 5800, latency offset 0 usec, available: no)
        properties:
            device.icon_name = "video-display"
    hdmi-output-2: HDMI / DisplayPort 3 (priority 5700, latency offset 0 usec, available: no)
        properties:
            device.icon_name = "video-display"
    hdmi-output-3: HDMI / DisplayPort 4 (priority 5600, latency offset 0 usec, available: no)
        properties:
            device.icon_name = "video-display"
    hdmi-output-4: HDMI / DisplayPort 5 (priority 5500, latency offset 0 usec, available: no)
        properties:
            device.icon_name = "video-display"

尽管现在检测到这张卡,我仍然无法得到任何声音,请帮忙

sound pulseaudio drivers alsa modprobe
  • 4 个回答
  • 30490 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Martin Hope
    Flimm 如何在没有 sudo 的情况下使用 docker? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve