返回列表 发帖
看看...
Mc喊麦       

TOP

TOP

来学习下

TOP

一般的vps不行啊    每个1G内存玩不起
www.76lt.com

TOP

OVH安装测试了,火狐浏览器都打不开,我考,晕倒。
必须内存大大地才可能玩转。

TOP

可惜没有内存大于512的,要不然拿来挂挂VG可以赚点小钱
VPS推荐:PhotonVPS, UCVPS

TOP

CentOS 5.5 安装VNC CentOS 安装vncserver(xfce桌面)

注:以下在   CentOS 5.7 上测试可用  CentOS 6 没测试成功。6系可用上面的。



CentOS 安装vncserver(xfce桌面)进行远程管理


现在便宜的VPS很多,有些买到都没用几次,在手上闲着还不如利用起来,虽然用ssh也可以管理,但是用图形可以做更多的事情,比如挂电驴,BT之类的.

首先安装桌面环境,我选择的是xfce,轻量级桌面,小巧实用不占太多内存,输入下面命令安装:



http://www.imroy.com/post-41.html

Linux CentOS下安装可视化远程桌面


一、安装Xfce 4.4

yum groupinstall xfce-4.4 -y


也可通过yum grouplist命令查阅是否存在新的可用版本,替换4.4


注:这个步骤个在CentOS 6 下无法运行。   可能就是只支持 CentOS 5


二、安装VNC

yum install vnc vnc-server -y



三、配置VNC

1.修改配置文件

vi /etc/sysconfig/vncservers

加入以下内容:

  1. VNCSERVERS="1:root"
  2. VNCSERVERARGS[1]="-geometry 1024x768"
复制代码


2.设置VNC密码

vncpasswd


3.启动VNC服务

vncserver


4.修改vnc文件

vi /root/.vnc/xstartup

将文件内所有内容删除,换成以下内容

  1. #!/bin/sh
  2. /usr/bin/startxfce4
复制代码


5.设置vnc权限

chmod +x ~/.vnc/xstartup


6.重启VNC服务

service vncserver restart


7.设置VNC开机启动

chkconfig vncserver on


到此,即可正常登录了VNC了。




四、系统优化

1.安装中文语言支持(安装中文字体,解决访问中文网站乱码问题)

yum -y install fonts-chinese


2.安装Firefox火狐浏览器

yum -y install firefox


3.安装Firefox的flash player插件

重新启动VPS,使用VNC连接(VNC Viewer等软件)

连接方法:你的ip:1

  • 使用firefox访问www.adobe.com,点击Get Flash Player
  • 下载rpm包
  • 在rpm文件所在文件夹右键,进入终端(Open Terminal Here),使用rpm -ivh flash-plugin-*.rpm进行安装。
  • 在firefox的地址栏输入about:plugins查看是否安装成功~






如果连接不上VNC先杀掉进程。再重启服务

vncserver -kill :1

再启动一下vncserve1

vncserver



使用后感觉:xfce桌面  不够华丽,占资源更少。  80M左右内存。

333.jpg



----------------------

其它教程。  OVH下CentOS 6.3安裝VNC

yum -y update
yum -y groupinstall xfce
yum -y install tigervnc
yum -y install tigervnc-server
yum -y groupinstall chinese-support
yum -y install firefox
wget http://fpdownload.macromedia.com/get/flashplayer/pdc/11.1.102.55/install_flash_player_11_linux.i386.tar.gz
tar zxvf install_flash_player_11_linux.i386.tar.gz
mkdir -p ~/.mozilla/plugins/
cp libflashplayer.so ~/.mozilla/plugins/
rm -f /etc/sysconfig/vncservers
cd /etc/sysconfig/
wget http://disk.lifesci.info/vncservers
vncserver


在其它VPS的 CentOS 6 上安装没成功。


--------------------------------------------------
CentOS 6 装  xfce  也可试试如下的

默认的centos源是不能yum安装这个Xfce的,不过我们可以换Epel的源,什么叫Epel请自个搜索
#wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-5.noarch.rpm
#rpm -ivh epel-release-6-5.noarch.rpm
#yum search xfce4
#yum groupinfo Xfce
#yum install Xfce* -y



有人说下载源不能用,换这些下载地址。
http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-5.noarch.rpm
http://download1.rpmfusion.org/free/el/updates/6/i386/rpmfusion-free-release-6-1.noarch.rpm
http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
★ 11月开空间新规则,百度GG收录百贴:http://idc866.com/thread-15155-1-1.html
★ 本站转型:推荐免费空间,收集免费空间,免费空间测试,并提供原创申请教程。
★ 免备案空间,免费空间,免费国外空间,国外免费空间,免费美国空间
★ 我们是一群辛勤的小站站长,我们需要团结,我们需要共同进步!!!!
★ 达要求开空间,论坛发申请贴后,请加QQ:876812422  (一般在线、有Q必回)

TOP

返回列表