我的 Fedora 14 安装笔记

 

一. 安装的系统的时候选上  Development 下的  Development Libraries 和  Development Tools,编译安装软件的时候需要。

二. 安装完成后,先对系统进行 update。打开终端,进入管理员模式,输入yum -y update,大概要等近一个小时(看网络质量了)。

三. 安装我的 Wireless 网卡驱动
        我的笔记本是 ThinkPad E40 系列的,安装后默认没有识别无线网卡驱动,官网也没有提供Linux下的驱动,经过一般周折,终于查到网卡的型号是 Realtek RTL8192SE
        下载地址
        下载完成后,解压、编译、编译安装。
        进入解压目录 make && make install 就可以了。

四. 更新完了以后,再安装一些必需的软件。
(1)先安装  RPM Fusion 源
rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
rpm -ivh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm

(2)安装音频、视频解码器
yum -y install gstreamer-plugins-bad gstreamer-ffmpeg gstreamer-plugins-ugly

(3)安装远程访问 Windows 桌面的软件
yum -y install tsclient

(4) Emesene
yum -y install emesene

(5)SKYPE
wget http://download.skype.com/linux/skype-2.1.0.81-fc10.i586.rpm

(6)安装 p7zip,可以解压 7z 格式的压缩包。
yum -y install p7zip
(压缩)7za a -mhe=on -p123456 abc.7z
-mhe=on 可以加密压缩文件列表。

(7)安装unrar,可以解压 rar 格式的压缩包。
yum -y install unrar

(8)为 mozilla firefox 安装 flashplayer 插件。
wget http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_10_linux.tar.gz
tar zxvf install_flash_player_10_linux.tar.gz
cp libflashplayer.so ~/.mozilla/plugins/
 
(9)安装wireshark
yum -y install wireshark wireshark-gnome
 
----------
1、MP3播放器里面文件名乱码
yum -y install python-mutagen
安装完成后,使用命令修改字符编码 
(修改当前目录下的mp3文件)
mid3iconv -e gbk *.mp3
(修改当前目录下的mp3文件,包括子目录)
find . -iname "*.mp3" -execdir mid3iconv -e GBK {} \;

你可能感兴趣的:(我的 Fedora 14 安装笔记)