整理了10个Fedora 8下常用应用软件的安装方法,分享给初学Fedora 8 linux的朋友们,希望对大家有所帮助!
1、浏览器–firefox
2、音频播放工具–audacious
3、视频播放工具–mplayer
4、星际译王stardict
5、FTP客户端– FileZilla
6、linux下的超级终端--gtkterm和minicom
7、mht文件的读取
8、PDF文件
9、下载工具软件
10、totem-xine的安装
1、firefox的安装:
删除自带的firefox: yum remove firefox
下载源代码包 http://www.mozilla.org.cn/
tar -zxvf firefox-2.0.0.7.tar.gz -C /usr
ln -s /usr/firefox/firefox /usr/bin/firefox
yum -y install compat-libstdc++-33 #安装光盘里面有这个包
运行 firefox
选择把firefox设置为默认浏览器
2、音频视听软件安装–audacious
安装主程序: yum install audacious
需要安装的解码器: audacious-plugins-nonfree-mp3
audacious-plugins-nonfree-wma
audacious-plugins-nonfree-xmms
audacious-plugins-nonfree-lame
audacious-plugins-nonfree-aac
audacious-plugins-nonfree-alac
yum -y install audacious-plugins*
图标:
rpm -ql audacious |grep png |more
cp /usr/share/icons/hicolor/48×48/apps/audacious.png /usr/share/pixmaps
系统–>首选项–>观感–>Main Menu 选择影音,右键点选audacious ,在属性中设置图标
播放列表乱码解决
在右键的“首选项”中,“播放列表”“元数据”“使用自动编码检测器” 选择“Chinese”
然后在“歌曲显示” “标题格式”选择“艺术家-标题”
播放时上面的滚动显示乱码:
在右键的“首选项”中,“外观”“字体”下面取消选择“如果可能则使用点阵字体”
重新打开audacious可以看到播放列表中可以正确显示中文啦。
3、mplayer的安装
安装程序:yum install mplayer mplayer-gui mplayer-fonts mencoder
要支持firefox可以安装: mplayerplug-in
下载安装解码器:
wget -c http://www1.mplayerhq.hu/MPlayer/releases/codecs/all-20071007.tar.bz2
tar -jxvf all-20071007.tar.bz2
mv ./all-20071007/* /usr/lib/codecs/
有时候需要win32codecs:
wget -c http://www1.mplayerhq.hu/MPlayer/releases/codecs/windows-all-20071007.zip
mkdir /usr/lib/win32codecs
yum install unzip
unzip windows-all-20071007.zip
mv ./windows-all-20071007/* /usr/lib/win32codecs/
ok,现在就可以正常播放rm/rmvb和wmv之类的影片了。
PS:我在放的时候出现了一个问题,有图像了,但是没没声音,弹出一个错误窗口,主要是声音解码出错,在Prefrences –>Audio里面换一个声音驱动就好
mplayer其他安装:
皮肤:
wget -c http://www1.mplayerhq.hu/MPlayer/skins/Abyss-1.6.tar.bz2
tar -jxvf Abyss-1.6.tar.bz2 -C /usr/share/mplayer/skins/
字体:
wget -c http://www1.mplayerhq.hu/MPlayer/contrib/fonts/chinesefonts/gb2312-ming.tar.bz2
tar -jxvf gb2312-ming.tar.bz2 -C /usr/share/mplayer/fonts/
4、星际译王– Stardict
yum -y install stardict
到http://stardict.sourceforge.net/Dictionaries_zh_CN.php页面中下载词典。
解压为每个辞典一个目录,把词典目录放到/usr/share/stardict/dic中,启动stardict就可。
下载安装过程:
wget -c http://downloads.sourceforge.net/filezilla/FileZilla_3.0.4_i586-linux-gnu.tar.bz2
tar -jxvf FileZilla_3.0.4_i586-linux-gnu.tar.bz2 -C /usr/local
ln -s /usr/local/FileZilla3/bin/filezilla /usr/bin/filezilla
建立桌面快捷方式:图标文件在 /usr/local/FileZilla3/share/pixmaps/filezilla.png
可以拷贝到文件夹 /usr/share/pixmaps
运行 filezilla
新建站点->>字符集->>使用自定义的字符集,在编码处输入 GB2312 ,现在就可以看见服务器上的中文名称的文件啦
6、linux下的超级终端--gtkterm和minicom
直接yum 安装
7、mht文件的读取
在firefox浏览器中打开网页http://addons.mozine.cn/firefox/
查找插件mht,安装MHT Reader附件即可。
8、PDF文件
直接使用系统默认安装的 Evince 2.20.1
可选软件:xpdf
9、下载工具软件
multiget :直接yum安装,多线程图形界面下载,只支持http/ftp下载
axel:文本模式下多线程下载工具,yum源里暂时没,只能下载tar包来安装
10、totem-xine的安装:
首先将系统已有的totem移去 # yum remove totem
安装totem-xine # yum install -y totem-xine
安装extras #yum install -y xine-lib-extras
安装DVD播放 # yum install -y libdvdcss libdvdnav
安装lame # yum install -y lame
安装mpeg支持 # yum install -y ffmpeg
安装RM播放支持 # yum install -y compat-libstdc++-33
安装声音支持 # yum install -y xine-lib-extras-nonfree
安装vlc # yum install -y vlc
最后下载mplayer的all-20071007.tar.bz2,支持所有:
wget -c http://www1.mplayerhq.hu/MPlayer/releases/codecs/all-20071007.tar.bz2
把all-20071007.tar.bz2解压的得到的所有文件全部拷贝到/usr/lib/codecs目录,然后运行ldconfig ,进行实时注册动态连接库。