标签:use windows usr erro .com 需要 proc bec view
linux系统给给开发者带来性能的便利,但是失去了window系统的界面化管理的便利。下面介绍怎么通过在linux系统上实现界面化操作。(CENTOS为例)
1. 用root用户身份运行以下命令
yum install tigervnc-server
2. 停用防火墙
systemctl stop firewalld.service
systemctl disable firewalld.service
1. 创建一个新的配置文件,以第一个连接为例(也可以同时开启多个连接,修改数字即可。类似windows的多用户连接),方法如下:
cp /lib/systemd/system/vncserver@.service /lib/systemd/system/vncserver@:1.service
cp /lib/systemd/system/vncserver@.service /lib/systemd/system/vncserver@:2.service
2. 查看以上创建的配置:
ls /lib/systemd/system
3. 编辑配置文件/lib/systemd/system/vncserver@:1.service. 用你需要连接的用户名代替<USER>, 一般建议第一个连接给root用户。
vi /lib/systemd/system/vncserver@:1.service
[Unit] Description=Remote desktop service (VNC) After=syslog.target network.target [Service] Type=forking # Clean any existing files in /tmp/.X11-unix environment ExecStartPre=/bin/sh -c ‘/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :‘ ExecStart=/sbin/runuser -l root -c "/usr/bin/vncserver %i" PIDFile=/root/.vnc/%H%i.pid ExecStop=/bin/sh -c ‘/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :‘
1. 保存
systemctl daemon-reload
2. 设置vncserver密码
vncpasswd root
3.启动和关闭 vnc server
systemctl start vncserver@:1.service systemctl stop vncserver@:1.service
4.开机自动开启
systemctl enable vncserver@:1.service
Job for vncserver@:1.service failed because the control process exited with error code. See "systemctl status vncserver@:1.service" and "journalctl -xe" for details. [root@localhost jesse]# vi /lib/systemd/system/vncserver@:2.service
修改vncserver@:1.service 中的 Type 改为 simple
再执行
systemctl daemon-reload
1.下载安装 vnc viewer:
https://www.realvnc.com/en/connect/download/viewer/
2. 配置
注意: 端口号5901,是第一个连接。默认是590+连接号。可以手动修改端口。
标签:use windows usr erro .com 需要 proc bec view
原文地址:https://www.cnblogs.com/Jesse-Li/p/9742698.html