經常使用linux進行開發,軟體安裝,環境部署等,會用到一些常用的命令,下面是我平時使用或收集到的linux下的常用命令集:
type command 檢視一條命令是外部命令還是內部命令
[root@upl test]# type cd
cd is a shell builtin
cd 是內部命令
[root@upl test]# type mount
mount is /bin/mount
mount 是外部命令
內部命令可以直接訪問環境變數,外部命令不可以
檢視內部命令集合體
man type
環境變數
檢視環境變數
echo $path
env 檢視所有環境變數
自已設定環境變數
[root@upl test]# aa=hello
[root@upl test]# echo $aa
hello
檢視環境變數要給$
環境變數配置角本 /etc/profile
檢視命令或者函式在哪一章
whatis command
man -f command
man文件
1.基本的shell指令 whatis ls
2.系統呼叫命令 whatis open
3.系統呼叫庫命令 whatis malloc
4.5.檔案介面 whatis passwd whatis inittab whatis shadow
7.總述 雜項 whatis signal whatis socket
8.網路介面,核心介面 whatis ifconfig whatis mii-tool
info command
help
ls list directory contents
ls file or directory
ls -l 以列表的形式 ==> ll
ls -a 所有的檔案
ls -r 遞迴資料夾
ls -h 檔案大小帶有單位
ls -t 以時間順序排列
touch 建立乙個檔案
1.假如檔案不存在,會建立乙個檔案
2.如果檔案存在,改變檔案的時間戳,不會改變檔案內容
cd change working directory 改變工作目錄
cd directory
cd . 當前目錄
cd .. 上一層
cd - 返回上一次跳過來之前的目錄
cd 到相應使用者的家目錄
cd ~ 到相應使用者的家目錄
絕對路徑 從根出發
Linux開發常用命令
1.sudo passwd root 可以設定 root 的密碼。2.su 命令後,系統會要求輸入 root 的密碼獲取超級使用者。3.shutdown r now 重新啟動系統。4.pl檔案安裝需要root許可權 安裝方法 x.pl 確定鍵 5.deb軟體 雙擊安裝。6.檢視系統資訊 uname ...
開發Linux 常用命令
t radix radix radix符號值得進製。d十進位制,o八進位制,x十六進製制.d dynamic顯示動態符號,只在物件是動態時有用.f format format format輸出的格式,有 bsd sysv 或 posix 可選。預設是 bsd g extern only 只顯示外部符...
Linux開發常用命令
1 解壓gz和tar包到當前資料夾 gzip d 檔名 tar xvf 檔名 2 複製資料夾到其他目錄 cp r 資料夾路徑 目標路徑 3 檢視可執行檔案平台 file 檔名 4 修改系統時間 date s 月 日 年 date s 時 分 秒 5 環境變數配置,用文字編輯器開啟profile檔案 ...