1、Linux有一个最大的问题就是所有的操作基本上靠命令,本身并没有图形化的桌面管理系统,所以我们要手动为Ubuntu安装一个桌面环境:GNOME。
( 安装桌面环境
懒人法
直接整套安装,不过附带很多没用的东西。对于配置不高的不推荐此方法。
首先找下有哪些整套桌面环境
apt-cache search ubuntu-desktop
ubuntu-desktop - The Ubuntu desktop system
edubuntu-desktop - educational desktop for Ubuntu
edubuntu-desktop-kde - educational desktop for Kubuntu
xubuntu-desktop - Xubuntu desktop system
lubuntu-desktop - Lubuntu Desktop environment
kubuntu-desktop - Kubuntu Plasma Desktop system
我这里就选一般的ubuntu-desktop,其它儿童版edubuntu,KDE版kubuntu等就不说了。接下来安装
apt-get -y install ubuntu-desktop
或者
aptitude -y install ubuntu-desktop
由于东西比较多,一般需要很长时间,怕中途中断的请事先使用screen工具。
安装完毕后记得重启一下。
DIY法
上面的方法省事,可是很多时候我们想只装核心,其它自行选择,这时候此方法就适合了,对配置的要求也很低。
安装相应桌面环境的核心,这里以GNOME为例。
apt-get -y install gnome-core
完成后重启,就已经完成了,不过由于仅仅是核心,一些基本必备软件还需要安装一下。
最基本需要安装新得立软件包管理器
apt-get -y install gsynaptic往后所有软件都可以在里面安装而不用敲命令了,如中文支持等等。)
2、执行下面命令,然后重启VPS。
apt-get -y install gnome-core
apt-get -y install gsynaptic
3、然后呢?没了,Ubuntu已经成功安装了桌面环境GNOME。
Ubuntu安装VNC,远程控制
1、我们已经为Ubuntu安装桌面环境GNOME,
2、我们就要实现本地Windows远程管理Ubuntu VPS。
3、当然你自己有Ubuntu本地系统那就直接连接到VPS的Ubuntu吧。
4、进入你的VPS的SSH中,执行下列命令,输入密码。
apt-get -y install vnc4server
vncpasswd
5、然后开启服务:
(然后创建远控会话
vncserver :87
New 'XXX:87 (root)' desktop is XXX:87
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/XXX:87.log
其中冒号后面的是自定义的会话编号,这样就可以通过VNC的客户端以域名或IP地址:会话编号连上控制了,VNC客户端我一般用轻量的VNC Viewer。
当你连上的时候,一般会发现只有一个终端窗口,什么东西都没有,这是由于VNC默认的时候只会提供终端窗口,不会提供桌面环境。
先关掉VNC客户端的连接,并且关掉这个远控会话
vncserver -kill :87
远控会话顾名思义,可以创建多个不同编号同时连接,方法是一样的,只需要改变编号。)
vncserver :1
6、再次执行下列命令
vncserver -kill :1
7、修改VNC的配置文件
cd ~
nano .vnc/xstartup
8、将gnome-session &添加在xstartup文件内容的底部,然后将x-terminal-emulator这行注释掉。保存。
9、重启VPS,再开启vncserver服务。使用本地的VNCviewer连接到Ubuntu就行了,这里是VNCviewer下载地址。
10、如果你发现Ubuntu的远程桌面环境没有Firefox浏览器,请执行下列命令安装一下。
sudo apt-get install firefox
----------------------------------------
CentOS 6.3下,安装和配置VNC
对于用惯了WIN系统的朋友来说,没有图形化操作界面的Linux用起来实在太难受了。实际上,Linux也是有图形化操作界面的,这就是VNC。接下来罗伊将告诉大家如何 VNC图形化操作界面。
1,安装GNOME桌面环境
[root@tanvps ~]# yum -y groupinstall “GNOME Desktop Environment”
2, 安装KDE桌面环境
[root@tanvps ~]# yum groupinstall “X Window System” “KDE (K Desktop Environment)”
3,安装VNC服务器
[root@tanvps ~]# yum -y install vnc-server
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
* base: mirror-fpt-telecom.fpt.net
* extras: mirror-fpt-telecom.fpt.net
* updates: mirror-fpt-telecom.fpt.net
Setting up Install Process
Resolving Dependencies
–> Running transaction check
—> Package tigervnc-server.i686 0:1.0.90-0.17.20110314svn4359.el6 will be installed
–> Finished Dependency Resolution
Dependencies Resolved
================================================== ==============================
Package Arch Version Repository
Size
================================================== ==============================
Installing:
tigervnc-server i686 1.0.90-0.17.20110314svn4359.el6 base 1.1 M
Transaction Summary
================================================== ==============================
Install 1 Package(s)
Total download size: 1.1 M
Installed size: 2.9 M
Downloading Packages:
tigervnc-server-1.0.90-0.17.20110314svn4359.el6.i686.rpm | 1.1 MB 00:02
warning: rpmts_HdrFromFdno: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
Importing GPG key 0xC105B9DE:
Userid : CentOS-6 Key (CentOS 6 Official Signing Key)
Package: centos-release-6-3.el6.centos.9.i686 (@anaconda-CentOS-201207051201.i386/6.3)
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : tigervnc-server-1.0.90-0.17.20110314svn4359.el6.i686 1/1
Verifying : tigervnc-server-1.0.90-0.17.20110314svn4359.el6.i686 1/1
Installed:
tigervnc-server.i686 0:1.0.90-0.17.20110314svn4359.el6
Complete!
[root@tanvps ~]#
4,配置VNC
[root@tanvps ~]# su -jackiebui
[jackiebui@tanvps ~]# vncpasswd
Password:******
verify:******
[jackiebui@tanvps ~]# ls .vnc/
5,编辑VNC配置文件
[root@tanvps ~]# vi /etc/sysconfig/vncservers
# The VNCSERVERS variable is a list of display:user pairs.
#
# Uncomment the lines below to start a VNC server on display :2
# as my ‘myusername’ (adjust this to your own). You will also
# need to set a VNC password; run ‘man vncpasswd’ to see how
# to do that.
#
# DO NOT RUN THIS SERVICE if your local area network is
# untrusted! For a secure way of using VNC, see this URL:
# http://kbase.redhat.com/faq/docs/DOC-7028
# Use “-nolisten tcp” to prevent X connections to your VNC server via TCP.
# Use “-localhost” to prevent remote VNC clients connecting except when
# doing so through a secure tunnel. See the “-via” option in the
# `man vncviewer’ manual page.
VNCSERVERS=”1:jackiebui” //Uncomment 2 last lines, and edit your VNC user
VNCSERVERARGS[2]=”-geometry 800×600 -nolisten tcp -localhost” // Save and exit
启动VNC
[root@tanvps ~]# vncserver
[root@tanvps ~]# chkconfig vncserver on //设置为开机启动
接下来就可以开始使用VNC了:
输入密码:
连接成功。