linux - "vt"在linuxagetty命令parm中做什么

标签 linux

在 Linux 终端中使用“managetty”

我们可以看到“/sbin/agetty --local-line 9600 ttyS1 vt100 ” 那么这个 vt100 是什么意思?

谢谢大家。

请有人告诉我这是什么东西? 100 在做什么?

最佳答案

根据http://www.tin.org/bin/man.cgi?section=8&topic=getty :

term is the value to be used for the TERM environment variable. This overrides whatever init(8) may have set, and is inherited by login and the shell. The default is 'vt100', or 'linux' for Linux on a virtual terminal, or 'hurd' for GNU Hurd on a virtual terminal.

因此 TERM 的值决定了您的系统使用什么终端仿真来显示屏幕。在 Linux 中默认为“vt100”或“linux”。

“vt100”这个名字来源于第一台数字视频终端VT100https://en.wikipedia.org/wiki/VT100 .

关于linux - "vt"在linuxagetty命令parm中做什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71707532/

相关文章:

c - 指向结构成员的指针

django - Upstart 卡在停止

c - 我们如何在两个不同的内核模块之间共享一个哈希表

linux - 在不使用任何预定义函数和使用 shell 脚本的情况下为 diff 输出着色

python - 为什么从 python 调用 shopt 会失败?

python - Microsoft Excel 2010 和 Python 中的 protected View

php-fpm使postfix将邮件从root@myDomain发送到root@myDomain

java - bluecove 是否适用于 Linux 64 位?

linux - 如何按最新修改日期最后按时间顺序对 "grep -l"的输出进行排序?

c++ - 在不使用/proc/mounts、/etc/fstab、system() 或 popen() 的情况下,在 Linux 上列出 C++ 中的挂载点