来自:http://www.my-guides.net/en/content/view/164/26/1/9/
 

19. 其它实用应用程序

* unrar

su -c 'yum install unrar'

* FTP 客户端

非常不错的 FTP 客户端,带 SSH 支持

 

su -c 'yum install gftp'


另外一个流行的 FTP, FTPS and SFTP 客户端 Filezilla 。

 

su -c 'yum install filezilla'

* chm 阅读器

GNOME用户基于 gtk 开发的 chm 阅读器:

 

su -c 'yum install gnochm'

* eMule 客户端

su -c 'yum install amule'

* linuxdcpp

su -c 'yum install linuxdcpp'

* 分区编辑器

GNOME用户请使用基于 gtk 开发的分区处理程序<

 

su -c 'yum install gparted'


KDE用户请使用基于 QT 开发的分区处理程序

 

su -c 'yum install qtparted'

* Google Earth(谷歌地球)

请访问这个页面 http://earth.google.com/download-earth.html 下载 GoogleEarthLinux.bin 文件,之后打开终端进入你保存该文件的目录,默认的下载目录是 ~/下载 。执行命令安装它:

 

su -c 'sh GoogleEarthLinux.bin'


如果你首次运行谷歌地球并启用了 SELinux ,请运行下列命令,否则你会收到大量 AVC 拒绝消息。

 

su -
restorecon -v '/var/log/gdm/:0-greeter.log'
chcon -t textrel_shlib_t '/opt/google-earth/libminizip.so'
chcon -t textrel_shlib_t '/opt/google-earth/librender.so'
chcon -t textrel_shlib_t '/opt/google-earth/libauth.so'
chcon -t textrel_shlib_t '/opt/google-earth/libevll.so'
chcon -t textrel_shlib_t '/opt/google-earth/libflightsim.so'
chcon -t textrel_shlib_t '/opt/google-earth/libinput_plugin.so'
chcon -t textrel_shlib_t '/opt/google-earth/libgooglesearch.so'
chcon -t textrel_shlib_t '/opt/google-earth/libcollada.so'
chcon -t textrel_shlib_t '/opt/google-earth/libgps.so'
chcon -t textrel_shlib_t '/opt/google-earth/libmeasure.so'
chcon -t textrel_shlib_t '/opt/google-earth/libbasicingest.so'


你可以在 引用程序 -> Internet -> Google Earth 菜单中找到它。注意要顺利运行你必须安装了显卡驱动。

如果你想在 Fedora Linux 下卸载谷歌地球。请别在 添加/删除程序 中找卸载菜单,因为他不是使用 .rpm 包安装的(相当于 Ubuntu 下的 .deb 包)。如果你安装是没有改变谷歌地球的默认安装路径,你可以在 /opt/google-earth 目录中找到卸载脚本。运行它,谷歌地球就会被卸载了。
 

* gtkpod

Apple 著名的 iPod 播放器的歌曲管理软件

 

su -c 'yum install gtkpod'


它会被安装在 应用程序-->声音和视频--> GtkPod 菜单中。
 

* Skype

你可以直接访问 Skype 的官方网站,点击 Fedora 7 安装包,选择并使用“Package Installer(默认的)”打开安装就可以了。

或者你也可以安装 Skype 的软件仓库,打开终端输入:

 

su -c 'gedit /etc/yum.repos.d/skype.repo'


在这个文件中复制下面几行:

 

[skype]
name=Skype Repository
baseurl=http://download.skype.com/linux/repos/fedora/updates/i586/
enabled=1
gpgkey=http://www.skype.com/products/skype/linux/rpm-public-key.asc
gpgcheck=0


之后你就可以自由的安装或者升级 Skype 了。命令如下:

 

su -c 'yum install skype'
su -c 'yum update skype'



来自:http://www.my-guides.net/en/content/view/164/26/1/9/