Fedora10使用记录二

来源:互联网 发布:pt p700 打印软件 编辑:程序博客网 时间:2024/05/17 10:07

 Fedora10 从官方文档中给自己系统添加的东西

1. yum-presto 

Recommended Plugins 
yum-presto 
This plugin speeds up the processing of packages and downloading of packages by downloading the difference between the new package and the old package. It is recommended to be installed in order to reduce the quantity you download for updates. You can get it with this command: 
su -c 'yum -y install yum-presto'

However, to use it, you need to have some presto repositories enabled. To do this, you have to edit the content of a file. Type the following command: 

su -c 'gedit /etc/yum.repos.d/fedora-updates.repo'

Now, you have to change the mirrorlist to: 

mirrorlist=http://presto-mirrors.anmar.eu.org/mirrorlist?repo=updates-released-f$releasever.newkey&arch=$basearch


2.Windows Codecs (ALL video players) 

Install wget first (sometimes not installed by default) 

su -c 'yum -y install wget' (已经安装了)

This will enable the codecs required to play most media released. 

cd /tmp
wget http://www1.mplayerhq.hu/MPlayer/releases/codecs/all-20071007.tar.bz2
tar -jxvf all-20071007.tar.bz2
su -c 'mkdir -p /usr/local/lib/codecs'
su -c 'cp all-20071007/* /usr/local/lib/codecs'
rm -rf /tmp/all-20071007*

This may help as well but it is not required. 

su -c 'ln -sf /usr/local/lib/codecs /usr/lib/codecs && ln -sf /
/usr/local/lib/codecs /usr/local/lib/win32 && ln -sf /usr/local/lib/codecs '

3.右键添加终端

How to add the Open Terminal to the R-Click 
Read #General Notes 
su -c 'yum install nautilus-open-terminal'
Right Click the Desktop -> Open Terminal

原创粉丝点击