1.9-1.12節學習筆記
VMware虛擬機是有快照功能,類似於備份的功能,如果後面的操作出現問題,你可以恢復到前面的某個時刻的快照。快照很小,不會占用太多的磁盤空間。
兩個客戶端軟件putty and Xshell
putty和xshell是用來遠程連接ip的(可以用戶名密碼或密鑰來登錄)
putty download address
https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
1、open putty
2、set up a session(add ip address and port)
3、create a name
Lines of scrollback 200 (this number could be modification)
you can modified the appearance
4、save
如果ping不通,需要重啟服務 *systemctl restart network.service*
1.10使用xshell連接linux
1、新建會話
2、設置外觀
3、填寫用戶名密碼
4、終端斷開,證明會話場景有點短。
xshell可以多窗口;
1.11putty密鑰認證
一對加密的字符串,客戶端放私鑰,服務器放公鑰,私鑰和公鑰配對成功,認證成功。
1、open putty key generator and click the Generate
2、set a key passphrase and then click "save public key and” “save private key"
3、mkdir /root/.ssh
創建目錄
4、chmod 700 /root/.ssh
5、vi /root/.ssh/authorizedkeys
(保存public key)
6、setenforce 0// close selinux
7、配置private key(image)
https://blog.csdn.net/gavin__fan/article/details/50443395
1.12 xshell密鑰認證
同putty類似
1.9-1.12節學習筆記