我已经安装了带有 GNOME GUI 的新 Ubuntu Server。我将 Remmina 配置为远程桌面。它运行良好。但是,我需要启用远程访问,而不必先在本地登录。
如何启用图形远程控制,而不必先在机器上本地登录?
答案1
这是我用于 x11vnc 的,它可能会帮助您解决只需切换程序和名称的问题。
# Step 8 - Create the Service Unit File
# #################################################################
#cat > /lib/systemd/system/x11vnc.service << EOF
#[Unit]
#Description=Start x11vnc at startup.
#After=multi-user.target
#[Service]
#Type=simple
#ExecStart=/usr/bin/x11vnc -auth guess -forever -loop -noxdamage -repeat -rfbauth /etc/x11vnc.pass -rfbport 5900 -shared
#[Install]
#WantedBy=multi-user.target
#EOF
# Step 9 -Configure the Service
# ################################################################
#echo "Configure Services"
#sudo systemctl enable x11vnc.service
#sudo systemctl daemon-reload
答案2
您可以添加一行,/etc/rc.local
其中包含要运行的程序的路径。因此,如果程序/文件/脚本位于您要/etc
添加的行中,则将如下所示:
/etc/file name
到目前为止,这对我来说没有任何问题。