Linux的终端类型

1、串行端口终端(/dev/ttySn):  

    串行端口终端(Serial Port Terminal)是使用计算机串行端口连接的终端设备。计算机把每个串行端口都看作是一个字符设备。有段时间这些串行端口设备通常被称为终端设备,因为那时它的最大用途就是用来连接终端。这些串行端口所对应的设备名称是/dev/tts/0(或/dev/ttyS0), /dev/tts/1(或/dev/ttyS1)等,设备号分别是(4,0), (4,1)等,分别对应于DOS系统下的COM1、COM2等。若要向一个端口发送数据,可以在命令行上把标准输出重定向到这些特殊文件名上即可。

2、伪终端(/dev/pty):

    所谓伪终端是逻辑上的终端设备,多用于模拟终端程序。例如我们在Windows使用telnet或ssh等方式登录Linux主机,此时均在使用pty设备。

    pty即Pseudo-TTY 伪终端或者叫做虚拟终端。是成对的逻辑终端设备(即master和slave设备, 对master的操作会反映到slave上)。

    pts是Pseudo Terminal Slave的缩写。是pty的实现方法,与ptmx(pseudo-terminal master)配合使用实现pty。当我们telnet到主机,或者直接使用xterm,或者程序需要交互时,我们就需要一个终端。因为只有通过终端我们才能实现人与计算机的交互。只要是人与计算机的交互,就一定是使用的虚拟终端pty(pseudo-tty)。

