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-149203

Luis A. Florit's questions

Martin Hope
Luis A. Florit
Asked: 2024-08-09 02:48:51 +0800 CST

文件内的加密 LUKS fs:稀疏还是不稀疏?

  • 5

我有一个 LUKS 加密文件,里面有大约 160 GB 的数据,我经常使用这些数据。为了安全起见,我创建了 400 GB 的文件。当然,这浪费了很多空间。所以我切换到稀疏文件,基本上遵循了这里的建议,只需使用 seek 选项创建文件即可:

dd if=/dev/zero of= <文件> bs=1G count=0 seek=400

但后来我想:如果文件开始碎片化会发生什么?通常这不是问题,因为我没有很大的文件,而且如果有的话,它们通常是不会改变的媒体文件。但我经常使用的加密文件可能很快就会碎片化……

所以我的问题是:在我的情况下使用稀疏文件而不是固定大小的文件是否真的有什么缺点?碎片化真的是个问题吗?你还有其他建议吗?

performance
  • 1 个回答
  • 36 Views
Martin Hope
Luis A. Florit
Asked: 2024-07-25 22:54:22 +0800 CST

根控制台出现奇怪的 bash 错误

  • 5

经常,当我使用 切换 root 用户时,控制台中甚至 TTY 中su -都会出现奇怪的bash错误消息。即使在从头开始进行完整的系统升级后,这种情况仍然会发生,因此这可能是HOME 中的问题。rxvtroot

例如,这些:

