场景
远程连接工控机时,无法使用VNC连接。需要以下配置菜可以在无屏幕情况下远程直接连接工控机,主要包括:
- 使用Ubuntu内置的vino VNC提供远程桌面访问。
- 配置自动登录
- 配置虚拟桌面
环境
Ubuntu20.04
配置
1、安装Ubuntu内置的桌面共享VNC服务vino。
sudo apt install vino
在“设置->共享->屏幕共享”界面中为一个网络配置开启屏幕共享,设置密码。(提前需要有一块屏幕),可以通过其他方式配置
2、开启自动登录(跳过开机启动输入密码,有安全问题)
sudo vi /etc/gdm3/custom.conf
3、开启虚拟界面dummy monitor(在不接显示器情况下,Ubuntu不会启动桌面GUI)
sudo apt install xserver-xorg-video-dummy
- 编辑虚拟界面配置(配置为1024x768的分辨率)配置后重启即可
Section "Monitor" Identifier "Monitor0" HorizSync 28.0-80.0 VertRefresh 48.0-75.0 # https://arachnoid.com/modelines/ # 1024x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 64.11 MHz Modeline "1024x768_60.00" 64.11 1024 1080 1184 1344 768 769 772 795 -HSync +Vsync EndSection Section "Device" Identifier "Card0" Driver "dummy" VideoRam 256000 EndSection Section "Screen" DefaultDepth 24 Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Depth 24 Modes "1024x768_60.00" EndSubSection EndSection标签:Ubuntu20.04,RealVNC,vino,配置,1024x768,VNC,Identifier,连接 From: https://www.cnblogs.com/vcan123/p/18283176