Linux作業管理(快捷鍵 命令)

2022-08-29 01:06:14 字數 1321 閱讀 3072

ctrl+c:結束當前命令

ctrl+d:輸入結束(eof)

ctrl+z:當前作業放到後台並暫停

ctrl+s:暫停螢幕輸出

ctrl+q:恢復螢幕輸出 

&:命令放在後台執行

jobs:檢視後台作業

fg:作業後台到前台(後台stopped、後台running,到前台running)

bg:讓作業後台執行(後台stopped,到後台running)

小實驗**

$

ping localhost

#前台執行ping命令

ping localhost (

127.0

.0.1

) 56(84

) bytes of data.

64bytes from localhost (

127.0

.0.1

): icmp_seq=1

ttl=

64time

=0.035

ms64

bytes from localhost (

127.0

.0.1

): icmp_seq=2

ttl=

64time

=0.049

ms^z[1

]+stopped ping localhost

$jobs

#檢視後台作業[1

]+stopped ping localhost

$bg %1

#將ping從後台stopped,變為後台running[1

]+ping localhost &64

bytes from localhost (

127.0

.0.1

): icmp_seq=3

ttl=

64time

=0.098ms$

fg %

1#將ping從後台running,變為前台running

ping localhost

64bytes from localhost (

127.0

.0.1

): icmp_seq=10

ttl=

64time

=0.039

ms^z[1

]+stopped ping localhost

$

ps:後台執行的命令無法通過ctrl+c或ctrl+z進行控制,需先轉移到前台再控制;ubuntu的多個終端間無法看到對方的後台作業。

Windows快捷鍵 linux快捷鍵

alt tab 在開啟的應用之間切換。alt f4 關閉活動項,或者退出活動應用。windows 徽標鍵 l 鎖定你的電腦。windows 徽標鍵 d 顯示和隱藏桌面。ctrl shift esc 開啟任務管理器。1 tab 命令或路徑等的補全鍵,linux用的最多的乙個快捷鍵 2 ctrl a 游...

Linux 快捷鍵和命令

vim切分視窗 ctrl w v把vim分成了左右兩個視窗,但游標一直停在左邊那個視窗裡,或者vsplit 命令,vsplit filename 用ctrl w切換游標 securecrt切換視窗 ctrl tab grep命令 通用命令 grep match pattern filename ma...

Linux快捷鍵及命令

主版本號.次版本號.修訂版本號 2.6.32 次版本號為偶數,為正式版 次版本號為奇數,為內測版 其他命令 ctrl alt t 開啟終端 sudo passwd root 建立超級使用者 pl 執行可執行檔案 ctrl tab 在列出列表中切換 linux下解壓命令大全 壓縮 tar xzvf f...