convertxtodvd_logo

ConvertXtoDVD

VSO ConvertXtoDVD is considered to be one of the best Video converters. It combines high speeds, high quality and many options for your personalized DVD menus.

ConvertXtoDVD guide
Free Download ConvertXtoDVD

Linux Books

Of course the Internet along with the help of Google is a great source of information. You can answer almost any question you have about Linux and find many tutorials, guides and help. However many people prefer reading this information on a printed book accesssible even when they are not online or don't have a computer in front of them. I've received many e-mails asking me to propose them a few good books regarding Linux commands, administration and for specific distributions such as Ubuntu, Fedora etc. So, I've search for a few good books. Here they are. Happy reading!

Linux Books

Ubuntu guides

Ubuntu is a free Operating System based on Debian GNU/Linux. It has been rated as the most popular Linux distribution amongst Linux users according to Distrowatch. As it happens every six months a new version of Ubuntu has been released. Ubuntu 10.04 Lucid Lynx is here! Below you can find some helpful tutorials for old and new users!

Ubuntu 10.04 Lucid Lynx Post Installation Guide
Ubuntu 9.10 Karmic Koala Post Installation Guide
Ubuntu 9.04 Jaunty Jackalope Post Installation Guide
How to install Ubuntu Linux on Windows using VirtualBox

Fedora 12 Installation Guide

Fedora 12, codenamed Constantine, is released! Just for the info, Fedora is an RPM based Linux Distribution, an Operating system in other words, developed by the community supported Fedora Project and sponsored by Red Hat. Fedora contains only free and Open Source software. Some of Fedora's 12 new features are Gnome 2.28, KDE 4.3, better web cam support!, and many others.

Fedora 12 Installation and Post-Installation Guide
Fedora 11 Installation and Post-Installation Guide
Fedora 11 Installation and Post-Installation Guide in Chinese

Article Index
Fedora 10 Installation Guide
Page 2
Page 3
Page 4
Page 5
Page 6
Page 7
Page 8
Page 9
Page 10
Page 11
Page 12
Page 13
All Pages

3. Configuring yum

* Basic Commands

Below there are the most common commands you will use for yum, Fedora's Package Management System. You can find a more detailed description of those along with some more commands if you type:

yum --help
man yum

    * Install an application

su -c 'yum install application_name'
    * Remove an application

su -c 'yum remove application_name'
    * Install an rpm from your hard disk using yum to resolve dependencies

su -c 'yum localinstall application_name'
    * Search for an application

su -c 'yum search application_name'
    * Find info about an application

su -c 'yum info application_name'
    * Update the whole system

su -c 'yum update'
    * Enable a repository

su -c 'yum --enablerepo=repo_name'
    * Disable a repository

su -c 'yum --disablerepo=repo_name'

* Importing Fedora GPG keys

Fedora has 2 basic repositories named 'fedora' and 'updates'. To use them and not get errors about unsigned packages you must import their GPG keys. Open a terminal and type:

su -c 'rpm --import /etc/pki/rpm-gpg/*'

* Third party Repositories

* RPM Fusion

Fedora software repositories don't include support for MP3, DVD and Video playback/recording because of patent licenses. For this reason you have to install that software from third party repositories. But don't worry, this is pretty easy! ;)

Now we are going to install the RPM Fusion Repository. RPM Fusion is a merger of the Dribble, Freshrpms and RPM Fusion package repositories for Fedora and Red Hat Enterprise Linux. A variety of applications is included in that repository such as codecs for mp3 and unencrypted DVDs, multimedia applications such as mplayer, VLX and xine and the closed source Nvidia and ATi video drivers! RPM Fusion has two main repositories:

  • one named "free" for Open Source Software (as defined by the Fedora Licensing Guidelines) which can't be included in Fedora because it might be patent encumbered in the US
  • one named "nonfree" for non-free software, that is everything else which can't be in free; this includes software with public available source-code that has "no commercial use"-like restrictions

For the rest of this guide I will assume that you have installed and enabled the RPM Fusion Repository. So, open a terminal and type:

su -
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
yum update

* Adobe

The Adobe repository provides flash and acrobat reader packages for the x86 Fedora. To install it type:

su -
rpm -ivh http://linuxdownload.adobe.com/linux/i386/adobe-release-i386-1.0-1.noarch.rpm
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux

It will be automatically enabled.

* Google

Well, it has only picasa but for those who need it install it by typing:

su -
wget https://dl-ssl.google.com/linux/linux_signing_key.pub
rpm --import linux_signing_key.pub rm linux_signing_key.pub
gedit /etc/yum.repos.d/google.repo

Depending on your architecture paste the following lines:

[google]
name=Google - i386
baseurl=http://dl.google.com/linux/rpm/stable/i386
enabled=1
gpgcheck=1


[google64]
name=Google - x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=1

* Graphical Interface for yum

If you don't like typing commands in your console you can use Fedora's Graphical interface for yum. You can find it under System -> Administration -> Add/Remove Software.

You can also install yumex for this reason.

su -c 'yum install yumex'

* Configure yum through Proxy

If you are behind an http proxy server and you want yum to connect to the internet through that proxy open a terminal and type:

su -c 'gedit /etc/yum.conf'
Add this line in the yum configuration

proxy=http://ip:port/
where ip is your proxy's ip address and port is the port the proxy listens to. Don't forget the / after the port number. Save and exit.

* Yum plugins

* Fastest Mirror Plugin
Exactly what its name says. This plugin searches for the fastest mirror in your mirrorlist and downloads all packages from it. To install it type:

su -c 'yum install yum-fastestmirror'
Now, just use yum as usual. You can configure various settings of this plugin in the file:

su -c 'gedit /etc/yum/pluginconf.d/fastestmirror.conf'
* Security Plugin
This plugin allows you to search and install only security related updates. Very useful if you have Fedora installed on a Server production mode. To install it type:

su -c 'yum install yum-security'
To apply security plugins type:
su -c 'yum --security update'

For more information and additional options such as bugzilla updates and advisory information read its manual:
man yum-security
* Allowdowngrade Plugin
Yum by default doesn't allow you to downgrade a package. However sometimes a new package may cause you problems. In that case you can downgrade to the previous working version of the package with this plugin. To install it type:

su -c 'yum install yum-allowdowngrade'
To use it type:
su -c 'yum update --allow-downgrade'
You can disable this plugin by changing the option enabled in the file:

su -c 'gedit /etc/yum/pluginconf.d/allowdowngrade.conf'
* Presto Plugin
The presto plugin provides faster, smaller size downloads to Fedora users. It downloads only the part of the rpm that has been updated and not the whole package. Presto is scheduled to be officially included in the Fedora 11 release! To install it type:

su -c 'yum install yum-presto'
Then you must edit some .repo files. If you are using Fedora 10 64 bit sorry, but at this time I don't see any mirror with x86_64 packages.

su -c 'gedit /etc/yum.repos.d/fedora-updates.repo'
comment the mirrorlist line by adding # in front of it and then paste this line:

baseurl=http://lesloueizeh.com/f10/i386/updates/

Login Form

Follow me on...

  • Digg: axelgr
  • Facebook Page: 379363054400
  • FeedBurner: my-guidesnet
  • Twitter: myguidesnet
  • External Link: http://feedburner.google.com/fb/a/mailverify?uri=my-guidesnet

Member Login