1、解壓gz和tar包到當前資料夾
gzip -d 檔名
tar -xvf 檔名
2、複製資料夾到其他目錄
cp -r 資料夾路徑 目標路徑
3、檢視可執行檔案平台
file 檔名
4、修改系統時間
date -s 月/日/年
date -s 時/分/秒
5、環境變數配置,用文字編輯器開啟profile檔案:
sudo pluma /etc/profile
其中,library_path是執行時所需環境變數
ld_library_path是編譯時所需環境變數
path是可執行檔案的路徑,一般是… /bin
profile檔案編輯好之後,還要在命令列中
source /etc/profile
使其生效,或直接重啟生效
6、檢視應用程式路徑
dpkg -l [程式名]
7、更改檔案(夾)許可權
使檔案新增可執行許可權:
chmod a+x [檔名]
使檔案新增可寫許可權:
chmod a+w [檔名]
-r引數:遞迴操作子目錄的所有檔案、資料夾
a:對所有使用者
8、檢視軟連線路徑
ls -l [檔案路徑]
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開發常用命令
經常使用linux進行開發,軟體安裝,環境部署等,會用到一些常用的命令,下面是我平時使用或收集到的linux下的常用命令集 type command 檢視一條命令是外部命令還是內部命令 root upl test type cd cd is a shell builtin cd 是內部命令 root...