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
    • 最新
    • 标签
主页 / user-688747

Antonio Davila's questions

Martin Hope
Antonio Davila
Asked: 2021-03-25 09:37:45 +0800 CST

网络连接激活失败 - 从 Windows 重新启动时修复

  • 3

我有 Windows 10 和 Ubuntu 20.14 的双启动。

从前一段时间,我的电脑出现问题......当它在 Ubuntu 中启动时,有时会随机启动(我的意思是,大约 30% 的初创公司会出现问题)说Activation of network connection failed,这是一台台式电脑,所以我使用以太网端口。

当问题出现时,在网络上尝试一些解决方案并不能解决问题。我试过了:

  • 此处建议重新启用有线连接
  • 重新启动所有路由器 - 我有 2 个,连接方式如下:[ISP 路由器] <LAN 端口 - WAN 端口> [Tplinkrouter] <LAN 端口 - Eth 端口> [PC]。此处建议的解决方案
  • 重新安装网络管理器并重新启动:sudo apt-get install --reinstall network-manager ; sudo reboot now这里也建议

此外,真正有趣的是,当我从 Windows 10 重新启动到 Ubuntu 时,问题消失了,如果我从 Ubuntu 重新启动到 Ubuntu,那么问题又出现了......

关于我的系统的一些上下文:

  • Windows 10 快速启动被禁用
  • 双引导在 nvme 驱动器上
  • 这个问题永远不会出现在 Windows 上
  • sudo lshw -C network输出(未出现问题时):
*-network                 
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:05:00.0
logical name: enp5s0
version: 0c
serial: b4:2e:99:e7:89:ea
size: 100Mbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=5.8.0-48-generic duplex=full firmware=rtl8168g-2_0.0.1 02/06/13 ip=192.168.1.65 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
resources: irq:35 ioport:f000(size=256) memory:fcb00000-fcb00fff memory:f0300000-f0303fff

有什么办法可以解决这个恼人的失败?

提前致谢。

编辑1:

lspci -nn | grep -i ethernet输出:

05:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c)

编辑2:

遵循@heynnema 解决方案:

步骤 1.将脚本“r8169_disable_msi”添加到/etc/initramfs-tools/scripts/init-top路径并chmod a+x对其执行以下操作:

要检查这里是否有ls -l /etc/initramfs-tools/scripts/init-top输出:

total 4
-rwxr-xr-x 1 root root 1118 mar 30 11:59 r8169_disable_msi

