Ubuntu From Scratch可通过以下方式远程连接:
SSH
sudo apt update && sudo apt install openssh-server。sudo systemctl enable --now ssh。sudo ufw allow ssh。ssh username@远程IP。VNC
sudo apt install x11vnc。x11vnc -storepasswd。vncserver :1(显示编号:1,端口5901)。IP:5901)。RDP(Ubuntu 22.04及以上)
sudo apt install xrdp。sudo systemctl enable --now xrdp。注意:确保防火墙放行对应端口(SSH:22,VNC:5901,RDP:3389),建议使用密钥认证提升安全性。