安装 Fedora 15 后要做的事

安装 Fedora 15 后要做的事

网上有各种“安装Fedora 15后要做的几件事情”、“安装Fedora 15后需要做的25件事”、“Fedora 15安装手记”等等,咱也写个,自己以后重装系统用,不用再google了 ^_^

1、第一件事当然是给自己加sudo权限了

[bash]

[fungo@fungo ~]$ su -c “nano /etc/sudoers”

[/bash]

2、禁用SELinux,不然总会各种烦人提示和问题,Linux本身已经够安全了,个人用不需要启用。

[bash]

[fungo@fungo ~]$ sudo nano /etc/selinux/config

[/bash]

把第6行

[bash]

SELINUX=enforcing

[/bash]

改成

[bash]

SELINUX=disabled

[/bash]

临时关闭SELinux是在命令行输入

[bash]

sudo setenforce 0

[/bash]

3、启用无线网络

安装好fedora 15后,发现无线网卡是灰色的,点击无法启用,解决方法

编辑/etc/modprobe.d/blacklist.conf

[bash]

[fungo@fungo ~]$ sudo nano /etc/modprobe.d/blacklist.conf

[/bash]

在文件后面添加

[bash]

blacklist acer-wmi

[/bash]

然后重启就Okay了

原理还不知

4、添加源

163和sohu的

访问http://mirrors.163.com和http://mirrors.sohu.com,然后找到fedora的帮助,按帮助来做

5、添加rpmfushion源

访问 http://rpmfusion.org/Configuration/ 按说明来做,一般用命令行的即可

[bash]

su -c ‘yum localinstall –nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm’

[/bash]

以上两种添加源后都要运行

[bash]

sudo yum makecache

[/bash]

来更新元数据

6、安装fastestmirror

当安装软件时,这个yum插件自动选择最快的源

[bash]

sudo yum install yum-plugin-fastestmirror

[/bash]

yum-plugin-开头的都是yum的插件,可以通过搜索命令来查看

[bash]

yum search yum-plugin-

[/bash]

7、升级系统

[bash]

sudo yum update

[/bash]

这个要花一些时间,更新和安装的包有1000个左右

8、 安装gnome3 tweak tool

[bash]

sudo yum install gnome-tweak-tool

[/bash]

9、安装Faenza图标集

这会使整个界面的美观性大大改善

[bash]

sudo yum install faenza-icon-theme

[/bash]

安装完毕之后,使用gnome3-tweak-tool启用主题,在interface栏中的Icon Theme项中选Faenza即可。

另外yum源里有很多主题,可以

[bash]

yum search icon-theme

[/bash]

来查看

10、安装中文输入法

因为我装的是英文版,所以默认没有中文输入法。

在input method selector程序中选择 use ibus

然后安装wubi

[bash]

yum search wubi

[/bash]

查看可安装的wubi输入法

可以看到有

[bash]

ibus-table-chinese-wubi-haifeng.noarch : Haifeng Wubi input method

ibus-table-chinese-wubi-jidian.noarch : Jidian Wubi input method

[/bash]

然后选择安装

装好后log out

登录后在ibus preferences里添加刚安装好的输入法即可。

11、安装gnome-shell 扩展

[bash]

sudo yum install gnome-shell-extension-alternative-status-menu gnome-shell-extension-cpu-temperature gnome-shell-extension-presentation-mode gnome-shell-extension-remove-accessibility-icon gnome-shell-extension-remove-bluetooth-icon gnome-shell-extension-user-theme

[/bash]

alternative-status-menu 添加关机、休眠等按钮;

presentation-mode是在电源的下面添加一个Presentation mode按钮,点击后可以避免在看全屏电影时自动锁屏或者亮度降低;

remove-accessibility-icon和remove-bluetooth-icon分别去掉accessibility和蓝牙按钮。

扩展安装完毕后,需重启GNOME Shell(按住Alt+F2,输入 r) 。

可以在gnome-tweak-tool里选择启用和禁用扩展,改变之后要重启gnome shell。

还有很多扩展

可以

[bash]

yum search gnome-shell-extension

[/bash]

来查看

孤独的北山羊 /
Published under (CC) BY-NC-SA in categories Fedora  tagged with fedora  安装  配置