Linux下的tty的使用

1.查看机器目前所有的在运行的TTY

[root@localhost ~]# w
 05:49:15 up 23 min,  3 users,  load average: 0.00, 0.04, 0.08
USER     TTY      FROM             LOGIN@   IDLE   JCPU   PCPU WHAT
root     tty1                      05:26   12:35   0.17s  0.17s -bash
root     tty2                      05:38    2:51   0.03s  0.03s -bash
root     pts/0    			      05:48    3.00s  0.07s  0.03s w
w 可以显示从哪个远程端登录
[root@localhost ~]# who
root     tty1         2019-01-05 05:26
root     tty2         2019-01-05 05:38
root     pts/0        2019-01-05 05:48
who显示的只有用户名和登录时间

2.如何查看当前的使用的TTY

[root@localhost ~]# who am i
root     pts/0        2019-01-05 05:48
pts指的是虚拟终端
或者
[root@localhost ~]# tty
/dev/pts/0

3.切换TTY及TTY之间通信
切换 <1> CTRL+ALT+F1~F6
F1~F6分别为tty1 ~tty6
<2> sudo chvt 1
数字代表tty1
通信

echo “hello word” > /dev/tty1

你可能感兴趣的:(Linux下的tty的使用)