centos怎么开启远程桌面连接

 我来答
66两只蝴蝶88
2018-04-11 · TA获得超过1.7万个赞
知道小有建树答主
回答量:141
采纳率:100%
帮助的人:3.6万
展开全部

主要做两个方面的工作:

1、系统软件设置

CentOS端:

查看是否安装了vnc软件

# rpm -q vnc vnc-server

package vnc is not installed

vnc-server-4.1.2-14.e15_3.1

上面信息就是说,vnc没有安装,而vnc-server已经安装了。

那么,安装 vnc

# yum install vnc

如果vnc-server没有安装,那么

# yum install vnc-server

Ubuntu端:

安装vnc4server

$ sudo apt-get install vnc4server

设置密码

$ vncpasswd

password:

verify:

$ vim ~/.vnc/xstartup

#!/bin/sh

# Uncomment the following two lines for normal desktop:

#unset SESSION_MANAGER

#exec /etc/X11/xinit/xinitrc

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup

[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources

xsetroot -solid grey

vncconfig -iconic &

x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &

x-window-manager &

修改之后是:

注释最后两行,也就是在前面加 #

#x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &

#x-window-manager &

然后加上

gnome-session &

$ vnc4server

Warning: user-MS-7549:1 is taken because of /tmp/.X11-unix/X1

Remove this file if there is no X server user-MS-7549:1

xauth:  creating new authority file /home/user/.Xauthority

New 'user-MS-7549:2 (user)' desktop is user-MS-7549:2

Creating default startup script /home/user/.vnc/xstartup

Starting applications specified in /home/user/.vnc/xstartup

Log file is /home/user/.vnc/user-MS-7549:2.log

2、远程桌面使用

用CentOS使用vncviewer (安装的vnc包中)

$ vncviewer

Ubuntu的vnc4server启动之后,默认的端口是5900

然后,上面New 'user-MS-7549:2 (user)' desktop is user-MS-7549:2就是+2的意思,

所以是5900+2=5902

OK之后,密码就是上面

$ vncpasswd 中设置的密码。

如果倒过来,用Ubuntu远程桌面登录CentOS。那么就要在Ubuntu安装 xvnc4viewer, 在CentOS上设置vncpasswd,其它都倒过来。

请问如何删除centos的桌面环境?

1.yum grouplist 查看安装了什么图形软件

2.然后卸载GNOME桌面环境 

yum groupremove "GNOME Desktop Environment" 

3.卸载KDE桌面环境 

yum groupremove "KDE (K Desktop Environment)"

4.卸载Xwindows

yum  groupremove   'X Window System' -y

或者没必要卸载,不启动就行了:

Alt+Ctrl+F1~F6到字符界面,root登陆,ps aux|grep /usr/X11R6/bin/X,得到X进程号, kill-9 进程号。

冲浪网站优化
高粉答主

2016-04-14 · SEO资深专家,互联网知名专家。
冲浪网站优化
采纳数:10812 获赞数:90554

向TA提问 私信TA
展开全部
1、首先我们需要通过 yum 来安装 tigervnc 这个工具:yum install tigervnc-server
  2、安装后vnc的配置文件默认是没有任何配置信息的,所以我们如果需要使用VNC服务,就要修改其配置信息:
  vi /etc/sysconfig/vncservers
  添加内容:VNCSERVERS="数字号:username"
  3、配置好后,VNC还需要有单独的VNC密码才行,所以我们要对每个启用VNC服务的用户创建单独的VNC密码,通过 vncpasswd 命令(【注意:】必须要切换到该用户才行,否则VNC服务启动不起来):
  [root@xiaoluo ~]# su - username
  [xiaoluo@xiaoluo ~]$ vncpasswd
  Password:
  Verify:
  4、为用户设置好单独的VNC密码后,我们这个时候启动 vncserver 这个服务:service vncserver start
  5、通常需要将iptables关闭(/sbin/service ipstables stop)或者将其里面的规则清空,或者在iptables里面加上一条规则,否则不能通过vnc客户端来远程登录vnc服务端:iptables -F
  【注意】以上配置后还需要修改一文件为了解决远程桌面与本地桌面同步问题:
  # vim /root/.vnc/xstartup
  #!/bin/sh
  # Uncomment the following two lines for normal desktop:
  unset SESSION_MANAGER
  exec /etc/X11/xinit/xinitrc
  [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
  [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
  xsetroot -solid grey
  vncconfig -iconic &
  xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
  gnome-session & #set starting GNOME desktop
  #startkde & #kde desktop
  #twm & #Text interface
  #/usr/bin/startxfce4
  #exec /usr/bin/fluxbox

  修改完成后输入:service vncserver start
  此时服务端配置ok,然后配置客户端。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
凉凉梭梭
2017-06-17 · TA获得超过318个赞
知道小有建树答主
回答量:480
采纳率:61%
帮助的人:345万
展开全部
启用ssh服务 Ubuntu服务器版本默认不安装ssh服务 可以手动添加安装 centos、redhat命令:service sshd start (默认开启)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
推荐于2017-12-16
展开全部
1、系统软件设置
CentOS端:
查看是否安装了vnc软件
# rpm -q vnc vnc-server
package vnc is not installed
vnc-server-4.1.2-14.e15_3.1
上面信息就是说,vnc没有安装,而vnc-server已经安装了。
那么,安装 vc
# yum install vnc
如果vnc-server没有安装,那么
# yum install vnc-server
Ubuntu端:
安装vnc4server
$ sudo apt-get install vnc4server
设置密码
$ vncpasswd
password:
verify:
$ vim ~/.vnc/xstartup
#!/bin/sh
# Uncomment the following two lines for normal desktop:
#unset SESSION_MANAGER
#exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &
修改之后是:
注释最后两行,也就是在前面加 #
#x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
然后加上
gnome-session &
$ vnc4server
Warning: user-MS-7549:1 is taken because of /tmp/.X11-unix/X1
Remove this file if there is no X server user-MS-7549:1
xauth: creating new authority file /home/user/.Xauthority
New 'user-MS-7549:2 (user)' desktop is user-MS-7549:2
Creating default startup script /home/user/.vnc/xstartup
Starting applications specified in /home/user/.vnc/xstartup
Log file is /home/user/.vnc/user-MS-7549:2.log

2、远程桌面使用
用CentOS使用vncviewer (安装的vnc包中)
$ vncviewer
Ubuntu的vnc4server启动之后,默认的端口是5900
然后,上面New 'user-MS-7549:2 (user)' desktop is user-MS-7549:2就是+2的意思,
所以是5900+2=5902
OK之后,密码就是上面
$ vncpasswd 中设置的密码。
如果倒过来,用Ubuntu远程桌面登录CentOS。那么就要在Ubuntu安装 xvnc4viewer, 在CentOS上设置vncpasswd,其它都倒过来。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式