系統(tǒng)下載、安裝、激活,就到系統(tǒng)天地來!

淺析Linux系統(tǒng)如何實(shí)現(xiàn)不同終端間同步的技巧

作者:系統(tǒng)天地 日期:2015-04-15

 

淺析Linux系統(tǒng)如何實(shí)現(xiàn)不同終端間同步的技巧: 在進(jìn)行Linux多終端操作時(shí),如果能夠?qū)崿F(xiàn)不同終端之間的同步,那么就能夠在各個(gè)終端上顯示相同的操作效果,能夠節(jié)省很多時(shí)間,操作方法也很簡單,下面小編就給大家介紹下Linux不同終端間同步的方法。

  安裝必須軟件
  #yum install tcl expect
  (1)確認(rèn)當(dāng)前所在終端號(hào):
  root@localhost shell]# w
  17:59:31 up 9:47, 5 users, load average: 0.06, 0.02, 0.00
  USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
  root tty3 - 08:15 9:44m 0.75s 0.75s 。/xrgsu -a
  root tty1 :0 17:08 9:47m 9.41s 9.41s /usr/bin/Xorg :
  root pts/0 :0.0 17:25 0.00s 3.04s 0.00s w
  root pts/1 :0.0 17:33 10:04 0.11s 0.11s bash
  root pts/3 :0.0 17:39 46.00s 0.02s 0.02s /bin/bash
 ?。?)以root用戶身份向指定終端發(fā)起同步命令:
  =========pts/0 向pts/1 發(fā)起操作========
  [root@localhost shell]# kibitz -tty pts/1 root
  asking root to type: kibitz -4010
  =========pts/1 收到請(qǐng)求 =============
 ?。踨oot@localhost shell]#
  Message from root@localhost.localdomain on pts/0 at 18:02 。。.
  Can we talk? Run: kibitz -4010
  EOF
  (3)按回車,輸入 kibitz -4010
 ?。踨oot@localhost shell]# kibitz -4010
  Escape sequence is ^]
  此時(shí),pts/0 與pts/1兩個(gè)終端已同步,控制任何一個(gè)終端可以在兩邊顯示操作信息。
  (4)再次查看終端狀態(tài)
 ?。踨oot@localhost shell]# w
  18:06:10 up 9:54, 5 users, load average: 0.04, 0.02, 0.00
  USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
  root tty3 - 08:15 9:50m 0.76s 0.76s 。/xrgsu -a
  root tty1 :0 17:08 9:54m 12.66s 12.66s /usr/bin/Xorg :
  root pts/0 :0.0 17:25 1:58 5.41s 0.00s expect -- /usr/
  root pts/1 :0.0 17:33 0.00s 0.11s 0.00s expect -- /usr/
  root pts/3 :0.0 17:39 4:17 0.03s 0.03s /bin/bash
  pts/0和pts/1已經(jīng)通過expect程序同步,pts/3沒有同步。