为什么发出相同的命令在 tty 中比在 pts/gnome-terminal 中创建更多的输出?

为什么发出相同的命令在 tty 中比在 pts/gnome-terminal 中创建更多的输出?

gnome 终端:

$ sudo update-grub
[sudo] password for user: 
Generating grub configuration file ...
Found background image: .background_cache.png
Found linux image: /boot/vmlinuz-3.16.0-4-amd64
Found initrd image: /boot/initrd.img-3.16.0-4-amd64
done

tty1 通过Ctrl+ Alt+访问F1

$ sudo update-grub
[sudo] password for user: 
Generating grub configuration file ...
Found background image: .background_cache.png
Found linux image: /boot/vmlinuz-3.16.0-4-amd64
Found initrd image: /boot/initrd.img-3.16.0-4-amd64
[ 1603.545926] EXT4-fs (sda2): unable to read superblock
... (repeats twice)
[ 1603.560671] FAT-fs (sda2): invalid media value (0x4c)
... (repeats once)
[ 1603.573245] qnx4: no qnx4 filesystem (no root dir).
done

在尝试重定向 tty1 的输出以便能够直接将其复制到此处时,我注意到这些附加行不是来自命令的 stdout 或 stderr。从那以后呢?为什么?

答案1

它们来自内核。你也会通过运行看到它们

dmesg

内核消息默认显示在虚拟控制台上;它们不在 X 终端模拟器(例如 GNOME 终端)中。

相关内容