Fedora 17 安装后配置笔记


设置 root 可登录
        vim  /etc/pam.d/gdm-password
    注释掉这一行
         auth        required      pam_succeed_if.so user != root quiet

设置 sudo
        visudo
    找到
        root        ALL=(ALL)        ALL
    一行,在下面添加
        xxx        ALL=(ALL)NOPASSWD:        ALL
    其中,xxx 为自己的用户名

关掉 SELinux
        vim /etc/selinuxconfig
    将
        SELINUX=enforcing
    改为
        SELINUX=disabled
    重启....  或 临时关闭方法
        setenforcde 0

下载安装 rpmfusion 源
        http://download1.rpmfusion.org/free/Fedora/rpmfusion-free-release-stable.noarch.rpm
        http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
    下载后,(切换到存储这两个 rpm包 目录)执行
        rpm -ivh rpmfusion*.rpm

安装其他 yum 源(我试了,好像没什么效果)
        163 源:http://mirrors.163.com/.help/fedora.html
        搜狐 源:http://mirrors.sohu.com/help/fedora.html
        中科大 源:http://lug.ustc.edu.cn/wiki/mirrors/help/fedora
    下载后,放入 /etc/yum.repos.repo 目录下,执行
        yum makecache

更新
    yum -y update
删除旧内核
    yum remove kernel

解决 vim 中文乱码
        vim /etc/vimrc
    在最后加上如下内容(注意双引号的问题,英文输入法下的双引号)
        set encoding=utf-8
        set fileencodings=utf-8,chinese,latin-1
        if has("win32")
            set fileencoding=chinese
        else
            set fileencoding=utf-8
        endif

安装 dconf-editor
    yum install dconf-editor
解决 gedit 中文乱码
    打开 dconf-editor
    找到 org --> gonme --> gedit --> preferences --> enchding
    在 auto-detected 选项中添加 GB2312、GB18030 编码

安装当前目录右键打开终端
    yum install nautilus-open-terminal
安装gnome3 tweak tool工具
    yum install gnome-tweak-tool
安装Gnome Do (快速文件搜索)
    yum install gnome-do
安装其他终端(介绍:http://blog.51osos.com/linux/Ubuntu-terminal-emulator/)
    yum install terminator   


安装Faenza图标集
    先搜索
        yum search faenza
    根据搜索的结果,安装
        yum install faenza-icon-theme.noarch

安装 windows 字体
    复制 windows 系统内的字体到 /usr/share/fonts/winfonts(目录 winfonts 可自己自由创建,并修改权限 755)
    后,更新字体缓存
        fc-cache -fv

安装 主题、拓展
    yum install gnome-shell-theme*
    yum install gnome-shell-extension*


安装 ftp 客户端
    yum install filezilla

安装 flash
    官网下载 (http://get.adobe.com/flashplayer/) rpm 安装包,执行
        yum localinstall fla*.rpm (fla*.rpm 为下载的安装包)
    打开 firefox,输入 about:plugins,查看是否有“Shockwave Flash”一项

  • 1
  • 2
  • 下一页

相关内容