Fedora 17 安装后要做的几件事:MP3,桌面定制,root登录等

1. MP3、MPEG解码器

首先下载安装RPM Fusion free for Fedora 。
下载页面:

http://www.rpmfusion.org/Configuration


或直接访问下载链接:

http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm


下载文件后双击执行安装。

然后通过命令行安装MP3、mpeg、x264 解码器插件

  1. [myuser@fedorapc ~]$ su  
  2. 密码:  
  3. [root@fedorapc myuser]#   
  4. #yum install gstreamer-plugins-bad gstreamer-ffmpeg gstreamer-plugins-ugly -y  

2、Flash plugin下载
http://get.adobe.com/cn/flashplayer

3、Google Chrome下载(不容易打开)
http://www.google.com/chrome/index.html


4. 其他:

运行以下指令前,请在命令行先执行su切换到root。


fastestmirror插件,可以让yum管理器自动搜索最快源下载。确实非常快。

  1. # yum -y install yum-fastestmirror  


系统升级:

  1. #yum update  


鼠标右键“在终端中打开”

  1. # yum install nautilus-open-terminal  


GNOME3 tweak tool,GNOME3 增强功能选项

  1. #yum install gnome-tweak-tool  


系统日志查看器

  1. # yum install gnome-system-log  


LibreOffice

  1. #yum install libreoffice  


sun拼音输入法

  1. # yum install ibus-sunpinyin  


配置文件编辑器

  1. #yum install gconf-editor  


安装完成后,可以敲 Alt - F2 ,直接输入软件包名执行。


5. 技巧:

1)用root登入,

在文件/etc/pam.d/gdm中找下面这行,并注释掉。

auth required pam_succeed_if.so user != root quiet



2)设置sudo

  1. # visudo  

然后,在配置文件中找到下面的几行内容:

  1. ## Allow root to run any commands anywhere  
  2. root    ALL=(ALL)       ALL  

在下面添加以下内容

  1. yourusername  ALL=(ALL) ALL  

存盘退出,现在试一下

    1. [myuser@fedorapc ~]$ sudo ls /root  
    2.   
    3. We trust you have received the usual lecture from the local System  
    4. Administrator. It usually boils down to these three things:  
    5.   
    6.     #1) Respect the privacy of others.  
    7.     #2) Think before you type.  
    8.     #3) With great power comes great responsibility.  
    9.   
    10. [sudo] password for myuser:   
    11. anaconda-ks.cfg  
    12. [myuser@fedorapc ~]$ 

来源: http://cto.fawuyou.com/archives/557

原文地址:https://www.cnblogs.com/beceo/p/2648117.html