Linux 常用命令

constantinealicia發表於2024-03-14
  1. ls - 列出目錄內容

    • 示例:ls -l(以詳細列表格式顯示檔案)

  2. cd - 切換工作目錄

    • 示例:cd /path/to/directory

  3. pwd - 顯示當前工作目錄的路徑

  4. mkdir - 建立新目錄

    • 示例:mkdir new_directory

  5. cp - 複製檔案或目錄

    • 示例:cp file1 file2(將file1複製為file2)

  6. mv - 移動檔案或重新命名檔案

    • 示例:mv file1 /path/to/directory(移動檔案到另一個目錄)

    • 示例:mv file1 file2(將檔案重新命名為file2)

  7. rm - 刪除檔案或目錄

    • 示例:rm file1(刪除檔案)

    • 示例:rm -r directory1(遞迴刪除目錄及其內容)

  8. tar - 打包和解壓檔案

    • 示例:tar -cvf archive.tar file1 file2(建立壓縮包)

    • 示例:tar -xvf archive.tar(解壓縮檔案)

  9. wget - 從網路下載檔案

    • 示例:wget http://example.com/file.zip

  10. scp - 在本地系統和遠端系統之間安全地複製檔案

    • 示例:scp file.txt user@remotehost:/remote/directory

  11. chmod - 修改檔案許可權

    • 示例:chmod 755 file.sh(賦予file.sh執行許可權)

  12. chown - 修改檔案所有者

    • 示例:chown user:group file.txt(將檔案所有者更改為指定使用者和組)

  13. ps - 顯示當前執行的程序

    • 示例:ps aux | grep process_name(查詢特定程序)

  14. kill - 終止程序

    • 示例:kill PID(透過程序ID終止程序)

  15.nohup - 用於在後臺執行命令,即使終端關閉也不會影響該程序。

    • 示例:nohup command &(將命令放入後臺執行)

  1. & - 在命令的末尾加上&,可以將命令放入後臺執行。

    • 示例:command &(將命令放入後臺執行)