linux 配置vnc
时间: 2024-01-06 20:24:10 浏览: 164
Linux vnc的配置
以下是在Linux上配置VNC的步骤:
1.安装VNC Server
```shell
sudo yum install tigervnc-server
```
2.配置VNC密码
```shell
vncpasswd
```
3.编辑VNC配置文件
```shell
vi /etc/systemd/system/vncserver@:1.service
```
在文件中添加以下内容:
```
[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target
[Service]
Type=forking
User=root
PAMName=login
PIDFile=/root/.vnc/%H:1.pid
ExecStartPre=-/usr/bin/vncserver -kill :1 > /dev/null 2>&1
ExecStart=/usr/bin/vncserver :1 -geometry 1280x800 -depth 24 -dpi 96
ExecStop=/usr/bin/vncserver -kill :1
[Install]
WantedBy=multi-user.target
```
4.启动VNC服务
```shell
systemctl daemon-reload
systemctl start vncserver@:1.service
systemctl enable vncserver@:1.service
```
5.配置防火墙
```shell
firewall-cmd --permanent --zone=public --add-service vnc-server
firewall-cmd --reload
```
注意:在上述步骤中,`:1`表示VNC Server的显示端口号,可以根据需要进行更改。
阅读全文