【Linux】统信各版本UOS安装vnc

统信UOS安装vnc

1、D版本

1.1、安装

bash 复制代码
apt install xfce4 xfce4-goodies
apt install tigervncserver

1.2、安装完成后,启动

bash 复制代码
vncserver
## 根据提示输入密码

2、A/E版本

2.1、安装

bash 复制代码
yum install tigervnc-server 

2.2、启动

bash 复制代码
vncserver
## 根据提示输入密码

vnc常用命令

bash 复制代码
## 创建一个1920x1080分辨率的远程桌面
vncserver -geometry 1920x1080

## 手动关闭vnc服务器
vncserver -kill :1

## 设置vnc开启自启动
### 新建vncserver@1.service文件,拷贝到/etc/systemd/system/下
[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target
[Service]
Type=simple
User=root
Group=root
WorkingDirectory=/root

PIDFile=/root/.vnc/%H:%i.pid
ExecStartPre=-/usr/bin/vncserver -kill :%i > /dev/null 2>&1
ExecStart=/usr/bin/vncserver -depth 24 :%i
ExecStop=/usr/bin/vncserve -kill :%i
[Instatt]
WantedBy=multi-user.target

### 运行如下命令
systemctl daemon-reload
systemctl enable vncserver@:1.service
systemctl start vncserver@:1.service
systemctl status vncserver@:1.service

## 出现灰屏怎么处理
### 修改配置文件
echo  'gnome-session &' >> ~/.vnc/xstartup
### 添加一句配置到文件中,重启服务器后,再次执行vncserver即可
相关推荐
嚯——哈哈15 分钟前
从入门到精通:解析如何使用亚马逊云服务器(AWS EC2)
运维·服务器·aws
编程修仙1 小时前
Collections工具类
linux·windows·python
芝麻团坚果1 小时前
对subprocess启动的子进程使用VSCode python debugger
linux·ide·python·subprocess·vscode debugger
Elastic 中国社区官方博客1 小时前
Elasticsearch 中的热点以及如何使用 AutoOps 解决它们
大数据·运维·elasticsearch·搜索引擎·全文检索
写点什么啦1 小时前
[debug]不同的window连接ubuntu的vscode后无法正常加载kernel
linux·vscode·ubuntu·debug
wellnw1 小时前
[ubuntu]编译共享内存读取出现read.c:(.text+0x1a): undefined reference to `shm_open‘问题解决方案
linux·ubuntu
不爱学习的YY酱1 小时前
【操作系统不挂科】<CPU调度(13)>选择题(带答案与解析)
java·linux·前端·算法·操作系统
DC_BLOG1 小时前
Linux-Nginx虚拟主机
linux·运维·nginx
坐公交也用券1 小时前
使用Python3实现Gitee码云自动化发布
运维·gitee·自动化
XY.散人2 小时前
初识Linux · 信号处理 · 续
linux·信号处理