sh: error importing function definition for `_file'
sh: _file: line 3: syntax error near unexpected token `('
sh: _file: line 3: ` --help | --version | --separator | -!(-*)[vF])'

当我注销时,出现几个错误,例如:

/bin/bash: _sudo: line 19: syntax error near unexpected token `('
/bin/bash: _sudo: line 19: ` --user | --other-user | -!(-*)[uU])'
/bin/bash: error importing function definition for `_sudo'

即使我sh在控制台中这样做,我也会得到

/bin/bash: _file: line 3: syntax error near unexpected token `('
/bin/bash: _file: line 3: ` --help | --version | --separator | -!(-*)[vF])'
/bin/bash: error importing function definition for `_file'

然后我注销并再次登录,恢复正常行为。直到它开始表现得很奇怪……

我以为这是“~/.bashrc”或类似文件的问题,但这些文件与我的普通用户共享,而普通用户从来不会在控制台中显示错误。

显然有一个bash脚本有错误,但我甚至不知道从哪里开始查找。这是什么_sudo?命令什么grep _sudo $(find . -type f)也find . -name _sudo没显示...

编辑

这是我的文件的内容/usr/share/bash-completion/completions/sudo:

# bash completion for sudo(8)                              -*- shell-script -*-

_sudo()
{
    local cur prev words cword split
    _init_completion -s || return

    local i mode=normal
    [[ $1 == *sudoedit ]] && mode=edit

    [[ $mode == normal ]] &&
        for ((i = 1; i <= cword; i++)); do
            if [[ ${words[i]} != -* ]]; then
                local PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin
                local root_command=${words[i]}
                _command_offset $i
                return
            fi
            if [[ ${words[i]} == -@(!(-*)e*|-edit) ]]; then
                mode=edit
                break
            fi
            [[ ${words[i]} == \
            -@(user|other-user|group|close-from|prompt|!(-*)[uUgCp]) ]] &&
                ((i++))
        done

    case "$prev" in
        --user | --other-user | -!(-*)[uU])
            COMPREPLY=($(compgen -u -- "$cur"))
            return
            ;;
        --group | -!(-*)g)
            COMPREPLY=($(compgen -g -- "$cur"))
            return
            ;;
        --close-from | --prompt | -!(-*)[Cp])
            return
            ;;
    esac

    $split && return

    if [[ $cur == -* ]]; then
        local opts=$(_parse_help "$1")
        COMPREPLY=($(compgen -W '${opts:-$(_parse_usage "$1")}' -- "$cur"))
        [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
        return
    fi
    if [[ $mode == edit ]]; then
        _filedir
    fi
} &&
    complete -F _sudo sudo sudoedit

# ex: filetype=sh
linux
  • 1 个回答
  • 109 Views
Martin Hope
Luis A. Florit
Asked: 2024-07-23 19:48:14 +0800 CST

回显星号作为密码 shell 输入

  • 10

我们可以将该命令stty -echo与 bash shell 脚本一起使用,以防止字符回显到控制台,例如用于密码输入。

有没有办法*为每个输入字符打印一个,并在按退格键时删除它们?

bash
  • 3 个回答
  • 314 Views
Martin Hope
Luis A. Florit
Asked: 2024-05-20 12:08:38 +0800 CST

为什么新的内核版本没有出现在 Fedora 40 Grub 中?

  • 6

我从 Fedora 38 升级到 Fedora 40 或多或少是顺利的。然而,当安装新内核时,grub 配置不会更新。

该命令grep vmlinuz /boot/grub2/grub.cfg显示

 linux /boot/vmlinuz-6.8.8-300.fc40.x86_64 root=UUID=0e08d465-d601-478f-be17-a2663626588c ro
 linux /boot/vmlinuz-6.8.8-100.fc38.x86_64 root=UUID=0e08d465-d601-478f-be17-a2663626588c ro
 linux /boot/vmlinuz-6.3.12-200.fc38.x86_64 root=UUID=0e08d465-d601-478f-be17-a2663626588c ro

但我没有安装 6.3.12,并ls /boot/loader/entries给了我

 vmlinuz-6.8.8-100.fc38.x86_64
 vmlinuz-6.8.8-300.fc40.x86_64
 vmlinuz-6.8.9-300.fc40.x86_64

rpm -q kernel也同意:

 kernel-6.8.8-100.fc38.x86_64
 kernel-6.8.8-300.fc40.x86_64
 kernel-6.8.9-300.fc40.x86_64

是的,grub2-mkconfig -o /boot/grub2/grub.cfg恢复配置,命令grep vmlinuz /boot/grub2/grub.cfg现在给出

 linux /boot/vmlinuz-6.8.9-300.fc40.x86_64 root=UUID=0e08d465-d601-478f-be17-a2663626588c ro
 linux /boot/vmlinuz-6.8.8-300.fc40.x86_64 root=UUID=0e08d465-d601-478f-be17-a2663626588c ro
 linux /boot/vmlinuz-6.8.8-100.fc38.x86_64 root=UUID=0e08d465-d601-478f-be17-a2663626588c ro

但grub2-mkconfig不应该在每次安装内核时运行。

到底是怎么回事?

fedora
  • 1 个回答
  • 60 Views
Martin Hope
Luis A. Florit
Asked: 2023-05-23 04:42:17 +0800 CST

Fedora Live USB 在分区中?

  • 6

我想随身携带一个 Fedora Live UEFI 启动 USB 以备不时之需,但我不想携带两个 USB 驱动器。所以我想要一个有两个分区的 USB 驱动器,一个用于 Fedora Live 启动,另一个用于我的东西。我一直有一个像这样的笔式驱动器,用于 Fedora Live 26,现在我想要一个用于 Fedora 38(或左右)的笔式驱动器。

问题:

mediawriter,在 Fedora 中写入 Live USB 的标准方法,只写入 USB 设备,不写入分区。

livecd-iso-to-disk会工作,但它有一个长期存在的错误并且不起作用。

unetbootin仅适用于传统引导,不适用于 UEFI。而新的戴尔电脑只能启动 UEFI。自 2015 年以来就有一个公开的请求...

dd: 我试了好几次,dd都失败了。

有任何想法吗?必须有一个简单的方法来做到这一点dd!

############ 编辑 #############

按照@oldfred 发布的一些链接,我能够使用以下收据从笔式驱动器分区启动 UEFI:

Fedora USB LIVE 到笔式驱动器中的分区(例如,/dev/sda1):

  1. 使用 gparted 或类似软件,确保笔式驱动器的第一个分区是 gpt,并且有标签<YOURLABEL>(可以无损更改);

  2. 使用以下命令将引导标志添加到分区:

    parted /dev/sda set 1 boot on
    
  3. 挂载/dev/sda1到 a<MountPoint>并使用 7z 将所有 ISO 内容提取到其中:

    7z x <PATH/TO/ISOFILE.iso> -o<MountPoint>
    
  4. 更改<MountPoint>/efi/boot/grub.cfg并<MountPoint>/boot/grub2/grub.cfg反映正确的设备:

    menuentry 'Fedora-KDE-Live 38 EFI' --class fedora --class gnu-linux --class gnu --class os {
       linuxefi /images/pxeboot/vmlinuz root=live:LABEL=<YOURLABEL>  rd.live.image quiet rhgb
       initrdefi /images/pxeboot/initrd.img
    }   
    

评论。电脑grub菜单中相应的条目可以通过添加到文件中来添加/etc/grub.d/40_custom:

menuentry 'Fedora-KDE-Live 38 EFI' --class fedora --class gnu-linux --class gnu --class os {
    search --no-floppy --label <YOURLABEL> --set=root
    linuxefi /images/pxeboot/vmlinuz root=live:LABEL=<YOURLABEL>  rd.live.image quiet rhgb
    initrdefi /images/pxeboot/initrd.img
}

备注 2.不幸的是,当 ISO 位于笔式驱动器中时,我无法直接从 ISO 启动。根据这篇文章,自 Fedora 33 以来有一个错误阻止了这一点。

fedora
  • 1 个回答
  • 49 Views
Martin Hope
Luis A. Florit
Asked: 2023-05-03 05:11:07 +0800 CST

检测到 USB 大容量存储设备但没有 /dev/sdX?

  • 5

我有一个 HDD,想使用 USB+电源线安装。连接时,我看到消息:

usb 1-2: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36
usb 1-2: New USB device strings: Mfr=4, Product=5, SerialNumber=6
usb 1-2: SerialNumber: 20211228
usb-storage 1-2:1.0: USB Mass Storage device detected
scsi host6: usb-storage 1-2:1.0

但是,lsblk和dmesg显示journalctl -f没有分配/dev/sd*给它的设备匹配。

那我怎么挂载呢?Fedora 38 全面更新。

linux
  • 1 个回答
  • 26 Views
Martin Hope
Luis A. Florit
Asked: 2022-06-22 16:23:07 +0800 CST

没有文本控制台的文本启动:Fedora 36 中的 getty 问题

  • 1

我一直使用没有图形界面的文本+控制台启动。这包括登录,这也只是文本,因为我在登录时做了一些同步的东西,特别是tty1在我有一个自动登录脚本的地方,它通过文件执行以下命令/etc/systemd/system/[email protected]/override.conf:

/usr/sbin/agetty --autologin <myusername> --noclear %I 38400 linux

我刚刚升级到 Fedora 36(从 35 开始),并且引导一切正常,直到最后一步。它没有向我显示文本登录提示,而是在左上角显示一个带有下划线的黑屏。

为什么?

该命令systemctl运行良好,除了一条红线:

● [email protected]    loaded failed failed    Getty on tty1

在日志中,我可以看到一个错误:

agetty[4565]: /dev/tty1: "cannot get controlling tty: Operation not permitted"
agetty[4565]: setting terminal attributes failed: Input/output error

每次以 root 身份尝试时,我都会在控制台中看到此错误

 service [email protected] start

我不知道出了什么问题,但似乎 agetty 命令改变了?

编辑:

如果我把这条线:

ExecStart=-/usr/sbin/agetty --autologin <myusername> --noclear tty1 38400 linux

在文件/etc/systemd/system/[email protected]/override.conf中自动登录有效。但是,如果我更改为

ExecStart=-/home/<myusername>/bin/myautologinscript.sh

与同一行,它没有!

linux fedora
  • 1 个回答
  • 170 Views
Martin Hope
Luis A. Florit
Asked: 2021-09-10 08:58:37 +0800 CST

Android studio 冻结 Fedora(nouveau 和内核崩溃)

  • 1

自从上次升级到 Android Studio(Android Studio Arctic Fox | 2020.3.1 Patch 2 Build #AI-203.7717.56.2031.7678000)以来,我在 Fedora 33 中经常遇到全局系统冻结。没有任何响应,甚至 SSH 服务器,所以唯一的解决方案是硬重启。它总是在打字时冻结。

这里有人有同样的问题吗?

编辑

根据要求,我正在添加 dmesg --level=alert,crit,err,warn. 我希望所需的信息仍然存在:

[    0.165884] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.165948]  #5 #6 #7
[    0.172490] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[    0.173015] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.287753] wait_for_initramfs() called before rootfs_initcalls
[    4.213705] systemd-sysv-generator[573]: SysV service '/etc/rc.d/init.d/livesys-late' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    4.214895] systemd-sysv-generator[573]: SysV service '/etc/rc.d/init.d/network' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    4.216144] systemd-sysv-generator[573]: SysV service '/etc/rc.d/init.d/livesys' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    4.899093] ACPI Warning: SystemIO range 0x0000000000001828-0x000000000000182F conflicts with OpRegion 0x0000000000001800-0x000000000000187F (\PMIO) (20210331/utaddress-204)
[    4.899732] ACPI Warning: SystemIO range 0x0000000000001C40-0x0000000000001C4F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20210331/utaddress-204)
[    4.900844] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20210331/utaddress-204)
[    4.901495] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20210331/utaddress-204)
[    4.901500] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL)
[    4.902664]  (20210331/utaddress-204)
[    4.902704] ACPI Warning: 
[    4.903893] SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20210331/utaddress-204)
[    4.903896] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    5.178789] at24 13-0050: supply vcc not found, using dummy regulator
[    5.179916] at24 13-0051: supply vcc not found, using dummy regulator
[    5.181186] at24 13-0052: supply vcc not found, using dummy regulator
[    5.182506] at24 13-0053: supply vcc not found, using dummy regulator
[    5.459435] kauditd_printk_skb: 96 callbacks suppressed
[    5.740341] ext4 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
[    7.154729] Bluetooth: hci0: command 0x1005 tx timeout
[    9.202670] Bluetooth: hci0: command 0x0c23 tx timeout
[   11.250636] Bluetooth: hci0: command 0x0c14 tx timeout
[   13.298596] Bluetooth: hci0: command 0x0c25 tx timeout
[   15.346559] Bluetooth: hci0: command 0x0c38 tx timeout
[   17.394520] Bluetooth: hci0: command tx timeout
[ 1832.091017] IRQ 29: no longer affine to CPU4
[ 1832.093063] IRQ 28: no longer affine to CPU5
[ 1832.093066] IRQ 30: no longer affine to CPU5
[ 1832.094878] IRQ 23: no longer affine to CPU6
[ 1832.094882] IRQ 25: no longer affine to CPU6
[ 1832.094885] IRQ 32: no longer affine to CPU6
[ 1832.096684] IRQ 18: no longer affine to CPU7
[ 1832.096687] IRQ 19: no longer affine to CPU7
[ 1832.096690] IRQ 27: no longer affine to CPU7
[ 1834.430082] Bluetooth: hci0: command 0x0c16 tx timeout
[ 1836.478094] Bluetooth: hci0: command 0x2002 tx timeout
[ 1837.499045] ata3: link is slow to respond, please be patient (ready=0)
[ 1837.500053] ata1: link is slow to respond, please be patient (ready=0)
[ 1838.525986] Bluetooth: hci0: command 0x2003 tx timeout
[ 1840.574009] Bluetooth: hci0: command 0x201c tx timeout
[ 1842.495776] Bluetooth: hci0: command tx timeout
[18453.352264] IRQ 29: no longer affine to CPU4
[18453.354087] IRQ 23: no longer affine to CPU5
[18453.354091] IRQ 25: no longer affine to CPU5
[18453.355958] IRQ 16: no longer affine to CPU6
[18453.355963] IRQ 26: no longer affine to CPU6
[18453.355967] IRQ 32: no longer affine to CPU6
[18453.357790] IRQ 19: no longer affine to CPU7
[18453.357796] IRQ 28: no longer affine to CPU7
[18453.357799] IRQ 30: no longer affine to CPU7
[18455.781051] done.
[18457.872004] Bluetooth: hci0: command 0x1001 tx timeout
[18458.761887] ata1: link is slow to respond, please be patient (ready=0)
[18458.762881] ata3: link is slow to respond, please be patient (ready=0)
[18459.919872] Bluetooth: hci0: command 0x1009 tx timeout

编辑 2

它只是再次崩溃。输出dmesg --level=alert,crit,err,warn:

[    0.165915] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.165973]  #5 #6 #7
[    0.172521] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[    0.173044] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.287783] wait_for_initramfs() called before rootfs_initcalls
[    7.086711] usb 3-5: device descriptor read/64, error -110
[    8.324313] kauditd_printk_skb: 5 callbacks suppressed
[    8.940835] systemd-sysv-generator[574]: SysV service '/etc/rc.d/init.d/livesys-late' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    8.942438] systemd-sysv-generator[574]: SysV service '/etc/rc.d/init.d/network' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    8.944077] systemd-sysv-generator[574]: SysV service '/etc/rc.d/init.d/livesys' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    9.619007] ACPI Warning: SystemIO range 0x0000000000001828-0x000000000000182F conflicts with OpRegion 0x0000000000001800-0x000000000000187F (\PMIO) (20210331/utaddress-204)
[    9.619640] ACPI Warning: SystemIO range 0x0000000000001C40-0x0000000000001C4F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20210331/utaddress-204)
[    9.621931] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20210331/utaddress-204)
[    9.622116] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20210331/utaddress-204)
[    9.623233] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20210331/utaddress-204)
[    9.624779] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20210331/utaddress-204)
[    9.625544] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    9.786915] at24 13-0050: supply vcc not found, using dummy regulator
[    9.789823] at24 13-0051: supply vcc not found, using dummy regulator
[    9.791691] at24 13-0052: supply vcc not found, using dummy regulator
[    9.793324] at24 13-0053: supply vcc not found, using dummy regulator
[   10.174554] ext4 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
[   13.354089] kauditd_printk_skb: 87 callbacks suppressed

编辑 3

我在几天内经历了大约 10 次冻结。我担心 Studio 会损坏我的电脑。尽管我将整个系统升级到了最新的 Fedora 34,但冻结仍在继续。

的最后输出dmesg --level=alert,crit,err,warn:

[    0.166421] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.166484]  #5 #6 #7
[    0.173036] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[    0.173550] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.287346] wait_for_initramfs() called before rootfs_initcalls
[    3.397929] systemd-sysv-generator[567]: SysV service '/etc/rc.d/init.d/livesys-late' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    3.399641] systemd-sysv-generator[567]: SysV service '/etc/rc.d/init.d/network' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    3.400982] systemd-sysv-generator[567]: SysV service '/etc/rc.d/init.d/livesys' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    3.713080] systemd-journald[593]: File /var/log/journal/9ff77e59cfd04f078e4b747742c5981e/system.journal corrupted or uncleanly shut down, renaming and replacing.
[    4.036564] ACPI Warning: SystemIO range 0x0000000000001828-0x000000000000182F conflicts with OpRegion 0x0000000000001800-0x000000000000187F (\PMIO) (20210331/utaddress-204)
[    4.037179] ACPI Warning: SystemIO range 0x0000000000001C40-0x0000000000001C4F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20210331/utaddress-204)
[    4.038257] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20210331/utaddress-204)
[    4.038808] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20210331/utaddress-204)
[    4.039932] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20210331/utaddress-204)
[    4.041794] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20210331/utaddress-204)
[    4.042527] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    4.468471] at24 13-0050: supply vcc not found, using dummy regulator
[    4.470405] at24 13-0051: supply vcc not found, using dummy regulator
[    4.474870] at24 13-0052: supply vcc not found, using dummy regulator
[    4.476069] at24 13-0053: supply vcc not found, using dummy regulator
[    4.637421] ext4 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
[    5.321533] kauditd_printk_skb: 100 callbacks suppressed

编辑 4 另一个冻结。内核崩溃的 journalctl 输出:

$ journalctl -S '2021-09-16 13:30:00'

13:43:57 Orion kernel: general protection fault, probably for non-canonical address 0x108ddb743acd5eb1: 0000 [#1] SMP PTI
13:43:57 Orion kernel: CPU: 4 PID: 2724 Comm: Xorg Not tainted 5.13.15-200.fc34.x86_64 #1
13:43:57 Orion kernel: Hardware name: Dell Inc. XPS 8700/0KWVT8, BIOS A07 03/13/2014
13:43:57 Orion kernel: RIP: 0010:kmem_cache_alloc_trace+0xac/0x220
13:43:57 Orion kernel: Code: aa 20 d1 44 49 8b 00 49 83 78 10 00 48 89 44 24 08 0f 84 43 01 00 00 48 85 c0 0f 84 3a 01 00 00 8b 4d 28 48 8b 7d 00 48 01 c1 <48> 8b 19 48 89 ce 48>
13:43:57 Orion kernel: RSP: 0018:ffffb7d901f3f700 EFLAGS: 00010206
13:43:57 Orion kernel: RAX: 108ddb743acd5e81 RBX: 0000000000000002 RCX: 108ddb743acd5eb1
13:43:57 Orion kernel: RDX: 0000000000728bcf RSI: 0000000000000dc0 RDI: 00000000000300c0
13:43:57 Orion kernel: RBP: ffff8dd200042600 R08: ffff8dd50ed300c0 R09: 0000000000000018
13:43:57 Orion kernel: R10: ffff8dd12d26f208 R11: ffffb7d901f3f988 R12: 0000000000000dc0
13:43:57 Orion kernel: R13: ffff8dd200042600 R14: 0000000000003000 R15: ffffffffc06922ce
13:43:57 Orion kernel: FS:  00007f32b7bcea80(0000) GS:ffff8dd50ed00000(0000) knlGS:0000000000000000
13:43:57 Orion kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
13:43:57 Orion kernel: CR2: 00007f32b778d000 CR3: 000000010984e003 CR4: 00000000001706e0
13:43:57 Orion kernel: Call Trace:
13:43:57 Orion kernel:  nvkm_mem_new_type+0xae/0x2a0 [nouveau]
13:43:57 Orion kernel:  nvkm_umem_new+0x130/0x220 [nouveau]
13:43:57 Orion kernel:  nvkm_ioctl_new+0x129/0x1e0 [nouveau]
13:43:57 Orion kernel:  ? nvkm_umem_search+0xe0/0xe0 [nouveau]
13:43:57 Orion kernel:  nvkm_ioctl+0xdc/0x180 [nouveau]
13:43:57 Orion kernel:  nvif_object_ctor+0x122/0x1c0 [nouveau]
13:43:57 Orion kernel:  nvif_mem_ctor_type+0xc2/0x180 [nouveau]
13:43:57 Orion kernel:  ? nvkm_vmm_ptes_get_map+0x2c/0x90 [nouveau]
13:43:57 Orion kernel:  ? nvkm_vmm_map+0x18d/0x350 [nouveau]
13:43:57 Orion kernel:  nouveau_mem_host+0xf3/0x190 [nouveau]
13:43:57 Orion kernel:  nouveau_sgdma_bind+0x30/0x80 [nouveau]
13:43:57 Orion kernel:  nouveau_bo_move+0x3c1/0x820 [nouveau]
13:43:57 Orion kernel:  ? ttm_pool_type_take+0x7d/0x90 [ttm]
13:43:57 Orion kernel:  ? ttm_pool_alloc+0xe6/0x590 [ttm]
13:43:57 Orion kernel:  ttm_bo_handle_move_mem+0x90/0x170 [ttm]
13:43:57 Orion kernel:  ttm_bo_validate+0x11c/0x150 [ttm]
13:43:57 Orion kernel:  ttm_bo_init_reserved+0x239/0x2c0 [ttm]
13:43:57 Orion kernel:  ttm_bo_init+0x4a/0xc0 [ttm]
13:43:57 Orion kernel:  ? nv10_bo_put_tile_region.isra.0+0x80/0x80 [nouveau]
13:43:57 Orion kernel:  nouveau_bo_init+0x7c/0x90 [nouveau]
13:43:57 Orion kernel:  ? nv10_bo_put_tile_region.isra.0+0x80/0x80 [nouveau]
13:43:57 Orion kernel:  ? nouveau_gem_new+0xf0/0xf0 [nouveau]
13:43:57 Orion kernel:  nouveau_gem_new+0x7f/0xf0 [nouveau]
13:43:57 Orion kernel:  nouveau_gem_ioctl_new+0x45/0xe0 [nouveau]
13:43:57 Orion kernel:  ? nouveau_gem_new+0xf0/0xf0 [nouveau]
13:43:57 Orion kernel:  drm_ioctl_kernel+0x86/0xd0 [drm]
13:43:57 Orion kernel:  drm_ioctl+0x220/0x3e0 [drm]
13:43:57 Orion kernel:  ? nouveau_gem_new+0xf0/0xf0 [nouveau]
13:43:57 Orion kernel:  ? __ia32_sys_timer_getoverrun+0x40/0x50
13:43:57 Orion kernel:  nouveau_drm_ioctl+0x55/0xa0 [nouveau]
13:43:57 Orion kernel:  __x64_sys_ioctl+0x82/0xb0
13:43:57 Orion kernel:  do_syscall_64+0x40/0x80
13:43:57 Orion kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xae
13:43:57 Orion kernel: RIP: 0033:0x7f32b84540ab
13:43:57 Orion kernel: Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73>
13:43:57 Orion kernel: RSP: 002b:00007ffdd87e5148 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
13:43:57 Orion kernel: RAX: ffffffffffffffda RBX: 00007ffdd87e51a0 RCX: 00007f32b84540ab
13:43:57 Orion kernel: RDX: 00007ffdd87e51a0 RSI: 00000000c0306480 RDI: 000000000000000f
13:43:57 Orion kernel: RBP: 00000000c0306480 R08: 0000556e9a4293d0 R09: 0000000000000016
13:43:57 Orion kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 0000556e994bc7e0
13:43:57 Orion kernel: R13: 000000000000000f R14: 00007ffdd87e51a0 R15: 0000000000003000
13:43:57 Orion kernel: Modules linked in: tun cdc_acm md4 nls_utf8 cifs dns_resolver fscache netfs libdes snd_seq_dummy snd_hrtimer dm_crypt trusted asn1_encoder xt_nat iptable_>
13:43:57 Orion kernel:  drm_ttm_helper ttm i2c_algo_bit mxm_wmi crct10dif_pclmul crc32_pclmul crc32c_intel wmi drm_kms_helper ghash_clmulni_intel cec drm r8169 video uas usb_sto>
13:43:57 Orion kernel: ---[ end trace 6a741c284e912584 ]---
13:43:57 Orion kernel: RIP: 0010:kmem_cache_alloc_trace+0xac/0x220
13:43:57 Orion kernel: Code: aa 20 d1 44 49 8b 00 49 83 78 10 00 48 89 44 24 08 0f 84 43 01 00 00 48 85 c0 0f 84 3a 01 00 00 8b 4d 28 48 8b 7d 00 48 01 c1 <48> 8b 19 48 89 ce 48>
13:43:57 Orion kernel: RSP: 0018:ffffb7d901f3f700 EFLAGS: 00010206
13:43:57 Orion kernel: general protection fault, probably for non-canonical address 0x108ddb743acd5eb1: 0000 [#1] SMP PTI
13:43:57 Orion kernel: CPU: 4 PID: 2724 Comm: Xorg Not tainted 5.13.15-200.fc34.x86_64 #1
13:43:57 Orion kernel: Hardware name: Dell Inc. XPS 8700/0KWVT8, BIOS A07 03/13/2014
13:43:57 Orion kernel: RIP: 0010:kmem_cache_alloc_trace+0xac/0x220
13:43:57 Orion kernel: Code: aa 20 d1 44 49 8b 00 49 83 78 10 00 48 89 44 24 08 0f 84 43 01 00 00 48 85 c0 0f 84 3a 01 00 00 8b 4d 28 48 8b 7d 00 48 01 c1 <48> 8b 19 48 89 ce 48>
13:43:57 Orion kernel: RSP: 0018:ffffb7d901f3f700 EFLAGS: 00010206
13:43:57 Orion kernel: RAX: 108ddb743acd5e81 RBX: 0000000000000002 RCX: 108ddb743acd5eb1
13:43:57 Orion kernel: RDX: 0000000000728bcf RSI: 0000000000000dc0 RDI: 00000000000300c0
13:43:57 Orion kernel: RBP: ffff8dd200042600 R08: ffff8dd50ed300c0 R09: 0000000000000018
13:43:57 Orion kernel: R10: ffff8dd12d26f208 R11: ffffb7d901f3f988 R12: 0000000000000dc0
13:43:57 Orion kernel: R13: ffff8dd200042600 R14: 0000000000003000 R15: ffffffffc06922ce
13:43:57 Orion kernel: FS:  00007f32b7bcea80(0000) GS:ffff8dd50ed00000(0000) knlGS:0000000000000000
13:43:57 Orion kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
13:43:57 Orion kernel: CR2: 00007f32b778d000 CR3: 000000010984e003 CR4: 00000000001706e0
13:43:57 Orion kernel: Call Trace:
13:43:57 Orion kernel:  nvkm_mem_new_type+0xae/0x2a0 [nouveau]
13:43:57 Orion kernel:  nvkm_umem_new+0x130/0x220 [nouveau]
13:43:57 Orion kernel:  nvkm_ioctl_new+0x129/0x1e0 [nouveau]
13:43:57 Orion kernel:  ? nvkm_umem_search+0xe0/0xe0 [nouveau]
13:43:57 Orion kernel:  nvkm_ioctl+0xdc/0x180 [nouveau]
13:43:57 Orion kernel:  nvif_object_ctor+0x122/0x1c0 [nouveau]
13:43:57 Orion kernel:  nvif_mem_ctor_type+0xc2/0x180 [nouveau]
13:43:57 Orion kernel:  ? nvkm_vmm_ptes_get_map+0x2c/0x90 [nouveau]
13:43:57 Orion kernel:  ? nvkm_vmm_map+0x18d/0x350 [nouveau]
13:43:57 Orion kernel:  nouveau_mem_host+0xf3/0x190 [nouveau]
13:43:57 Orion kernel:  nouveau_sgdma_bind+0x30/0x80 [nouveau]
13:43:57 Orion kernel:  nouveau_bo_move+0x3c1/0x820 [nouveau]
13:43:57 Orion kernel:  ? ttm_pool_type_take+0x7d/0x90 [ttm]
13:43:57 Orion kernel:  ? ttm_pool_alloc+0xe6/0x590 [ttm]
13:43:57 Orion kernel:  ttm_bo_handle_move_mem+0x90/0x170 [ttm]
13:43:57 Orion kernel:  ttm_bo_validate+0x11c/0x150 [ttm]
13:43:57 Orion kernel:  ttm_bo_init_reserved+0x239/0x2c0 [ttm]
13:43:57 Orion kernel:  ttm_bo_init+0x4a/0xc0 [ttm]
13:43:57 Orion kernel:  ? nv10_bo_put_tile_region.isra.0+0x80/0x80 [nouveau]
13:43:57 Orion kernel:  nouveau_bo_init+0x7c/0x90 [nouveau]
13:43:57 Orion kernel:  ? nv10_bo_put_tile_region.isra.0+0x80/0x80 [nouveau]
13:43:57 Orion kernel:  ? nouveau_gem_new+0xf0/0xf0 [nouveau]
13:43:57 Orion kernel:  nouveau_gem_new+0x7f/0xf0 [nouveau]
13:43:57 Orion kernel:  nouveau_gem_ioctl_new+0x45/0xe0 [nouveau]
13:43:57 Orion kernel:  ? nouveau_gem_new+0xf0/0xf0 [nouveau]
13:43:57 Orion kernel:  drm_ioctl_kernel+0x86/0xd0 [drm]
13:43:57 Orion kernel:  drm_ioctl+0x220/0x3e0 [drm]
13:43:57 Orion kernel:  ? nouveau_gem_new+0xf0/0xf0 [nouveau]
13:43:57 Orion kernel:  ? __ia32_sys_timer_getoverrun+0x40/0x50
13:43:57 Orion kernel:  nouveau_drm_ioctl+0x55/0xa0 [nouveau]
13:43:57 Orion kernel:  __x64_sys_ioctl+0x82/0xb0
13:43:57 Orion kernel:  do_syscall_64+0x40/0x80
13:43:57 Orion kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xae
13:43:57 Orion kernel: RIP: 0033:0x7f32b84540ab
13:43:57 Orion kernel: Code: ff ff ff 85 c0 79 9b 49 c7 c4 ff ff ff ff 5b 5d 4c 89 e0 41 5c c3 66 0f 1f 84 00 00 00 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73>
13:43:57 Orion kernel: RSP: 002b:00007ffdd87e5148 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
13:43:57 Orion kernel: RAX: ffffffffffffffda RBX: 00007ffdd87e51a0 RCX: 00007f32b84540ab
13:43:57 Orion kernel: RDX: 00007ffdd87e51a0 RSI: 00000000c0306480 RDI: 000000000000000f
13:43:57 Orion kernel: RBP: 00000000c0306480 R08: 0000556e9a4293d0 R09: 0000000000000016
13:43:57 Orion kernel: R10: 0000000000000000 R11: 0000000000000246 R12: 0000556e994bc7e0
13:43:57 Orion kernel: R13: 000000000000000f R14: 00007ffdd87e51a0 R15: 0000000000003000
13:43:57 Orion kernel: Modules linked in: tun cdc_acm md4 nls_utf8 cifs dns_resolver fscache netfs libdes snd_seq_dummy snd_hrtimer dm_crypt trusted asn1_encoder xt_nat iptable_>
13:43:57 Orion kernel:  drm_ttm_helper ttm i2c_algo_bit mxm_wmi crct10dif_pclmul crc32_pclmul crc32c_intel wmi drm_kms_helper ghash_clmulni_intel cec drm r8169 video uas usb_sto>
13:43:57 Orion kernel: ---[ end trace 6a741c284e912584 ]---
13:43:57 Orion kernel: RIP: 0010:kmem_cache_alloc_trace+0xac/0x220
13:43:57 Orion kernel: Code: aa 20 d1 44 49 8b 00 49 83 78 10 00 48 89 44 24 08 0f 84 43 01 00 00 48 85 c0 0f 84 3a 01 00 00 8b 4d 28 48 8b 7d 00 48 01 c1 <48> 8b 19 48 89 ce 48>
13:43:57 Orion kernel: RSP: 0018:ffffb7d901f3f700 EFLAGS: 00010206
13:43:57 Orion kernel: RAX: 108ddb743acd5e81 RBX: 0000000000000002 RCX: 108ddb743acd5eb1
13:43:57 Orion kernel: RDX: 0000000000728bcf RSI: 0000000000000dc0 RDI: 00000000000300c0
13:43:57 Orion kernel: RBP: ffff8dd200042600 R08: ffff8dd50ed300c0 R09: 0000000000000018
13:43:57 Orion kernel: R10: ffff8dd12d26f208 R11: ffffb7d901f3f988 R12: 0000000000000dc0
13:43:57 Orion kernel: R13: ffff8dd200042600 R14: 0000000000003000 R15: ffffffffc06922ce
13:43:57 Orion kernel: FS:  00007f32b7bcea80(0000) GS:ffff8dd50ed00000(0000) knlGS:0000000000000000
13:43:57 Orion kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
13:43:57 Orion kernel: CR2: 00007f32b778d000 CR3: 000000010984e003 CR4: 00000000001706e0
13:44:32 Orion kernel: usb 4-5: USB disconnect, device number 2
13:44:32 Orion kernel: sd 6:0:0:0: [sde] Synchronizing SCSI cache
13:44:32 Orion kernel: sd 6:0:0:0: [sde] Synchronize Cache(10) failed: Result: hostbyte=DID_NO_CONNECT driverbyte=DRIVER_OK
13:44:32 Orion kernel: usb 4-5: new SuperSpeed USB device number 3 using xhci_hcd
13:44:32 Orion kernel: usb 4-5: New USB device found, idVendor=0781, idProduct=5580, bcdDevice= 0.10
13:44:32 Orion kernel: usb 4-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
13:44:32 Orion kernel: usb 4-5: Product: Extreme
13:44:32 Orion kernel: usb 4-5: Manufacturer: SanDisk
13:44:32 Orion kernel: usb 4-5: SerialNumber: AA010527142139551888
13:44:32 Orion kernel: usb-storage 4-5:1.0: USB Mass Storage device detected
13:44:32 Orion kernel: scsi host9: usb-storage 4-5:1.0
13:44:32 Orion mtp-probe[251591]: checking bus 4, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb4/4-5"
13:44:32 Orion mtp-probe[251591]: bus: 4, device: 3 was not an MTP device
13:44:32 Orion mtp-probe[251597]: checking bus 4, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb4/4-5"
13:44:32 Orion mtp-probe[251597]: bus: 4, device: 3 was not an MTP device
13:44:33 Orion kernel: scsi 9:0:0:0: Direct-Access     SanDisk  Extreme          0001 PQ: 0 ANSI: 6
13:44:33 Orion kernel: sd 9:0:0:0: Attached scsi generic sg4 type 0
13:44:33 Orion kernel: sd 9:0:0:0: [sdn] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
13:44:33 Orion kernel: sd 9:0:0:0: [sdn] Write Protect is off
13:44:33 Orion kernel: sd 9:0:0:0: [sdn] Mode Sense: 33 00 00 08
13:44:33 Orion kernel: sd 9:0:0:0: [sdn] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
13:44:33 Orion kernel:  sdn: sdn1 sdn2
13:44:33 Orion kernel: sd 9:0:0:0: [sdn] Attached SCSI disk
13:45:01 Orion CROND[251616]: (root) CMD ([[ "`pgrep -x each5min`" ]] || each5min >& /dev/console)
13:45:01 Orion CROND[251615]: (root) CMDEND ([[ "`pgrep -x each5min`" ]] || each5min >& /dev/console)
13:45:06 Orion sshd[251632]: rexec line 123: Deprecated option UsePrivilegeSeparation
13:45:06 Orion audit[251633]: CRYPTO_KEY_USER pid=251633 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='op=destroy kind=server fp=SHA256:ee:51:4b:d5:b0:6a:97:cd:fa:74:d8:>
13:45:06 Orion audit[251632]: CRYPTO_SESSION pid=251632 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='op=start direction=from-server [email protected] ksize=>
13:45:06 Orion audit[251632]: CRYPTO_SESSION pid=251632 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='op=start direction=from-client [email protected] ksize=>
13:45:06 Orion kernel: general protection fault, probably for non-canonical address 0x108ddb743acd5eb1: 0000 [#2] SMP PTI
13:45:06 Orion kernel: CPU: 4 PID: 251632 Comm: sshd Tainted: G      D           5.13.15-200.fc34.x86_64 #1
13:45:06 Orion kernel: Hardware name: Dell Inc. XPS 8700/0KWVT8, BIOS A07 03/13/2014
13:45:06 Orion kernel: RIP: 0010:__kmalloc+0xc7/0x260
13:45:06 Orion kernel: Code: 05 de 1d d1 44 49 8b 00 49 83 78 10 00 48 89 04 24 0f 84 70 01 00 00 48 85 c0 0f 84 67 01 00 00 8b 4d 28 48 8b 7d 00 48 01 c1 <48> 8b 19 48 89 ce 48>
13:45:06 Orion kernel: RSP: 0018:ffffb7d90d6a78c0 EFLAGS: 00010206
13:45:06 Orion kernel: RAX: 108ddb743acd5e81 RBX: 0000000000000000 RCX: 108ddb743acd5eb1
13:45:06 Orion kernel: RDX: 0000000000728bcf RSI: 0000000000000d40 RDI: 00000000000300c0
13:45:06 Orion kernel: RBP: ffff8dd200042600 R08: ffff8dd50ed300c0 R09: 0000000000000002
13:45:06 Orion kernel: R10: 00000000002c4051 R11: 0000000000000001 R12: 0000000000000d40
13:45:06 Orion kernel: R13: 0000000000000060 R14: ffff8dd200042600 R15: ffffffffbb4003b1
13:45:06 Orion kernel: FS:  00007f77fe857900(0000) GS:ffff8dd50ed00000(0000) knlGS:0000000000000000
13:45:06 Orion kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
13:45:06 Orion kernel: CR2: 00007f77ff4ed49f CR3: 000000010469c002 CR4: 00000000001706e0
13:43:57 Orion kernel: general protection fault, probably for non-canonical address 0x108ddb743acd5eb1: 0000 [#1] SMP PTI
13:43:57 Orion kernel: CPU: 4 PID: 2724 Comm: Xorg Not tainted 5.13.15-200.fc34.x86_64 #1
13:43:57 Orion kernel: Hardware name: Dell Inc. XPS 8700/0KWVT8, BIOS A07 03/13/2014
13:43:57 Orion kernel: RIP: 0010:kmem_cache_alloc_trace+0xac/0x220
13:43:57 Orion kernel: Code: aa 20 d1 44 49 8b 00 49 83 78 10 00 48 89 44 24 08 0f 84 43 01 00 00 48 85 c0 0f 84 3a 01 00 00 8b 4d 28 48 8b 7d 00 48 01 c1 <48> 8b 19 48 89 ce 48>
13:43:57 Orion kernel: RSP: 0018:ffffb7d901f3f700 EFLAGS: 00010206
13:43:57 Orion kernel: RAX: 108ddb743acd5e81 RBX: 0000000000000002 RCX: 108ddb743acd5eb1
13:43:57 Orion kernel: RDX: 0000000000728bcf RSI: 0000000000000dc0 RDI: 00000000000300c0
13:43:57 Orion kernel: RBP: ffff8dd200042600 R08: ffff8dd50ed300c0 R09: 0000000000000018
13:43:57 Orion kernel: R10: ffff8dd12d26f208 R11: ffffb7d901f3f988 R12: 0000000000000dc0
13:43:57 Orion kernel: R13: ffff8dd200042600 R14: 0000000000003000 R15: ffffffffc06922ce
13:43:57 Orion kernel: FS:  00007f32b7bcea80(0000) GS:ffff8dd50ed00000(0000) knlGS:0000000000000000
13:43:57 Orion kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
13:43:57 Orion kernel: CR2: 00007f32b778d000 CR3: 000000010984e003 CR4: 00000000001706e0
13:43:57 Orion kernel: Call Trace:
13:43:57 Orion kernel:  nvkm_mem_new_type+0xae/0x2a0 [nouveau]
13:43:57 Orion kernel:  nvkm_umem_new+0x130/0x220 [nouveau]
13:43:57 Orion kernel:  nvkm_ioctl_new+0x129/0x1e0 [nouveau]
13:43:57 Orion kernel:  ? nvkm_umem_search+0xe0/0xe0 [nouveau]
13:43:57 Orion kernel:  nvkm_ioctl+0xdc/0x180 [nouveau]
13:43:57 Orion kernel:  nvif_object_ctor+0x122/0x1c0 [nouveau]
13:43:57 Orion kernel:  nvif_mem_ctor_type+0xc2/0x180 [nouveau]
13:43:57 Orion kernel:  ? nvkm_vmm_ptes_get_map+0x2c/0x90 [nouveau]

……

fedora nvidia
  • 1 个回答
  • 149 Views

Sidebar

Stats

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

    模块 i915 可能缺少固件 /lib/firmware/i915/*

    • 3 个回答
  • Marko Smith

    无法获取 jessie backports 存储库

    • 4 个回答
  • Marko Smith

    如何将 GPG 私钥和公钥导出到文件

    • 4 个回答
  • Marko Smith

    我们如何运行存储在变量中的命令?

    • 5 个回答
  • Marko Smith

    如何配置 systemd-resolved 和 systemd-networkd 以使用本地 DNS 服务器来解析本地域和远程 DNS 服务器来解析远程域?

    • 3 个回答
  • Marko Smith

    dist-upgrade 后 Kali Linux 中的 apt-get update 错误 [重复]

    • 2 个回答
  • Marko Smith

    如何从 systemctl 服务日志中查看最新的 x 行

    • 5 个回答
  • Marko Smith

    Nano - 跳转到文件末尾

    • 8 个回答
  • Marko Smith

    grub 错误:你需要先加载内核

    • 4 个回答
  • Marko Smith

    如何下载软件包而不是使用 apt-get 命令安装它?

    • 7 个回答
  • Martin Hope
    user12345 无法获取 jessie backports 存储库 2019-03-27 04:39:28 +0800 CST
  • Martin Hope
    Carl 为什么大多数 systemd 示例都包含 WantedBy=multi-user.target? 2019-03-15 11:49:25 +0800 CST
  • Martin Hope
    rocky 如何将 GPG 私钥和公钥导出到文件 2018-11-16 05:36:15 +0800 CST
  • Martin Hope
    Evan Carroll systemctl 状态显示:“状态:降级” 2018-06-03 18:48:17 +0800 CST
  • Martin Hope
    Tim 我们如何运行存储在变量中的命令? 2018-05-21 04:46:29 +0800 CST
  • Martin Hope
    Ankur S 为什么 /dev/null 是一个文件?为什么它的功能不作为一个简单的程序来实现? 2018-04-17 07:28:04 +0800 CST
  • Martin Hope
    user3191334 如何从 systemctl 服务日志中查看最新的 x 行 2018-02-07 00:14:16 +0800 CST
  • Martin Hope
    Marko Pacak Nano - 跳转到文件末尾 2018-02-01 01:53:03 +0800 CST
  • Martin Hope
    Kidburla 为什么真假这么大? 2018-01-26 12:14:47 +0800 CST
  • Martin Hope
    Christos Baziotis 在一个巨大的(70GB)、一行、文本文件中替换字符串 2017-12-30 06:58:33 +0800 CST

热门标签

linux bash debian shell-script text-processing ubuntu centos shell awk ssh

Explore

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

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve