摘要:[Linux] Linux 基礎指令
linux 指令都是以小寫命名,須注意區分大小寫
w 列出目前的使用者資訊
who 列出目前的使用者資訊
whoami 目前登入使用的帳號名稱
date 目前系統時間
ls 列出目錄檔案清單
ls -l 詳細資料
ls -a 包含隱藏 ( 後面參數可一起打 ls -al )
ls -l /home 列出/home清單
ifconfig 網路卡位址
shutdown -h now 立即關機
shutdown -h 10 10分鐘後關機 (ctrl+C 可停止)
shutdown -c 取消關機
shutdown -h 30 '30分後關機' 提示所有使用者30分鐘後關機
shutdown -r 重新開機
reboot 重新開機
pwd 目前位置
cp 複製檔案(copy)
mv 移動檔案(move)
rm 刪除檔案(remove)
cat 查看特定檔案內容 (cat /etc/inittab)
cat > test.txt 輸入資料到左方 test.txt裡面,若test.txt已存在就覆寫
cat >> test.txt 輸入資料到左方test.txt繼續寫下方
cat test.txt > test2.txt 把test.txt內容寫到test2.txt
df -h 列出硬碟空間
find 找特定檔案 (find /home/test2.txt)
grep 篩選特定文字 (ls /usr/lib | grep java)
passwd 修改密碼
top 列出目前系統服務
free 列出記憶體使用情況