RHEL 6.3 桌面应用

来讲一下 RHEL 6.3 的一些关于安装桌面的问题。系统的安装就省略了,这里是以32位系统为例说明的。

1.安装桌面

  
  
  
  
  1. [root@localhost ~]# yum groupinstall “X Window System”  
  2. [root@localhost ~]# yum groupinstall “Desktop” 

需要说明的,Gnome的桌面是RHEL6默认的桌面,正式更名为Desktop了。

2.桌面的相关优化
从rhel6.1起新增了一个redhat订阅,没什么用,干掉,免得老在那提示你什么的

  
  
  
  
  1. [root@localhost ~]# yum remove subscription* 

安装桌面右键终端:

  
  
  
  
  1. [root@localhost ~]# yum install nautilus-open-terminal 

卸载RHN,这玩意很讨嫌的:

  
  
  
  
  1. [root@localhost ~]# yum remove rhn-setup 

3.服务的优化

开启以下服务就OK 了,其余的都关了它。

  
  
  
  
  1. [root@localhost ~]# chkconfig --list |grep "5:on"  
  2. NetworkManager  0:off   1:off   2:on    3:on    4:on    5:on    6:off  
  3. haldaemon       0:off   1:off   2:off   3:off   4:off   5:on    6:off  
  4. messagebus      0:off   1:off   2:on    3:off   4:on    5:on    6:off  
  5. network         0:off   1:off   2:on    3:on    4:on    5:on    6:off  
  6. sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off  
  7. [root@localhost ~]#  

4.安装Firefox浏览器

系统有自带,是10.0.5的版本,可以更新到现在最新版14

卸载:

  
  
  
  
  1. [root@localhost ~]# yum remove firefox  
  2. [root@localhost ~]# yum remove redhat-bookmarks  
  3. [root@localhost ~]# rm -rf /usr/lib/firefox  
  4. [root@localhost ~]# rm -rf /usr/lib/mozilla  
  5. [root@localhost ~]# rm -rf ~/.mozilla 

官方下载最新版:firefox-14.0.1.tar.bz2

  
  
  
  
  1. [root@localhost ~]# wget http://download.firefox.com.cn/releases/firefox/14.0/zh-CN/Firefox-latest.tar.bz2
  2. [root@localhost ~]# tar zxvf firefox-14.0.1.tar.bz2  
  3. [root@localhost ~]# mv firefox /usr/local/firefox 

创建桌面快捷方式:

  
  
  
  
  1. cat >> ~/Desktop/firefox.desktop<<EOF 
  2. [Desktop Entry]  
  3. Name=Firefox 
  4. Comment=Firefox 
  5. #TryExec=Firefox 
  6. Exec=/usr/local/firefox/firefox  
  7. Icon=/usr/local/firefox/icons/mozicon128.png  
  8. Type=Application 
  9. X-GNOME-Bugzilla-Bugzilla=GNOME  
  10. X-GNOME-Bugzilla-Product=Firefox 
  11. X-GNOME-Bugzilla-Component=BugBuddyBugs 
  12. X-GNOME-Bugzilla-Version=2.31.3  
  13. Categories=GNOME;GTK;Utility;TerminalEmulator;System;  
  14. StartupNotify=true 
  15. X-Desktop-File-Install-Version=0.15  
  16. Name[en_US]=Firefox  
  17. GenericName[en_US.utf8]=Firefox  
  18. EOF 

菜单栏快捷方式:应用程序 --- Internet ---火狐浏览器

  
  
  
  
  1. [root@localhost ~]# touch /usr/share/applications/mozilla-firefox.desktop  
  2. [root@localhost ~]# vim /usr/share/applications/mozilla-firefox.desktop  
  3. [Desktop Entry]  
  4. Version=1.0  
  5. Encoding=UTF-8  
  6. Name=Firefox Browser  
  7. Name[zh_CN]=火狐浏览器  
  8. GenericName=Web Browser  
  9. GenericName[zh_CN]=浏览器  
  10. Comment=Browse the Web  
  11. Comment[zh_CN]=因特网浏览器  
  12. Exec=/usr/local/firefox/firefox  
  13. Icon=/usr/local/firefox/chrome/icons/default/default48.png  
  14. Terminal=false 
  15. Type=Application 
  16. StartupWMClass=/usr/local/firefox/firefox-bin  
  17. MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;  
  18. StartupNotify=true 
  19. X-Desktop-File-Install-Version=0.15  
  20. Categories=Network;WebBrowser; 

安装Flash插件
到www.adobe.com按照对应版本下载最新版:install_flash_player_11_linux.i386.tar.gz

  
  
  
  
  1. [root@localhost ~]# wget http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.236/install_flash_player_11_linux.i386.tar.gz
  2. [root@localhost ~]# tar zxvf install_flash_player_11_linux.i386.tar.gz -C flash  
  3. [root@localhost ~]# mkdir /usr/lib/mozilla/plugins  
  4. [root@localhost ~]# cp flash/libflashplayer.so /usr/lib/mozilla/plugins/  
  5. [root@localhost ~]# chmod 777 -R /usr/libg/mozilla/plugins/ 

可以双击桌面的Firefox图标启动了。

分享图片一张:

RHEL 6.3 桌面效果展示 【By 陆小K网络工作室】

 

你可能感兴趣的:(RHEL 6.3 桌面应用)