[xshell connection to ubuntu]
使用ubuntu 20.04
1.檢查目前ssh工具
dpkg -l | grep ssh
2.安裝ssh server
sudo apt-get install openssh-server
3.確認目前ip
hostname -I
4.檢查ssh是否為啟用 啟用則可以連線
sudo systemctl status ssh
5.啟動
sudo systemctl enable ssh
sudo systemctl start ssh