linux基礎unit12練習題

2021-07-29 17:11:44 字數 475 閱讀 5908

1.在server主機中把/etc目錄打包壓縮到/mnt中,名字為etc.tar.gz

[root@localhost desktop]$ tar zcf etc.tar.gz /etc

[root@localhost desktop]$ mv etc.tar.gz /mnt

2.複製server主機中的etc.tar.gz到desktop主機的/mnt中

[root@localhost desktop]$ tar zcf etc.tar.gz /etc

[root@localhost desktop]$ scp etc.tar.gz [email protected]:/mnt

3.同步server主機中的/etc中的所有檔案到desktop主機的/mnt中,包含鏈結檔案

[root@localhost desktop]$ rsync -rl etc.tar.gz [email protected]:/mnt

Linxu基礎練習 unit1

第一單元 1,命令列提示符 root 開啟shell的使用者 分隔符 localhost 主機名稱 工作目錄名稱 身份提示符,表示超級使用者,表示普通使用者 注意 命令要在行提示符之後輸入才能執行 2,切換使用者 注意 高階使用者切換到低階使用者不需要密碼,低階使用者切換到高階或者平級使用者的切換需...

linux基礎unit11 管理網路

unit11 管理網路 1.ip基礎知識 ipv4 2進製32位 172.25.0.10 255.255.255.0 255.255.255.0 子網掩碼 子網掩碼255位對應的ip位為網路位 子網掩碼0對應的ip位為主機位 2.配置ip 圖形化 1 圖形介面 nm connection edito...

Linux 基礎學習之Unit3例項

linux 基礎學習之unit3例項 1.man man manual man是手冊縮寫 man man 檢視man命令的幫助 man passwd 檢視passwd命令的幫助和 h help一樣 man的級別 1 系統命令 2 系統介面 3 函式庫 4 特殊檔案,比如裝置檔案 5 檔案 6 遊戲 ...