linux Linux 常用命令

2021-09-28 23:48:57 字數 1581 閱讀 2224

tar zxf name.tar.gz

tar zxf name.tar.z

tar xzvf name..tgz

ps –e 顯示所有程序

搜尋某乙個具體的程序: ps –ef|grep name

cat file-name

zcat file.gz,檢視壓縮檔案

ls –l 顯示檔案的詳細列表

ls –a 顯示所有檔案包括隱藏檔案

cd 要進入的目錄

cp 原始檔 目的目錄

rpm -ivh name.rpm

mkdir dir-name

halt –p

安全關機

mount /dev/ /hda1 /mnt

umount 已載入目錄

su user-name

passwd user-name

rmdir dir-name

rm filename

dffree

man command-name

adduser user-name

groupadd group-name

chmod u+x file :給檔案屬主增加可執行許可權

chmod u+r file :給檔案屬主增加讀許可權

chmod u+w file :給檔案屬主增加寫許可權

chmod u-x file :去除檔案屬主的可執行許可權

chmod u-r file :去除檔案屬主讀許可權

chmod u-w file :去除檔案屬主寫許可權

command &

ifconfig ethn

netconfig

netstat -an

在檔案系統出現問題時可使用此命令,主要是針對 ext2 檔案系統, ext3 系統可自動恢復

which name

查詢檔案或命令

在當前目錄或子目錄中查詢

find . –name name(按名稱查詢)

從根目錄查詢:

find / -name name

可檢視具體目錄中每個檔案占用的磁碟空間

duroute -n 顯示路由資訊

route add -host 192.168.5.8 dev eth0:通過 eth0 增加一條路由

route del -host 192.168.5.8 dev eth0:刪除 eth0 上的一條路由

route add –net 192.168.8.0/24 dev eth0,增加一條網路路由。

route del –net 192.168.8.0/24,刪除一條網路路由。

head –n n file

顯示最後 n 行: tail –n n filename

實時顯示檔案最新資訊: tail –f file

tophalt

shutdown –h now 立即關機

shutdown –r 重起機器

即時退出執行終端,命令同樣可以執行

如: nohup ./in.pl &

uname –r

nslookup www.163.com

date

ssh user@ip

LINUX linux常用命令

一.啟動,關機,登入,登出相關命令 login 登入 logout 登出 exit 登出 shutdown 停止系統 halt 停止系統 reboot 重啟動 poweroff 切斷電源 sync 把記憶體裡的內容寫入磁碟 lilo 安裝lilo啟動管理程式 grub 安裝lilo啟動管理程式 二....

Linux Linux常用命令

ls 查詢目錄中的內容 預設當前目錄下的檔案列表 ls l drwxr xr x 1 root root 800 sep 16 00 19 logs drwxr xr x.1 root root 800sep 16 00 19 logs 檔案型別和許可權 acl許可權 硬鏈結引用計數 所有者所屬組 ...

Linux Linux系統常用命令

輸出 檢視命令 echo 顯示輸入內容 cat 檔名 檢視乙個純文字文件的內容 more 檔名 翻頁顯示檔案內容 只能向後翻頁 less 檔名 翻頁顯示檔案內容 可上下翻頁 head 檔名 只顯示檔案開頭的10行 預設為10行 head n 3 檔名 只顯示檔案開頭的3行 tail n 3 檔名 只...