[pirate@localhost ~]$ ll /dev/pts/*
crw--w----. 1 pirate tty  136, 0 Oct 13 08:14 /dev/pts/0
crw--w----. 1 pirate tty  136, 1 Oct 13 08:14 /dev/pts/1
crw--w----. 1 pirate tty  136, 3 Oct 12 15:50 /dev/pts/3
c---------. 1 root   root   5, 2 Oct 12 11:12 /dev/pts/ptmx
[pirate@localhost ~]$ tty      #xshell中查看当前pts
/dev/pts/1
[pirate@localhost ~]$ tty      #xwindow中查看当前pts
/dev/pts/0

3、控制台终端/物理终端( /dev/console)

    在Linux 系统中,计算机显示器通常被称为控制台终端(Console)。

4、虚拟终端(/dev/tty# [#为1-6])   

    tty一词源于Teletypes,或teletypewriters,原来指的是电传打字机,是通过串行线用打印机键盘通过阅读和发送信息的东西,后来这东西被键盘和显示器取代,所以现在叫终端比较合适。终端是一种字符型设备,他有多种类型,通常使用tty来简称各种类型的终端设备。

    切换方式为Ctrl+Alt+F[1-6]。

[pirate@localhost ~]$ ll /dev/tty*
crw-rw-rw-. 1 root   tty     5,  0 Oct 12 11:12 /dev/tty
crw--w----. 1 root   tty     4,  0 Oct 12 11:12 /dev/tty0
crw--w----. 1 root   tty     4,  1 Oct 12 11:12 /dev/tty1
crw--w----. 1 root   tty     4, 10 Oct 12 11:12 /dev/tty10
crw--w----. 1 root   tty     4, 11 Oct 12 11:12 /dev/tty11
crw--w----. 1 root   tty     4, 12 Oct 12 11:12 /dev/tty12
crw--w----. 1 root   tty     4, 13 Oct 12 11:12 /dev/tty13
crw--w----. 1 root   tty     4, 14 Oct 12 11:12 /dev/tty14
crw--w----. 1 root   tty     4, 15 Oct 12 11:12 /dev/tty15
crw--w----. 1 root   tty     4, 16 Oct 12 11:12 /dev/tty16
crw--w----. 1 root   tty     4, 17 Oct 12 11:12 /dev/tty17
crw--w----. 1 root   tty     4, 18 Oct 12 11:12 /dev/tty18
crw--w----. 1 root   tty     4, 19 Oct 12 11:12 /dev/tty19
crw--w----. 1 pirate tty     4,  2 Oct 12 15:50 /dev/tty2
crw--w----. 1 root   tty     4, 20 Oct 12 11:12 /dev/tty20
crw--w----. 1 root   tty     4, 21 Oct 12 11:12 /dev/tty21
crw--w----. 1 root   tty     4, 22 Oct 12 11:12 /dev/tty22
crw--w----. 1 root   tty     4, 23 Oct 12 11:12 /dev/tty23
crw--w----. 1 root   tty     4, 24 Oct 12 11:12 /dev/tty24
crw--w----. 1 root   tty     4, 25 Oct 12 11:12 /dev/tty25
crw--w----. 1 root   tty     4, 26 Oct 12 11:12 /dev/tty26
crw--w----. 1 root   tty     4, 27 Oct 12 11:12 /dev/tty27
crw--w----. 1 root   tty     4, 28 Oct 12 11:12 /dev/tty28
crw--w----. 1 root   tty     4, 29 Oct 12 11:12 /dev/tty29
crw--w----. 1 root   tty     4,  3 Oct 12 11:12 /dev/tty3
crw--w----. 1 root   tty     4, 30 Oct 12 11:12 /dev/tty30
crw--w----. 1 root   tty     4, 31 Oct 12 11:12 /dev/tty31
crw--w----. 1 root   tty     4, 32 Oct 12 11:12 /dev/tty32
crw--w----. 1 root   tty     4, 33 Oct 12 11:12 /dev/tty33
crw--w----. 1 root   tty     4, 34 Oct 12 11:12 /dev/tty34
crw--w----. 1 root   tty     4, 35 Oct 12 11:12 /dev/tty35
crw--w----. 1 root   tty     4, 36 Oct 12 11:12 /dev/tty36
crw--w----. 1 root   tty     4, 37 Oct 12 11:12 /dev/tty37
crw--w----. 1 root   tty     4, 38 Oct 12 11:12 /dev/tty38
crw--w----. 1 root   tty     4, 39 Oct 12 11:12 /dev/tty39
crw--w----. 1 root   tty     4,  4 Oct 12 11:12 /dev/tty4
crw--w----. 1 root   tty     4, 40 Oct 12 11:12 /dev/tty40
crw--w----. 1 root   tty     4, 41 Oct 12 11:12 /dev/tty41
crw--w----. 1 root   tty     4, 42 Oct 12 11:12 /dev/tty42
crw--w----. 1 root   tty     4, 43 Oct 12 11:12 /dev/tty43
crw--w----. 1 root   tty     4, 44 Oct 12 11:12 /dev/tty44
crw--w----. 1 root   tty     4, 45 Oct 12 11:12 /dev/tty45
crw--w----. 1 root   tty     4, 46 Oct 12 11:12 /dev/tty46
crw--w----. 1 root   tty     4, 47 Oct 12 11:12 /dev/tty47
crw--w----. 1 root   tty     4, 48 Oct 12 11:12 /dev/tty48
crw--w----. 1 root   tty     4, 49 Oct 12 11:12 /dev/tty49
crw--w----. 1 root   tty     4,  5 Oct 12 11:12 /dev/tty5
crw--w----. 1 root   tty     4, 50 Oct 12 11:12 /dev/tty50
crw--w----. 1 root   tty     4, 51 Oct 12 11:12 /dev/tty51
crw--w----. 1 root   tty     4, 52 Oct 12 11:12 /dev/tty52
crw--w----. 1 root   tty     4, 53 Oct 12 11:12 /dev/tty53
crw--w----. 1 root   tty     4, 54 Oct 12 11:12 /dev/tty54
crw--w----. 1 root   tty     4, 55 Oct 12 11:12 /dev/tty55
crw--w----. 1 root   tty     4, 56 Oct 12 11:12 /dev/tty56
crw--w----. 1 root   tty     4, 57 Oct 12 11:12 /dev/tty57
crw--w----. 1 root   tty     4, 58 Oct 12 11:12 /dev/tty58
crw--w----. 1 root   tty     4, 59 Oct 12 11:12 /dev/tty59
crw--w----. 1 root   tty     4,  6 Oct 12 11:12 /dev/tty6
crw--w----. 1 root   tty     4, 60 Oct 12 11:12 /dev/tty60
crw--w----. 1 root   tty     4, 61 Oct 12 11:12 /dev/tty61
crw--w----. 1 root   tty     4, 62 Oct 12 11:12 /dev/tty62
crw--w----. 1 root   tty     4, 63 Oct 12 11:12 /dev/tty63
crw--w----. 1 root   tty     4,  7 Oct 12 11:12 /dev/tty7
crw--w----. 1 root   tty     4,  8 Oct 12 11:12 /dev/tty8
crw--w----. 1 root   tty     4,  9 Oct 12 11:12 /dev/tty9
crw-rw----. 1 root   dialout 4, 64 Oct 12 11:12 /dev/ttyS0
crw-rw----. 1 root   dialout 4, 65 Oct 12 11:12 /dev/ttyS1
crw-rw----. 1 root   dialout 4, 66 Oct 12 11:12 /dev/ttyS2
crw-rw----. 1 root   dialout 4, 67 Oct 12 11:12 /dev/ttyS3
[pirate@localhost ~]$ tty    #查看当前tty
/dev/tty3

    

原创文章,作者:wangshuai,如若转载,请注明出处:http://www.178linux.com/50913

(0)
wangshuaiwangshuai
上一篇 2016-10-14
下一篇 2016-10-14

相关推荐

  • raid,lvm,及sed命令的相关使用总结

    raid0 条带化 chunk最小写入单位 至少2块盘 空间大小 单块磁盘大小*nraid1 镜像  1/n   读性能提升,写入比单块盘慢  空间始终是一块盘的大小   容错率高  可以坏  n-1块盘raid10 容错高于raid01 但空间损失更多,读写性能 提升 造价高。raid4&nbsp…

    2017-08-26
  • bash脚本循环语句用法练习

    bash脚本循环语句用法练习 1、使用循环语句写一个脚本,实现打印出来国际象棋的棋盘 #方法1:使用until循环语句实现 [root@liang7 bin]# cat chess-until.sh  #!/bin/bash #Author:liang #Version:1.0 #Description:Print&n…

    Linux干货 2016-08-24
  • RHEL6.4 yum访问HTTPS源时出错

    在RHEL6.4上安装OpenStack时,使用epel的源,但源是https的,进行安装时,总报下面的错误。     https://repos.fedorapeople.org/repos/openstack/openstack-icehouse/epel-6/repodata/repomd.xml:  …

    Linux干货 2016-02-28
  • N26-第一周

    描述计算机的组成及功能。 计算机主要由运算器,控制器,存储器,输入、输出设备五大部件组成 运算器(Arithmetic Logic Unit, ALU):实现各种算数运算和逻辑运算(与控制器组成cpu)。 控制器(Control Unit, CU):计算机控制中心,根据程序规定的控制程序进行解释,根据要求进行调度,控 制协调各部分有条不紊的运行。 存储器(M…

    Linux干货 2017-02-03
  • N25 – week 3 blog

    本周的blog开始使用了代码语言格式,我原本以为自然的才是最好的,orginal的才是最美的,但是我错了。。。我发现同学们都在各种markdown,各种排版。我说过我早已过了care这些的年纪,但是我不能脱离群体单独存在,所以我底下了傲娇的头。 本周开始blog标题改为英文,逼格满满,麦满分~ 下面开始第$wk_num周的作业 [root@dhcp-10-1…

    Linux干货 2016-12-19
  • Linux发行版本介绍与哲学思想

    1.Linux发行版本介绍 Linux 发行版(英语:Linux distribution,也被叫做GNU/Linux 发行版),为一般用户预先集成好的Linux操作系统及各种应用软件。一般用户不需要重新编译,在直接安装之后,只需要小幅度更改设置就可以使用,通常以软件包管理系统来进行应用软件的管理。 1.服务器版本:Centos/Debian 从Red Ha…

    Linux干货 2016-10-28