linux中的基本命令

2021-08-15 18:53:30 字數 765 閱讀 3277

pwd :顯示當前目錄

ls :顯示當前目錄內容

cd : 目錄切換

rm -rf 【路徑】:刪除資料夾

rm -f file :刪除檔案

ps -ef|grep smart:檢視程序

kill -9 【程序id號】:殺死程序

chmod 777 test.sh:賦予檔案許可權(4 r /2 w/1 x)

vim 【可執行檔案】:編輯器開啟檔案,i編輯,:wq儲存並離開,!強制

cp 【檔案】 【檔案路徑】:複製檔案

telnet 【ip位址】 【埠號】:測試伺服器端口是否開啟

iptables的使用:

iptables -l -n 檢視埠

cd /etc/sysconfig 

vim iptables 

-a input -p tcp -m state --state new -m tcp --dport 8082 -j accept 開啟8082埠

service iptables restart 重啟iptables服務

df -ht 檢視磁碟使用情況

fdisk -l 檢視磁碟分割槽情況

fdisk /dev/sda 進入sda盤進行分割槽操作

1、將linux的時區設定為上海

#ln -sf /usr/share/zoneinfo/asia/shanghai /etc/localtime

2、設定全部時間

#date -s "12:12:23 2006-10-10″

Linux中基本命令(續)

1.軟鏈結 可以跨分割槽,但原始檔不可刪除 root gao test ln s test haha.txt tmp hi.txt 建立檔案軟鏈結 root gao test ln s test tmp 建立 test 和 tmp 目錄的軟連線 root gao test rm test haha....

linux基礎 基本命令(中)

定時任務 unameuname rcat proc cpuinfocat proc meminfodatecal 年份date s 2020 8 26 date s 11 40 30df lhdu sh 目錄fsck 磁碟mountmount 磁碟umount 磁碟free mtoprpm qa g...

Linux系統中的基本命令

linux的檔案系統 第一步 理解linux系統的目錄結構 linux使用標準的目錄結構,在安裝的時候,安裝程式已經為使用者建立了檔案系統和完 整而固定的目錄組成形式,並指定了每個目錄的作用和其中的檔案型別。linux系統的目錄結構採用的是樹形結構。最上層是根目錄,其他的所有目錄都是由根目錄而生成的...