參考: How to Enable SSH on Ubuntu 18.04
Ubuntu18.04 ssh 開機自動啟動的設置方法如下:
# 開機自動啟動ssh命令
sudo systemctl enable ssh
# 關閉ssh開機自動啟動命令
sudo systemctl disable ssh
# 單次開啟ssh
sudo systemctl start ssh
# 單次關閉ssh
sudo systemctl stop ssh
# 設置好後重啟系統
reboot
#查看ssh是否啟動,看到Active: active (running)即表示成功
sudo systemctl status ssh