Fedora Post Installation and Software Configuration Guide (Fedora 15/16/17)

This is the post installation configuration guide for Fedora.This guide is applicable to Fedora 15, Fedora 16 and Fedora 17.

System Update
After installation of Fedora operating system, the first thing you need to do is to update the system. You can perform system update by going to Applications >> System Tools >> Software Updates.
Alternatively, you could perform system update using the command:
sudo yum update
You need to reboot the operating system if you have installed a new kernel.

Software Installation
Some of the essential software applications were preloaded with Fedora. To install new software application, navigate to Applications >> System Tools >> Add/Remove Software. Enter the software package you desire and this utility will search through the software repository for the application you want. You have the option to download and install it.

Alternatively, you can also use command line to install the software packages. First you need to download the software which is an rpm file. (File with extension .rpm) To install the software use the command:
sudo rpm –ivh <name_of_software_package>.rpm

Beside the command rpm, you can also use yum to install software. This application installation utility will automatically search for all the dependencies files and software while installing the application you desire. You don’t need to download the software first. To use yum, type in the command
sudo yum install <name_of_software_package>

To find out details about the software packages use the command:
sudo yum info <keyword_or_software_packages>

You can also perform group install using
sudo yum groupinstall <group_software_name>

For command line installation, it is recommended to use yum utility instead of rpm utility. You will resort to use rpm utility when the software you required is not in any of the software repository.

Adding Software Repository
While yum utility automatically connects to the official mirror sites of Fedora to search and retrieve latest software packages, you might want to add additional repositories that provide additional software. Two additional sites are recommended, they are rpmfusion.org and livna.org. Both sites provide additional software relating to media playing, such as playing DvD disc on Fedora.

The command to add repository from rpmfusion are as follows:
sudo rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
sudo rpm -ivh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm

The command to add repository from livna.org are as follows:
sudo rpm -ivh http://rpm.livna.org/livna-release.rpm
sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-livna

Listed below is some of the software which we recommend:

Web Browsing
Firefox is preloaded with Fedora but you need to install additional plug-ins and Adobe Flash Player. Please note that Google no longer support Google toolbar for user with Firefox 5 and later.

If you prefer Google Chrome, please check my post:
Install Google Chrome on Fedora 16 (Verne)
Install Google Chrome on Fedora 17

Please refer to my other post regarding Adobe Flash Player. Check out:
Install Adobe Flash Player (64-bit) on Fedora 16 (Verne)
Install Adobe Flash Player on Fedora

Productivity Suite
We recommend LibreOffice for productivity software. LibreOffice is not included in the “Desktop Edition” disc. To install LibreOffice, go to Applications >> System Tools >> Add/Remove Software. Type libreoffice in the search box and click find. With the list given, select the package you want.

You could also use command line as follows:
sudo yum install -y libreoffice-writer
sudo yum install -y libreoffice-calc
sudo yum install -y libreoffice-draw
sudo yum install -y libreoffice-impress
sudo yum install -y libreoffice-math


Utilities
There are some useful utilities such as:
wget is a utility that allows you to download http files from the web using command line. This is a useful tool for automating download.
sudo yum install -y wget

Gparted is a utility that manages disk partition. You can resize your disk partition on the fly. To install this software:
sudo yum install -y gparted

For viewing chm files use xchm or kchmviewer. Use one of the following command:
sudo yum install -y xchm
sudo yum install -y kchmviewer

Unrar is a utility to unpack rar compressed folders. Use the command:
sudo yum install -y unrar

GCC is GNU C/C++ compiler. Kernel-devel is the kernel headers required to compile kernel files. Both files are required to rebuilt kernel or install drivers.
sudo yum install -y gcc kernel-devel

PDF Document
Fedora has default PDF reader and writer so no installation is required. For Firefox, select Print >> Print to File, make sure you specify the document type as PDF and also specify the filename and location of the file. For LibreOffice, use ‘Export to PDF’ function.
You will need a PDF writer if you intend to use it on any other application that do not have print to PDF or export to PDF capabilities. In this case, you need to install cups-pdf. Use the command:
sudo yum install -y cups-pdf

