Linux下如何殺死終端

一、首先是使用who命令查看當前有多少個終端登錄了Linux系統redis

[root@:vg_adn_tidbCkhsTest /usr/local/redis/bin]#who
mobdev   pts/1        2019-01-14 05:37 (ec2-18-136-70-46.ap-southeast-1.compute.amazonaws.com)
mobdev   pts/2        2019-01-15 03:01 (ec2-18-136-70-46.ap-southeast-1.compute.amazonaws.com)

二、接下來查看本身的當前終端是多少bash

[root@:vg_adn_tidbCkhsTest /usr/local/redis/bin]#tty
/dev/pts/1

三、能夠看到本身的終端名稱是/dev/pts/1。如今咱們要殺死pts/2這個用戶終端,先取出這個終端的進程號spa

[root@:vg_adn_tidbCkhsTest /usr/local/redis/bin]#ps -t /dev/pts/2 PID TTY          TIME CMD
 9360 pts/2    00:00:00 bash

四、咱們看到進程號是9260,如今把它kill掉code

[root@:vg_adn_tidbCkhsTest /usr/local/redis/bin]#kill -9 9360
[root@:vg_adn_tidbCkhsTest /usr/local/redis/bin]#ps -t /dev/pts/2
error: TTY could not be found

當咱們kill掉的時候,能夠看到已經沒有這個tty終端了。注意普通用戶是沒有權限執行此操做的。blog

相關文章
相關標籤/搜索