檢視當前登入的賬戶 who am i
free 顯示記憶體狀態
用法 free -m -s (-m 表示記憶體的狀態用 m 為單位來表示, -s 表示重新整理的時間間隔,秒為單位)
示例: free -m -s 3
mount -a
-a mount allfilesystems (of the given types) mentioned in fstab.
man ls
檢視命令幫助文件
掛載就是要把分割槽掛到目錄上這樣你才能訪問/var/log/messages
該日誌檔案,很有用,可用於排錯
ll |grep "^d"
cp cp install.log desktop/
cp install.log desktop/new_install.log
cp -r /etc desktop/
cp install* desktop/
cp -l install.log hardlink.install.log
cp -s install.log symlink.install.log
mv rm desktop/* -rf
mv desktop/hardlink.install.log .
mv hardlink.install.log my.log
rmdir
rmdir mydir
mkdir -p a/b/c
rmdir -p a/b/c
chgrp
chgrp test100 mydir
chgrp -r test100 mydir/
chgrp -r 0 mydir/
chmod
chmod u=rwx,g=rw,o=rw install.log
chmod u-x install.log
chmod a=r install.log
chmod 644 install.log
chown
chown test100 install.log
chown test100:test100 install.log
chown root.root install.log
find
find / -name passwd
find /root -name mylinux -exec rm {} \;
whereis
whereis ls
which
which ls
ehco $path
file
file install.log
file /sbin/fdisk
touch file
locate
locate passwd
updatedb
實用Linux命令
lsof i 6379 檢視某個埠的程式有沒有起起來。netstat tnlp 可以檢視監聽的埠,其中l是listening,p是顯示program,n是顯示ip而不是name,t看起來是只檢視tcp的內容。每5秒檢視記憶體使用或者cpu使用 1 linux啟動過程 開啟電源 bios開機自檢 引導...
GDB除錯的幾個實用命令
1.編譯程式進入gdb,命令都是 之後的字串 終端下輸入 cc g hello.c o hello gdb hello 進入gdb,這個時候顯示gdb的資訊 如果你的程式需要引數 gdb args hello 引數1 引數2 等等 2.下面是幾個對應vc裡面常用的命令,在gdb下輸入命令,命令是 g...
Linux的幾個命令
1。linux下要刪除非空目錄 rm rf 目錄名 2。linux下複製遠端檔案到本地 scp oneuser 192.168.1.12 abc myfile.tar mytest 用oneuser使用者登入遠端機器,把192.168.1.12上abc資料夾的myfile.tar複製到本地的 myt...