PDF writer usually tie to the print function. You just need to use the print function and select PDF writer as the printer. Please search the web if you encounter any problem.

Playing Multimedia Files
To play the most common multimedia formats, including mp3, mpeg and wmv file, you need to install additional codec. We would recommend VLC Media Player because it provides many codec together with a player.
Installing VLC Media Player, use the command:
sudo yum install -y vlc

To set VLC as the default player, right-click any media file. Select “Properties” and go to “Open With” tab. Click “Show other Application”. Highlight the application you want to set and click “Set as Default”

Installing DvD Playing Applications
Playing DVD is more complicated because it involves restricted format. In addition to media player, you need to install CSS Packages.
To check your region setting you need the package “regionset”.
sudo yum install -y regionset

After installation, use the command $regionset. Your region setting will be shown.
To install the CSS packages use the command:
sudo yum install -y libdvdcss

DVD Ripping
In the event you need to backup your DVD; you can install various DVD ripper. In this section we will install k9copy. Use the command:
sudo yum install -y k9copy

Please search the web on how to use k9copy.

Additional Applications
For additional applications, please check my other post:
Fedora 16
Install Google Chrome on Fedora 16 (Verne)
Install Adobe Flash Player (64-bit) on Fedora 16 (Verne)
Playing Real Media (rm ram files) in Fedora or Linux
[Additional note: If you encounter any problem with the above installation please consult the latest post even if you are installing on Fedora 16]

Fedora 17
Install Google Chrome in Fedora 17
Install Adobe Flash Player on Fedora
Install Adobe AIR on Fedora 16 / Fedora 17
Install Dropbox on Fedora 16 / Fedora 17
Install Oracle VirtualBox on Fedora 16 / Fedora 17 Host


Automation (For Advanced User)
You can download the script FC00-software-install-noarch to automate the installation for above-mentioned software.
After downloading the script, please read the script carefully and hash (#) out any installation option or command that you do not want to use. Any command with a hash (#) in front will not be executed.

You need to change the permission to executable by using the command:
sudo chmod +x FC00-software-install-noarch

To run the script use the command:
sudo ./FC00-software-install-noarch

Alternatively, use the following command to pipe the installation log to a text file:
sudo ./FC00-software-install-noarch >> log.txt

For those with difficulties downloading the script, listed below is the full content of the script, you can copy and paste the script to a plain text file:
#! /bin/bash
# This software installation script is for Fedora 15 and later
# You just need to hash out or remove any installation you don't want
# You can also add in additional software packages you like

#Updates
yum update -y yum
yum update -y

#Additional yum plugins
#yum install -y yum-plugin-fastestmirror

#Additional yum repository configuration for rpmfusion and livna
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
rpm -ivh http://rpm.livna.org/livna-release.rpm
yum update -y

#Installing Essential Utilities
yum install -y gparted
yum install -y xchm
yum install -y kchmviewer
yum install -y gcc kernel-devel
yum install -y unrar
yum install -y cups-pdf
yum install -y wget
yum install -y vim
yum install -y beesu
yum install -y nautilus-beesu-manager


#Installing of Libre Office Software
yum install -y libreoffice-impress
yum install -y libreoffice-calc
yum install -y libreoffice-writer
yum install -y libreoffice-draw
yum install -y libreoffice-math




#Installing Media Players, DVD codec and Ripper
yum install -y vlc
yum install -y regionset libdvdcss
yum update -y
yum install -y k9copy
yum install -y xine xine-lib-extras xine-lib-extras-freeworld

#Installing Games
#yum install -y kdegames

#End message
echo "Some applications requires further user configuration such as nautilus-beesu-manager"
***End***

Comments

Popular posts from this blog

Revive Old Mac Mini (2009) with Linux

Configure Unattended Upgrades on Raspberry Pi

Install and Configure RealVNC in Linux Ubuntu 18.04 LTS