Ubuntu系统可以通过多种方式进行远程控制,以下是几种常见的方法:
sudo apt install ubuntu-desktop gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal
sudo apt install x11vnc
x11vnc -storepasswd
touch ~/x11vnc.service
sudo cat <<EOF > ~/x11vnc.service
[Unit]
Description=Start x11vnc at startup.
After=multi-user.target
[Service]
Type=simple
ExecStart=/usr/bin/x11vnc -display :0 -auth /home/v2x/.Xauthority -forever -loop -noxdamage -repeat -rfbauth /home/v2x/.vnc/passwd -rfbport 8900 -shared
[Install]
WantedBy=multi-user.target
EOF
sudo mv ~/x11vnc.service /lib/systemd/system
sudo systemctl enable x11vnc.service
sudo systemctl start x11vnc.service
journalctl -xef -u x11vnc.service | grep 8900
sudo apt install openssh-server
wget https://github.com/soulteary/ubuntu-remote-control-helper/raw/main/example/installer.sh
bash installer.sh
urch remote control helper check remote control credentials and correct the problem...the configuration has been ensured to be correct.
这些方法可以帮助你在Ubuntu系统上进行远程控制,选择适合你需求的方法进行配置即可。