dhclinet
ipaddr
快捷鍵ctrl +L 清屏linux
ip route
119.29.29.29
vi /etc/sysconfig/network-scripts/if
例shell
IPADDR=192.168.222.128 NETMASK=255.255.255.0 GATEWAY=192.168.222.2 DNS1=119.29.29.29
systemctl restart network
若是遇到一個很長的文件,cat 以後就看不到最前面的內容了,此時能夠用管道符和less命令結合起來查看。網絡
如:cat /etc/init.d/network |less b 往上翻頁 f 往下翻頁less
把管道左邊的命令結果交給右邊的命令執行dom
[root@localhost ~]# date Sun Jan 20 23:21:40 EST 2019
[root@localhost ~]# cal January 2019 Su Mo Tu We Th Fr Sa 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
xshell登錄ssh
putty secureCRT Xmanageride
ssh root@192.168.222.128
使用一對密鑰來進行身份認證,公鑰+私鑰 公鑰是用來加密的 私鑰是用來解密的工具
[root@localhost ~]# mkdir ~/.ssh
echo $home 查看當前用戶的HOME目錄ui
[root@localhost ~]# cd .ssh [root@localhost .ssh]#
vi authorized_keys
xshell 工具 選項 鼠標和鍵盤 右鍵直接粘貼 選中就複製加密
[root@localhost .ssh]# chmod 600 !$ chmod 600 authorized_keys
!$表示上一條命令最後一個參數,(所謂參數,指的是以空格或者空白字符劃分的那些字符串,好比ls a b c, a就是第一個參數 b是第二個參數 C就是最後一個參數)
到xshell 的會話屬性 用戶身份驗證 publickey 選擇對應的密鑰
linux 關機 init 0 /shutdown -h now
點擊右鍵 找到快照 拍攝快照
點擊右鍵 管理 克隆 下一步 虛擬機中的當前狀態 連接克隆 填寫名稱和路徑
3 [root@localhost .ssh]# vi /etc/sysconfig/network-scripts/ifcfg-enp0s3
修改IPADDR 註釋掉UUID (在uuid前增長#)
[root@localhost ~]# hostnamectl set-hostname test1
[root@localhost .ssh]# ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /root/.ssh/id_rsa. Your public key has been saved in /root/.ssh/id_rsa.pub. The key fingerprint is: SHA256:sH7PGrUSYeukBBJZKFxZDNQmtlwKmPhMaSNxl4OkIXU root@localhost.lo The key's randomart image is: +---[RSA 2048]----+ |B=BXEo | |B*OBo= | |.B=.B.. o | | o= . + o | | o S . | | o + o . | | o = . | | . = | | ..o | +----[SHA256]-----+
[root@localhost ~]# ssh-copy-id root@192.168.222.1