如何远程桌面centos(如何远程桌面连接电脑)

纸扎戏偶

本篇文章给大家谈谈如何远程桌面centos,以及如何远程桌面连接电脑对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。

本文目录一览:

  • 1、Windows远程桌面连接Centos7
  • 2、如何利用windows远程桌面连接centos
  • 3、centos怎么开启远程桌面连接
  • 4、centos怎么开启远程桌面连接?
  • 5、如何使用VNC Viewer连接远程CentOS服务器

1、Windows远程桌面连接Centos7

首先安装centos7需要安装“Server with GUI”或者GNOME,如果没有,后期需要联网手动安装桌面环境,指令如下:

然后配置源:

最后安装远程连接服务xrdp:

安装完毕后启动xrdp并配置开机自启动:

随后便可用Windows自带的远程桌面客户端连接centos7的桌面系统,如果无法连接,可关闭centos7防火墙或者防火墙开放3389端口再试。

2、如何利用windows远程桌面连接centos

1.查看本机是否有安装vnc(centOS5默认有安装vnc)

rpm -q vnc vnc-server

如果显示结果为:

package vnc is not installed

vnc-server-4.1.2-14.e15_3.1

那恭喜你,机器上已经安装了vnc,如果没有,就得自己安装了,这里不说怎么安装了,很简单,在centOS的软件库中搜索,点击安装

2.把远程桌面的用户加入到配置文件中

vi /etc/sysconfig/vncservers

使用vi编辑器打开配置文件,在文件中添加下面两行命令

VNCSERVERS="1:root" --指定远程用户

VNCSERVERARGS[1]="-geometry 1024x768" --指定远程桌面分辨率

3.给你刚刚设置的远程桌面用户 root 设置密码

vncpasswd

4.开启VNC端口

vi /etc/sysconfig/iptables

使用vi编辑器打开配置文件,在文件中添加下面一行命令

-A RH-Firewall-l-INPUT -p tcp -m tcp --dport 5900:5903 -j ACCEPT

5.重启防火墙

service iptables restart

6.修改远程桌面显示配置文件

cd ~/.vnc/

vi xstartup

使用vi编辑器打开配置文件,并进行下列修改

#xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop"

--将它注释,加#代表注释

#twm --将它注释

gnome-session --添加它

看了这段代码,大家应该明白是怎么回事了

7.启动vnc服务

/sbin/service vncserver start

8.远程连接

打开vnc客户端,server框中输入ip:1

(1代表上面配置的远程用户代号,配置文件中可以配置多个远程用户),这时你便可以轻松的通过友好的远程桌面来控制centOS了。

3、centos怎么开启远程桌面连接

主要做两个方面的工作:

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 进程号。

4、centos怎么开启远程桌面连接?

主要做两个方面的工作:

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 进程号。

5、如何使用VNC Viewer连接远程CentOS服务器

连接WIndows服务器可以使用Windows自带的远程桌面连接,但连接Linux服务器它就不灵了。这里就讲一下Windows7下如何使用VNC Viewer连接远程CentOS服务器。注意:服务器上必须安装了VNC Server服务端才可以。

1、确保已安装VNC VIEWER

2、双击桌面上的快捷方式,运行VNC Viewer。

3、输入VNC Server的IP地址,一个服务器上可以开启多个VNC服务,使用数字来标识,我们要连接第一个那就要输入例如:222.123.123.123:1,加密方式默认就可以了。

4、创建连接完成会出现如下图所示的远程电脑标识

5、右击远程电脑标识,点击connect,弹出如下对话框,输入密码

6、点击连接,就可以打开远程centos桌面,如下图所示

7、如果连上远程centos服务器后,没有找到桌面,请检查centos系统是否安装了GUI桌面,安装教程可以参考我的另一篇教程:centOS7下安装GUI图形界面

关于如何远程桌面centos和如何远程桌面连接电脑的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。

文章版权声明:除非注明,否则均为我爱教程术原创文章,转载或复制请以超链接形式并注明出处。