linux常用命令

2021-10-05 14:45:20 字數 764 閱讀 9791

shutdown -h now  #立刻關機

shutdown -r now #立刻重啟

find / -name "*postgresql*" //查詢所有帶postgresql的檔案或資料夾

zip -r myhome.zip /home/hhy/ -x '/home/hhy/soft/data-integration/*' 打包指定資料夾並排除部分資料夾

netstat -ntlp //檢視當前所有tcp埠·

netstat -ntulp |

grep 80 //檢視所有80埠使用情況·

netstat -an |

grep 3306 //檢視所有3306埠使用情況·

netstat -anp |

grep 37799

\cp -rf /data/**** /home/*** //複製替換命令

注意 cp 命令前加了 \ ,意思是不讓它用~/.bashrc裡的別名執行,即 -i 引數

systemctl status firewalld //防火牆狀態

systemctl start firewalld // 開啟防火牆

systemctl stop firewalld // 關閉防火牆

ps -ef |

grep tomcat //檢視應用程式程序id

netstat -nltp |

grep 4434 //檢視程序id占用的埠

Linux常用命令之Linux常用命令實戰知識點

在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...

LINUX常用命令

一 目錄結構 目錄名稱 意 義 vmlinuz 該目錄中存放的是系統核心 bin 該目錄中存放linux的常用命令,在有的版本中是一些和根目錄下相同的目錄。boot 該目錄下存放的都是系統啟動時要用到的程式,當用lilo引導linux時,會用到這裡的一些資訊 dev 該目錄包含了linux系統中使用...

linux 常用命令

ssh 連線 eg.ssh l mike www.mydomain.com or 192.168.0.1 scp 複製 本地 遠端 scp localfile username tohost newfile 遠端 本地 scp username tohost remotefile local 把tx...