第 2 步。 “将 'r8169_disable_msi' 添加到内核命令行(/etc/default/grub, GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" 通常。)”所以我对 /etc/default/grub 文件进行了更改:

# 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_DEFAULT="quiet splash r8169_disable_msi"
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
GRUB_GFXMODE=1920x1080

# 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"

步骤 3. sudo update-initramfs -c -k $(uname -r)输出:

update-initramfs: Generating /boot/initrd.img-5.8.0-48-generic
W: Possible missing firmware /lib/firmware/amdgpu/navi12_gpu_info.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_gpu_info.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_ta.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_asd.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_sos.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_ta.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_asd.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_sos.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_rlc.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_mec2.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_mec.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_rlc.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_mec2.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_mec.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_me.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_pfp.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_ce.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/arcturus_sdma.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_sdma1.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_sdma.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi10_mes.bin for module amdgpu
W: Possible missing firmware /lib/firmware/amdgpu/navi12_dmcu.bin for module amdgpu
I: The initramfs will attempt to resume from /dev/nvme0n1p6
I: (UUID=64e37a0f-3360-471d-8c6d-02a5865d7e77)
I: Set the RESUME variable to override this.

步骤 4. sudo update-grub输出:

Sourcing file `/etc/default/grub'
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-5.8.0-48-generic
Found initrd image: /boot/initrd.img-5.8.0-48-generic
Found linux image: /boot/vmlinuz-5.8.0-45-generic
Found initrd image: /boot/initrd.img-5.8.0-45-generic
Found Windows Boot Manager on /dev/nvme0n1p1@/EFI/Microsoft/Boot/bootmgfw.efi
Adding boot menu entry for UEFI Firmware Settings
done

这个解决方案奏效了。

networking
  • 1 个回答
  • 6808 Views
Martin Hope
Antonio Davila
Asked: 2018-12-03 13:29:12 +0800 CST

Ubuntu 18.04.1 LTS 蓝牙设备 [0cf3:3004] 特定问题内核已修复但无法找到设备

  • 0

我一直在尝试启用我的笔记本电脑的蓝牙(Lenovo Ideapad-Y400),它带有一个 Atheros 蓝牙,它的内核有一些问题。

首先我无法打开我的蓝牙,但我意识到运行sudo rfkill block bluetooth两次,然后再次运行两次sudo rfkill unblock bluetooth,蓝牙配置菜单能够找到设备并配对它们但1分钟后崩溃,然后蓝牙是找不到任何东西。此外,如果我在这种特殊情况下关闭蓝牙,我将无法再次打开它,我必须再次运行才能打开它rfkill un/block。

然后,我从这里尝试了解决方案,它就像一个魅力,现在我可以打开和关闭我的蓝牙。似乎我的内核版本有这个问题,我也安装了 Ukuu,以安装更新的内核,但是我的显卡崩溃了(现在我正在使用修补内核使我的蓝牙工作“Linux 4.15.0.39.48”) . 但是现在我的蓝牙找不到任何设备。 我尝试运行bluetoothctl,我打开它(power on),并使其可发现(discoverable on),并且运行scan on我的计算机也找不到任何设备,同样运行hcitool。同样的东西安装bluez。

你能帮我解决这些问题吗?

太感谢了。

在这里,我添加了一些在一些论坛中要求他们获取系统上下文的输出。

lsusb输出:


tonny@tonny-IdeaPad:~$ lsusb
Bus 002 Device 005: ID 413c:2005 Dell Computer Corp. RT7D50 Keyboard
Bus 002 Device 004: ID 1c4f:0054 SiGma Micro 
Bus 002 Device 003: ID 05e3:0608 Genesys Logic, Inc. Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0cf3:3004 Atheros Communications, Inc. AR3012 Bluetooth 4.0
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub    
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 003: ID 2341:0010 Arduino SA Mega 2560 (CDC ACM)
Bus 003 Device 002: ID 5986:0295 Acer, Inc 
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

lspci -nnk | grep -iA3 net; lsusb; rfkill list; uname -r; dmesg | egrep -i 'blue|firm'输出:


02:00.0 Ethernet controller [0200]: Qualcomm Atheros AR8161 Gigabit Ethernet [1969:1091] (rev 10)
    Subsystem: Realtek Semiconductor Co., Ltd. AR8161 Gigabit Ethernet [10ec:0123]
    Kernel driver in use: alx
    Kernel modules: alx
03:00.0 Network controller [0280]: Qualcomm Atheros AR9485 Wireless Network Adapter [168c:0032] (rev 01)
    Subsystem: Lenovo AR9485 Wireless Network Adapter [17aa:3218]
    Kernel driver in use: ath9k
    Kernel modules: ath9k
04:00.0 System peripheral [0880]: JMicron Technology Corp. SD/MMC Host Controller [197b:2392] (rev 30)
Bus 002 Device 005: ID 413c:2005 Dell Computer Corp. RT7D50 Keyboard
Bus 002 Device 004: ID 1c4f:0054 SiGma Micro 
Bus 002 Device 003: ID 05e3:0608 Genesys Logic, Inc. Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0cf3:3004 Atheros Communications, Inc. AR3012 Bluetooth 4.0
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 003: ID 2341:0010 Arduino SA Mega 2560 (CDC ACM)
Bus 003 Device 002: ID 5986:0295 Acer, Inc 
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
1: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
2: ideapad_wlan: Wireless LAN
    Soft blocked: no
    Hard blocked: no
3: ideapad_bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no
4.15.0-39-generic
[    0.029218] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.062621] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.567931] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[    2.567935] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[    2.567939] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[    2.567943] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[    2.567947] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[    3.278355] usb 1-1.3: Product: Bluetooth USB Host Controller
[   28.220952] Bluetooth: Core ver 2.22
[   28.220966] Bluetooth: HCI device and connection manager initialized
[   28.220969] Bluetooth: HCI socket layer initialized
[   28.220971] Bluetooth: L2CAP socket layer initialized
[   28.220976] Bluetooth: SCO socket layer initialized
[  384.853147] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[  384.853148] Bluetooth: BNEP filters: protocol multicast
[  384.853151] Bluetooth: BNEP socket layer initialized
[  384.859967] Bluetooth: RFCOMM TTY layer initialized
[  384.859973] Bluetooth: RFCOMM socket layer initialized
[  384.859978] Bluetooth: RFCOMM ver 1.11
[  390.827177] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  406.953061] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  415.912118] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  432.037908] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  447.907815] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  464.034678] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  479.904574] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  496.030502] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  511.900372] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  528.026264] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  543.896136] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  560.022140] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  575.891942] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  592.020923] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  607.894811] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  624.023613] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  777.881657] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  794.008537] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  809.879435] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  826.007324] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  841.878218] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  858.005108] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  873.876001] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  890.002848] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  905.872706] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  921.999639] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  937.870565] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  953.997372] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  969.868344] Bluetooth: hci0: last event is not cmd complete (0x0f)
[  985.994169] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1001.865092] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1017.992021] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1033.861796] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1049.988802] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1065.859696] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1081.985522] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1097.856388] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1113.984241] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1129.857239] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1145.985096] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1161.856925] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1177.984835] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1193.856821] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1209.984714] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1225.856513] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1241.983407] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1257.855314] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1273.982145] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1289.854167] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1305.982240] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1321.852850] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1337.979835] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1353.851642] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1369.978715] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1385.849399] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1401.977363] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1417.848295] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1433.975231] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1449.846078] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1465.972883] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1481.843773] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1497.970744] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1513.842642] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1529.969438] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1545.840336] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1561.967232] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1577.838132] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1593.965101] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1609.835897] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1625.962878] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1641.833680] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1657.959569] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1673.830460] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1689.957340] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1705.828338] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1721.955222] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1737.826076] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1753.952992] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1769.823808] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1785.949672] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1801.820675] Bluetooth: hci0: last event is not cmd complete (0x0f)
[ 1817.947455] Bluetooth: hci0: last event is not cmd complete (0x0f)

编辑1:

systemd-analyze blame | nc termbin.com 9999输出:

http://termbin.com/yxiq

这里面有:

4min 29.496s apt-daily-upgrade.service
2min 24.962s apt-daily.service
     29.199s systemd-journal-flush.service
     23.755s dev-sda3.device
     14.333s systemd-udevd.service
     12.446s systemd-sysctl.service
     10.066s snap-core-5662.mount
      6.799s snapd.service
      6.294s NetworkManager-wait-online.service
      5.449s NetworkManager.service
      4.790s dev-loop9.device
      4.690s networkd-dispatcher.service
      4.686s dev-loop16.device
      4.563s dev-loop18.device
      4.483s keyboard-setup.service
      4.438s plymouth-quit-wait.service
      4.026s dev-loop8.device
      3.987s dev-loop17.device
      3.953s dev-loop23.device
      3.671s dev-loop13.device
      3.587s dev-loop21.device
      3.521s dev-loop10.device
      3.483s dev-loop24.device
      3.480s winbind.service
      3.239s dev-loop0.device
      3.078s home.mount
      2.961s udisks2.service
      2.915s plymouth-start.service
      2.832s systemd-modules-load.service
      2.563s dev-loop22.device
      2.560s dev-loop20.device
      2.558s dev-loop19.device
      2.557s dev-loop14.device
      2.556s dev-loop15.device
      2.418s dev-loop12.device
      2.416s dev-loop11.device
      2.414s dev-loop7.device
      2.388s grub-common.service
      2.367s apparmor.service
      2.256s systemd-fsck@dev-disk-by\x2duuid-1d27b8c5\x2db30c\x2d48e3\x2d85ff\x2d4d20591d080f.service
      1.952s dev-loop3.device
      1.852s dev-loop5.device
      1.816s systemd-rfkill.service
      1.617s snap-core-5742.mount
      1.586s gdm.service
      1.582s ModemManager.service
      1.573s snap-gtk\x2dcommon\x2dthemes-818.mount
      1.527s snap-gtk\x2dcommon\x2dthemes-701.mount
      1.521s dev-loop2.device
      1.517s swapfile.swap
      1.468s dev-loop4.device
      1.450s snap-gnome\x2dcharacters-139.mount
      1.353s snap-gnome\x2dcalculator-238.mount
      1.333s plymouth-read-write.service
      1.311s wpa_supplicant.service
      1.275s snap-spotify-21.mount
      1.196s snap-spotify-26.mount
      1.192s snap-gnome\x2dcalculator-260.mount
      1.169s snap-gnome\x2dcalculator-222.mount
      1.167s fstrim.service
      1.144s apport.service
      1.130s fwupd.service
      1.130s snap-spotify-24.mount
      1.114s snap-gnome\x2dcharacters-124.mount
      1.082s systemd-tmpfiles-setup-dev.service
      1.024s snap-gnome\x2dlogs-40.mount
      1.012s gpu-manager.service
       997ms systemd-remount-fs.service
       993ms teamviewerd.service
       952ms dev-hugepages.mount
       950ms sys-kernel-debug.mount
       949ms dev-mqueue.mount
       937ms snap-gnome\x2dlogs-45.mount
       829ms snap-gnome\x2d3\x2d26\x2d1604-70.mount
       820ms snap-gtk\x2dcommon\x2dthemes-808.mount
       813ms accounts-daemon.service
       794ms snap-gnome\x2dcharacters-117.mount
       776ms dev-loop6.device
       772ms dev-loop1.device
       677ms networking.service
       670ms snap-gnome\x2dsystem\x2dmonitor-57.mount
       647ms systemd-random-seed.service
       619ms snap-vlc-555.mount
       613ms speech-dispatcher.service
       613ms thermald.service
       613ms bluetooth.service
       610ms systemd-logind.service
       608ms avahi-daemon.service
       603ms rsyslog.service
       590ms pppd-dns.service
       577ms packagekit.service
       531ms snap-gnome\x2dsystem\x2dmonitor-51.mount
       487ms snap-gnome\x2dsystem\x2dmonitor-54.mount
       482ms snap-core-5897.mount
       471ms kmod-static-nodes.service
       422ms colord.service
       421ms systemd-journald.service
       314ms systemd-tmpfiles-setup.service
       312ms console-setup.service
       297ms binfmt-support.service
       270ms bolt.service
       221ms systemd-update-utmp.service
       211ms snap-gnome\x2dlogs-43.mount
       192ms setvtrgb.service
       191ms upower.service
       172ms snap-gnome\x2d3\x2d26\x2d1604-74.mount
       170ms systemd-timesyncd.service
       161ms polkit.service
       158ms systemd-resolved.service
       124ms systemd-udev-trigger.service
        90ms snap-firefox-152.mount
        60ms ufw.service
        51ms [email protected]
        32ms [email protected]
        30ms snapd.seeded.service
         8ms systemd-update-utmp-runlevel.service
         7ms alsa-restore.service
         7ms ureadahead-stop.service
         7ms kerneloops.service
         6ms rtkit-daemon.service
         6ms proc-sys-fs-binfmt_misc.mount
         5ms systemd-backlight@backlight:acpi_video0.service
         5ms dns-clean.service
         2ms systemd-user-sessions.service
         2ms sys-fs-fuse-connections.mount
         2ms sys-kernel-config.mount
         1ms nvidia-persistenced.service
         1ms snapd.socket
drivers kernel bluetooth 18.04 ideapad
  • 1 个回答
  • 3113 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