Resolve hostname locally without DNS using hosts configuration file



Computer Configuration GNU Linux Fedora using Linux Command

 

   The hosts configuration file that is reside under /etc directory is useful to resolve the hostname locally without the use of the DNS server.  The hosts configuration file can configure to map the local network host on your intranet network or internet network without the use of DNS.

The example of hosts configuration file under Linux Fedora 9: 

View the contents of Linux Fedora 9 hosts configuration file

[root@fedora ~]# cat /etc/hosts

# Do not remove the following line, or various programs

# that require network functionality will fail.

127.0.0.1 localhost.localdomain localhost localhost

::1 localhost6.localdomain6 localhost6

[root@fedora ~]#

 

Using the ls -l command to show the hosts file permission, owner, group owner, file size, date created or edited and file location.

List hosts file on Linux Fedora

[root@fedora ~]# ls -l /etc/hosts

-rw-r--r-- 2 root root 197 2008-08-19 05:35 /etc/hosts

[root@fedora ~]#

 




resolv.conf the DNS hostname resolver configuration file on Linux Fedora 9



Computer Configuration GNU Linux Fedora using Linux Command

 

   The resolv.conf configuration file is another network related configuration file on Linux Fedora system.  The resolv.conf configuration file contains the information about the list of DNS server.  The Linux Fedora / Linux system use this resolv.conf configuration file to find the DNS server that will be resolving the domain names into the IP addresses.  The example below show the contents of resolv.conf configuration file on Linux Fedora 9.

Fedora Linux .cshrc File Location:

/etc/resolv.conf

 

Display the contents of resolv.conf network configuration file.

DNS hostname resolver resolv.conf configuration file

[root@fedora ~]# cat /etc/resolv.conf

; generated by /sbin/dhclient-script

nameserver 192.168.1.1

[root@fedora ~]#

 

Using the ls -l command to show the resolv.conf file permission, owner, group owner, file size, date created or edited and file location.

Properties of resolv.conf network configuration file

[root@fedora ~]# ls -l /etc/resolv.conf

-rw-r--r-- 2 root root 60 2008-09-21 03:55 /etc/resolv.conf

[root@fedora ~]#

 




firstboot program configuration script on Linux Fedora 9



Computer Configuration for GNU Linux Fedora using Linux Command

 

   The firstboot configuration script below is located under the /etc/rc.d/init.d directory.  This firstboot script contains the start up configuration for firstboot program.  The firstboot program is the Fedora system configuration that usually run after finish the installation process.  The firstboot program can be run to reconfigure Fedora system if you need to reconfigure Fedora like after fresh installation.

Fedora Linux firstboot Script File Location:

/etc/rc.d/init.d/firstboot

 

Short Description:   Starts the firstboot configuration program

Description:   Firstboot runs the first time a machine is booted after installation. It checks for the existence of an /etc/sysconfig/firstboot file. If the file exists and contains RUN_FIRSTBOOT=NO, firstboot will not run. Otherwise firstboot will be run. If /etc/reconfigSys exists or if "reconfig" is provided in the kernel boot arguments, firstboot will run in reconfiguration mode.

 

Using cat command to view the contents of firstboot configuration script file:

View firstboot program script using cat command

[root@fedora ~]# cat /etc/rc.d/init.d/firstboot

#!/bin/bash

## BEGIN INIT INFO

# Provides: firstboot

# Default-Start: 3 5

# Default-Stop: 0 1 2 4 6

# Required-Start:

# Should-Start: $network

# Short-Description: Starts the firstboot configuration program

# Description: Firstboot runs the first time a machine is booted after

# installation. It checks for the existance of an

# /etc/sysconfig/firstboot file. If the file exists and

# contains RUN_FIRSTBOOT=NO, firstboot will not run. Otherwise

# firstboot will be run. If /etc/reconfigSys exists or if

# "reconfig" is provided in the kernel boot arguments,

# firstboot will run in reconfiguration mode.

## END INIT INFO

 

#

# firstboot: Starts the firstboot druid if it hasn't been run before

#

# chkconfig: 35 99 95

#

# description: Firstboot is a druid style program that runs on the first \

# time a machine is booted after install. It checks for \

# the existence of an /etc/sysconfig/firstboot file. If \

# the file exists and contains RUN_FIRSTBOOT=NO, firstboot \

# will not run. Otherwise, firstboot will be run. \

# If /etc/reconfigSys exists or if "reconfig" is provided \

# in the kernel boot arguments, firstboot will run in \

# reconfiguration mode.

#

 

# Source function library.

. /etc/init.d/functions

 

FILENAME=/etc/sysconfig/firstboot

 

[ -z "$HOME" ] && export HOME=/

 

case "$1" in

start)

args=""

 

if [ -f $FILENAME ] && [ ! -z "$(grep 'RUN_FIRSTBOOT=NO' $FILENAME)" ]; then

exit 0

fi

 

if grep -i "reconfig" /proc/cmdline >/dev/null || [ -f /etc/reconfigSys ]; then

args="--reconfig"

fi

 

# If X isn't running but the default runlevel is 5, start s-c-display

# to configure X. After that, firstboot can run.

runlevel=$(set -- $(runlevel); eval "echo \$$#")

 

if grep -q "^id:5:initdefault:" /etc/inittab && [ "$runlevel" = "5" ]; then

. /etc/sysconfig/i18n

 

if [ ! -f /etc/X11/xorg.conf ] && [ ! -f /etc/X11/XF86Config ]; then

echo -n $"X is not configured. Running system-config-display."

/usr/bin/system-config-display

echo -n $"X is now configured. Starting firstboot."

fi

fi

 

/usr/sbin/firstboot $args

RETVAL=$?

 

# If firstboot succeeded, chkconfig it off so we don't see the message

# in rhgb every time about starting up firstboot.

if [ "$RETVAL" -eq 0 ]; then

action "" /bin/true

/sbin/chkconfig firstboot off

else

action "" /bin/false

fi

 

exit $RETVAL

;;

 

stop)

exit 0

;;

 

*)

echo $"Usage: $0 {start|stop}"

exit 3

;;

esac

[root@fedora ~]#

 

Use ls -l command to show the firstboot script file permission, owner, group owner, file size, date created or edited and file location.

View firstboot script file permission using ls command

[root@fedora ~]# ls -l /etc/rc.d/init.d/firstboot

-rwxr-xr-x 1 root root 2875 2008-04-16 08:01 /etc/rc.d/init.d/firstboot

[root@fedora ~]#

 




firstboot configuration file on Fedora 9



Computer Configuration for GNU Linux Fedora using Linux Command

 

   The firstboot configuration file usually located under the /etc/sysconfig directory to indicate that the Fedora system is already configured using the firstboot program.  This firstboot configuration file under /etc/sysconfig directory must be remove or deleted if you need to reconfigure or configure Fedora system again using the firstboot program.

Fedora Linux firstboot Configuration File Location:

/etc/sysconfig/firstboot

 

View the contents of firstboot configuration file:

firstboot file contents

[root@fedora ~]# cat /etc/sysconfig/firstboot

RUN_FIRSTBOOT=NO

[root@fedora ~]#

 

Use ls -l command to show the firstboot configuration file permission, owner, group owner, file size, date created or edited and file location.

firstboot file permission

[root@fedora ~]# ls -l /etc/sysconfig/firstboot

-rw-r--r-- 1 root root 17 2008-05-20 08:48 /etc/sysconfig/firstboot

[root@fedora ~]#

 




.cshrc configuration file under /root home directory on Linux Fedora 9



Computer Configuration for GNU Linux Fedora using Linux Command

 

   Below is the .cshrc configuration file for Linux fedora 9 locate under user home directory.  The example below use the cat command to view the .cshrc configuration file under the /root user home directory.

Fedora Linux .cshrc File Location:

/root/.cshrc

 

Display contents of cshrc configuration file using cat command:

View Linux Fedora 9 cshrc configuration file using cat command

[root@fedora ~]# cat /root/.cshrc

# .cshrc

 

# User specific aliases and functions

 

alias rm 'rm -i'

alias cp 'cp -i'

alias mv 'mv -i'

[root@fedora ~]#

 

Use ls -l command to show the .cshrc file permission, owner, group owner, file size, date created or edited and file location.

List cshrc congfiguration file under Linux Fedora 9

[root@fedora ~]# ls -l /root/.cshrc

-rw-r--r-- 1 root root 100 2006-07-12 20:06 /root/.cshrc

[root@fedora ~]#

 




.tcshrc configuration file under /root home directory on Linux Fedora 9



Computer Configuration for GNU Linux Fedora using Linux Command

 

   Below is the .tcshrc configuration file for Linux fedora 9.  The example below use the cat command to view the .tcshrc configuration file under the /root user home directory

Fedora Linux .tcshrc File Location:

/root/.tcshrc

 

View tcshrc configuration file using cat command:

View the tcshrc configuration file on Linux Fedora 9

[root@fedora ~]# cat /root/.tcshrc

# .tcshrc

 

# User specific aliases and functions

 

alias rm 'rm -i'

alias cp 'cp -i'

alias mv 'mv -i'

 

set prompt='[%n@%m %c]# '

 

[root@fedora ~]#

 

Use ls -l command to show the .tcshrc file permission, owner, group owner, file size, date created or edited and file location.

List the tcshrc configuration file on Linux Fedora 9

[root@fedora ~]# ls -l /root/.tcshrc

-rw-r--r-- 1 root root 129 2006-07-12 20:06 /root/.tcshrc

[root@fedora ~]#

 




install.log.syslog installation log file under /root home directory on Linux Fedora 9



Computer Configuration for GNU Linux Fedora using Linux Command

 

    Below is the install.log.syslog the installation log file for Linux fedora 9.  The example below use the cat command to view the contents of install.log.syslog file under the /root home directory

Fedora Linux install.log.syslog File Location:

/root/install.log.syslog

 

The Linux command example below use the cat command to view the Fedora installation log install.log.syslog under root home directory.

View Linux Fedora 9 install log syslog configuration file

[root@fedora ~]# cat /root/install.log.syslog | less

<86>May 20 06:56:18 groupadd[1564]: new group: name=utmp, GID=22

<86>May 20 06:56:19 groupadd[1568]: new group: name=utempter, GID=35

<86>May 20 06:56:34 groupadd[1618]: new group: name=floppy, GID=19

<86>May 20 06:56:35 useradd[1623]: new group: name=vcsa, GID=69

<86>May 20 06:56:35 useradd[1623]: new user: name=vcsa, UID=69, GID=69, home=/dev, shell=/sbin/nologin

<86>May 20 06:56:38 groupadd[1646]: new group: name=bes, GID=499

<86>May 20 06:56:39 useradd[1651]: new user: name=bes, UID=499, GID=499, home=/var/log/bes, shell=/sbin/nologin

<86>May 20 06:56:58 groupadd[1689]: new group: name=rpc, GID=32

<86>May 20 06:56:59 useradd[1693]: new user: name=rpc, UID=32, GID=32, home=/var/lib/rpcbind, shell=/sbin/nologin

<86>May 20 06:57:08 useradd[1716]: new group: name=distcache, GID=94

<86>May 20 06:57:08 useradd[1716]: new user: name=distcache, UID=94, GID=94, home=/, shell=/sbin/nologin

<86>May 20 06:57:13 useradd[1732]: new group: name=nscd, GID=28

<86>May 20 06:57:13 useradd[1732]: new user: name=nscd, UID=28, GID=28, home=/, shell=/sbin/nologin

<86>May 20 06:57:18 groupadd[1762]: new group: name=jackuser, GID=498

<86>May 20 06:57:51 groupadd[1814]: new group: name=named, GID=25

<86>May 20 06:57:52 useradd[1818]: new user: name=named, UID=25, GID=25, home=/var/named, shell=/sbin/nologin

<86>May 20 06:57:56 groupadd[1836]: new group: name=tcpdump, GID=72

<86>May 20 06:57:58 useradd[1840]: new user: name=tcpdump, UID=72, GID=72, home=/, shell=/sbin/nologin

<86>May 20 06:58:00 groupadd[1849]: new group: name=slocate, GID=21

<86>May 20 06:58:03 groupadd[1863]: new group: name=ccache, GID=497

<86>May 20 06:58:50 groupadd[1905]: new group: name=ctapiusers, GID=496

<86>May 20 07:02:59 groupadd[2162]: new group: name=gnokii, GID=495

<86>May 20 07:03:14 useradd[2197]: new group: name=lighttpd, GID=494

<86>May 20 07:03:14 useradd[2197]: new user: name=lighttpd, UID=498, GID=494, home=/var/www/lighttpd, shell=/sbin/nologin

<86>May 20 07:03:21 groupadd[2213]: new group: name=screen, GID=84

<86>May 20 07:03:25 groupadd[2220]: new group: name=www, GID=493

<86>May 20 07:03:26 useradd[2224]: new user: name=thttpd, UID=497, GID=493, home=/var/www/thttpd, shell=/bin/false

<86>May 20 07:03:26 useradd[2232]: new group: name=boa, GID=492

<86>May 20 07:03:26 useradd[2232]: new user: name=boa, UID=496, GID=492, home=/var/www/boa, shell=/sbin/nologin

<86>May 20 07:04:27 useradd[2293]: new group: name=dbus, GID=81

<86>May 20 07:04:27 useradd[2293]: new user: name=dbus, UID=81, GID=81, home=/, shell=/sbin/nologin

<86>May 20 07:04:54 useradd[2312]: new group: name=polkituser, GID=87

<86>May 20 07:04:54 useradd[2312]: new user: name=polkituser, UID=87, GID=87, home=/, shell=/sbin/nologin

<86>May 20 07:05:03 groupadd[2327]: new group: name=pulse, GID=491

<86>May 20 07:05:03 useradd[2331]: new user: name=pulse, UID=495, GID=491, home=/, shell=/sbin/nologin

<86>May 20 07:05:03 groupadd[2336]: new group: name=pulse-rt, GID=490

<86>May 20 07:05:03 groupadd[2340]: new group: name=pulse-access, GID=489

<86>May 20 07:05:37 useradd[2411]: new group: name=apache, GID=48

<86>May 20 07:05:37 useradd[2411]: new user: name=apache, UID=48, GID=48, home=/var/www, shell=/sbin/nologin

<86>May 20 07:05:41 groupadd[2423]: new group: name=avahi, GID=488

<86>May 20 07:05:42 useradd[2428]: new user: name=avahi, UID=494, GID=488, home=/var/run/avahi-daemon, shell=/sbin/nologin

<86>May 20 07:06:27 useradd[2502]: new group: name=mailnull, GID=47

<86>May 20 07:06:27 useradd[2502]: new user: name=mailnull, UID=47, GID=47, home=/var/spool/mqueue, shell=/sbin/nologin

<86>May 20 07:06:28 useradd[2507]: new group: name=smmsp, GID=51

<86>May 20 07:06:28 useradd[2507]: new user: name=smmsp, UID=51, GID=51, home=/var/spool/mqueue, shell=/sbin/nologin

<21>May 20 07:06:30 sendmail[2517]: alias database /etc/aliases rebuilt by root

<22>May 20 07:06:30 sendmail[2517]: /etc/aliases: 76 aliases, longest 10 bytes, 765 bytes total

<86>May 20 07:06:32 useradd[2526]: new group: name=openvpn, GID=487

<86>May 20 07:06:32 useradd[2526]: new user: name=openvpn, UID=493, GID=487, home=/etc/openvpn, shell=/sbin/nologin

<86>May 20 07:06:42 useradd[2539]: new group: name=rpcuser, GID=29

<86>May 20 07:06:42 useradd[2539]: new user: name=rpcuser, UID=29, GID=29, home=/var/lib/nfs, shell=/sbin/nologin

<86>May 20 07:06:45 useradd[2547]: new group: name=nfsnobody, GID=486

<86>May 20 07:06:45 useradd[2547]: new user: name=nfsnobody, UID=65534, GID=486, home=/var/lib/nfs, shell=/sbin/nologin

<86>May 20 07:08:12 groupadd[6272]: new group: name=stapdev, GID=485

<86>May 20 07:08:12 groupadd[6277]: new group: name=stapusr, GID=484

<86>May 20 07:12:08 groupadd[6338]: new group: name=smolt, GID=483

<86>May 20 07:12:10 useradd[6342]: new user: name=smolt, UID=492, GID=483, home=/usr/share/smolt, shell=/sbin/nologin

<86>May 20 07:12:50 groupadd[6359]: new group: name=postgres, GID=26

<86>May 20 07:12:51 useradd[6363]: new user: name=postgres, UID=26, GID=26, home=/var/lib/pgsql, shell=/bin/bash

<86>May 20 07:13:03 useradd[6387]: new group: name=sshd, GID=74

<86>May 20 07:13:03 useradd[6387]: new user: name=sshd, UID=74, GID=74, home=/var/empty/sshd, shell=/sbin/nologin

<86>May 20 07:13:07 useradd[6403]: new group: name=webalizer, GID=67

<86>May 20 07:13:07 useradd[6403]: new user: name=webalizer, UID=67, GID=67, home=/var/www/usage, shell=/sbin/nologin

<86>May 20 07:13:13 useradd[6426]: new group: name=dovecot, GID=97

<86>May 20 07:13:13 useradd[6426]: new user: name=dovecot, UID=97, GID=97, home=/usr/libexec/dovecot, shell=/sbin/nologin

<86>May 20 07:13:19 useradd[6450]: new group: name=tclhttpd, GID=482

<86>May 20 07:13:19 useradd[6450]: new user: name=tclhttpd, UID=491, GID=482, home=/var/www/tclhttpd, shell=/sbin/nologin

<86>May 20 07:17:01 useradd[6514]: new group: name=torrent, GID=481

<86>May 20 07:17:01 useradd[6514]: new user: name=torrent, UID=490, GID=481, home=/var/lib/bittorrent, shell=/sbin/nologin

<86>May 20 07:18:10 groupadd[6594]: new group: name=wbpriv, GID=88

<86>May 20 07:19:55 useradd[6805]: new group: name=haldaemon, GID=68

<86>May 20 07:19:55 useradd[6805]: new user: name=haldaemon, UID=68, GID=68, home=/, shell=/sbin/nologin

<86>May 20 07:24:05 useradd[7087]: new group: name=gdm, GID=42

<86>May 20 07:24:05 useradd[7087]: new user: name=gdm, UID=42, GID=42, home=/var/lib/gdm, shell=/sbin/nologin

<86>May 20 07:27:08 groupadd[7251]: new group: name=video, GID=480

<86>May 20 07:27:08 useradd[7256]: new user: name=vdr, UID=489, GID=480, home=/srv/vdr, shell=/sbin/nologin

<86>May 20 07:27:16 groupadd[7264]: new group: name=postdrop, GID=90

<86>May 20 07:27:17 groupadd[7268]: new group: name=postfix, GID=89

<86>May 20 07:27:17 useradd[7273]: new user: name=postfix, UID=89, GID=89, home=/var/spool/postfix, shell=/sbin/nologin

<86>May 20 07:27:17 useradd[7273]: add `postfix' to group `mail'

<18>May 20 07:27:20 postfix[7280]: fatal: could not find any active network interfaces

<86>May 20 07:27:22 groupadd[7285]: new group: name=ntp, GID=38

<86>May 20 07:27:24 useradd[7289]: new user: name=ntp, UID=38, GID=38, home=/etc/ntp, shell=/sbin/nologin

<86>May 20 07:31:21 groupadd[8202]: new group: name=hsqldb, GID=96

<86>May 20 07:31:21 useradd[8206]: new user: name=hsqldb, UID=96, GID=96, home=/var/lib/hsqldb, shell=/sbin/nologin

<86>May 20 07:43:53 groupadd[8983]: new group: name=pound, GID=479

<86>May 20 07:43:53 useradd[8988]: new user: name=pound, UID=488, GID=479, home=/var/lib/pound, shell=/sbin/nologin

<86>May 20 07:45:16 useradd[9058]: new group: name=mysql, GID=27

<86>May 20 07:45:16 useradd[9058]: new user: name=mysql, UID=27, GID=27, home=/var/lib/mysql, shell=/bin/bash

<86>May 20 07:56:29 useradd[9297]: new group: name=exim, GID=93

<86>May 20 07:56:29 useradd[9297]: new user: name=exim, UID=93, GID=93, home=/var/spool/exim, shell=/sbin/nologin

<86>May 20 07:56:29 useradd[9297]: add `exim' to group `mail'

<86>May 20 07:56:49 su: pam_unix(su:session): session opened for user news by (uid=0)

<86>May 20 07:56:49 su: pam_unix(su:session): session closed for user news

<86>May 20 07:56:50 groupadd[9327]: new group: name=squid, GID=23

<86>May 20 07:56:50 useradd[9332]: new user: name=squid, UID=23, GID=23, home=/var/spool/squid, shell=/sbin/nologin

<86>May 20 07:57:09 usermod[9340]: add `squid' to group `wbpriv'

<86>May 20 07:58:19 groupadd[9353]: new group: name=vdradmin, GID=478

<86>May 20 07:58:20 useradd[9358]: new user: name=vdradmin, UID=487, GID=478, home=/var/lib/vdradmin, shell=/sbin/nologin

<86>May 20 08:00:50 useradd[9406]: new group: name=backuppc, GID=477

<86>May 20 08:00:50 useradd[9406]: new user: name=backuppc, UID=486, GID=477, home=/var/lib/BackupPC, shell=/sbin/nologin

<86>May 20 08:01:30 usermod[9451]: add `apache' to group `backuppc'

<86>May 20 08:12:08 groupadd[15913]: new group: name=tomcat, GID=91

<86>May 20 08:12:08 useradd[15917]: new user: name=tomcat, UID=91, GID=91, home=/usr/share/tomcat5, shell=/bin/sh

<86>May 20 08:12:17 groupadd[16406]: new group: name=jetty, GID=476

<86>May 20 08:12:17 useradd[16432]: new user: name=jetty, UID=485, GID=476, home=/usr/share/jetty, shell=/bin/sh

<14>May 20 08:14:13 gconfd (root-16596): starting (version 2.22.0), pid 16596 user 'root'

<14>May 20 08:14:13 gconfd (root-16596): Resolved address "xml:readonly:/etc/gconf/gconf.xml.mandatory" to a read-only configuration source at position 0

<14>May 20 08:14:13 gconfd (root-16596): Resolved address "xml:readwrite:/root/.gconf" to a writable configuration source at position 1

<14>May 20 08:14:13 gconfd (root-16596): Resolved address "xml:readonly:/etc/gconf/gconf.xml.defaults" to a read-only configuration source at position 2

<14>May 20 08:14:43 gconfd (root-16596): GConf server is not in use, shutting down.

<14>May 20 08:14:43 gconfd (root-16596): Exiting

[root@fedora ~]#

 

Use ls -l command to show the install.log.syslog file permission, owner, group owner, file size, date created or edited and file location.

list Linux Fedora 9 install log syslog configuration file

[root@fedora ~]# ls -l /root/install.log.syslog

-rw-r--r-- 1 root root 9766 2008-05-20 08:14 /root/install.log.syslog

[root@fedora ~]#

 




bashrc configuration file under /etc home directory on Linux Fedora 9



Configuration for GNU Linux Fedora Computer using Linux Command

 

   Below is the bashrc configuration file on Linux fedora 9.  The example below use the cat command to view the bashrc configuration file under the /etc directory on Linux Fedora 9 operating system.

Fedora Linux .bashrc File Location:

/etc/bashrc

 

Using cat command to view the contents of /etc/bashrc configuration file:

View fedora 9 /etc/bashrc configuration file

[root@fedora ~]# cat /etc/bashrc

# /etc/bashrc

 

# System wide functions and aliases

# Environment stuff goes in /etc/profile

 

# By default, we want this to get set.

# Even for non-interactive, non-login shells.

if [ $UID -gt 99 ] && [ "`id -gn`" = "`id -un`" ]; then

umask 002

else

umask 022

fi

 

# are we an interactive shell?

if [ "$PS1" ]; then

case $TERM in

xterm*)

if [ -e /etc/sysconfig/bash-prompt-xterm ]; then

PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm

else

PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}"; echo -ne "\007"'

fi

;;

screen)

if [ -e /etc/sysconfig/bash-prompt-screen ]; then

PROMPT_COMMAND=/etc/sysconfig/bash-prompt-screen

else

PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}"; echo -ne "\033\\"'

fi

;;

*)

[ -e /etc/sysconfig/bash-prompt-default ] && PROMPT_COMMAND=/etc/sysconfig/bash-prompt-default

;;

esac

# Turn on checkwinsize

shopt -s checkwinsize

[ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "

fi

 

if ! shopt -q login_shell ; then # We're not a login shell

# Need to redefine pathmunge, it get's undefined at the end of /etc/profile

pathmunge () {

if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then

if [ "$2" = "after" ] ; then

PATH=$PATH:$1

else

PATH=$1:$PATH

fi

fi

}

 

# Only run profile.d scripts if we are no login shell and interactive

if [ "$PS1" ]; then

for i in /etc/profile.d/*.sh; do

if [ -r "$i" ]; then

. $i

fi

done

fi

unset i

unset pathmunge

fi

# vim:ts=4:sw=4

[root@fedora ~]#

 

Use ls -l command to show the bashrc file permission, owner, group owner, file size, date created or edited and file location.

List bashrc configuration file on Linux Fedora 9

[root@fedora ~]# ls -l /etc/bashrc

-rw-r--r-- 1 root root 1539 2008-02-26 07:39 /etc/bashrc

[root@fedora ~]#

 




Linux Fedora Installation Log install.log under /root home directory on Linux Fedora 9



Configuration for GNU Linux Fedora Computer using Linux Command

 

    Below is the install.log file, the installation log file for Linux fedora 9.  The install.log file contains the list of installed packages for Linux Fedora operating system.  The example below use the cat command to view the contents of install.log file under the /root home directory

Fedora Linux install.log File Location:

/root/install.log

 

View the Fedora 9 install.log, the installation log file for Fedora 9 using cat command:

linux Fedora 9 installation log list of packages install

[root@fedora ~]# cat /root/install.log | less

Installing setup-2.6.14-1.fc9.noarch

warning: setup-2.6.14-1.fc9: Header V3 DSA signature: NOKEY, key ID 4f2a6fd2

Installing filesystem-2.4.13-1.fc9.i386

Installing xml-common-0.6.3-23.fc9.noarch

Installing texlive-texmf-errata-2007-4.fc9.noarch

Installing baekmuk-ttf-fonts-common-2.2-7.fc9.noarch

Installing mailcap-2.1.28-1.fc9.noarch

Installing relaxngDatatype-1.0-3jpp.1.fc7.noarch

Installing mozilla-filesystem-1.9-2.fc9.i386

Installing desktop-backgrounds-basic-9.0.0-1.noarch

Installing iso-codes-2.0-1.fc9.noarch

Installing kdelibs-common-4.0.3-7.fc9.i386

Installing xkeyboard-config-1.2-3.fc9.noarch

Installing rhino-1.6-0.1.r5.1jpp.2.fc7.noarch

Installing control-center-filesystem-2.22.1-4.fc9.i386

Installing basesystem-8.1-1.noarch

Installing fedora-usermgmt-default-fedora-setup-0.10-1.fc8.noarch

Installing texlive-texmf-errata-dvips-2007-4.fc9.noarch

Installing texlive-texmf-errata-latex-2007-4.fc9.noarch

Installing tzdata-2008b-1.fc9.noarch

Installing kernel-headers-2.6.25-14.fc9.i386

Installing texlive-texmf-errata-fonts-2007-4.fc9.noarch

Installing ncurses-base-5.6-16.20080301.fc9.i386

Installing pygobject2-doc-2.14.1-2.fc9.i386

Installing junit4-4.3.1-1jpp.1.fc8.noarch

Installing pygtk2-doc-2.12.1-6.fc9.i386

Installing fedora-bookmarks-8-1.noarch

Installing tzdata-java-2008b-1.fc9.noarch

Installing xorg-x11-util-macros-1.1.6-1.fc9.i386

Installing xorg-x11-server-common-1.4.99.901-29.20080415.fc9.i386

Installing evolution-data-server-doc-2.22.1-2.fc9.i386

Installing maven-wagon-1.0-0.1.a5.3jpp.1.fc7.noarch

Installing gnu-regexp-1.1.4-10jpp.3.fc8.noarch

Installing gnome-backgrounds-2.22.0-1.fc9.noarch

Installing fonts-KOI8-R-100dpi-1.0-10.fc8.noarch

Installing log4j-manual-1.2.14-4jpp.1.fc9.i386

Installing xalan-j2-manual-2.7.0-7jpp.2.fc9.i386

Installing junit-manual-3.8.2-4jpp.3.fc9.i386

Installing xml-commons-apis-manual-1.3.04-1jpp.1.fc9.i386

Installing mx4j-manual-3.0.1-6jpp.4.i386

Installing java_cup-manual-0.10-0.k.6jpp.2.i386

Installing avalon-framework-manual-4.1.4-3jpp.14.fc9.i386

Installing ant-manual-1.7.0-1jpp.4.fc9.i386

Installing antlr-manual-2.7.7-1jpp.7.fc9.i386

Installing gnome-devel-docs-2.22.0-1.fc9.noarch

Installing ql2100-firmware-1.19.38-1.fc8.1.noarch

Installing rt73usb-firmware-1.8-4.noarch

Installing ql2400-firmware-4.00.27-1.fc8.1.noarch

Installing ipw2100-firmware-1.3-8.noarch

Installing libertas-usb8388-firmware-5.110.20.p49-1.fc9.noarch

Installing iwl4965-firmware-4.44.1.20-1.noarch

Installing rt61pci-firmware-1.2-4.noarch

Installing iwl3945-firmware-2.14.1.5-2.noarch

Installing ipw2200-firmware-3.0-9.noarch

Installing atmel-firmware-1.3-4.noarch

Installing ql2200-firmware-2.02.08-1.fc8.1.noarch

Installing ql23xx-firmware-3.03.20-1.fc8.1.noarch

Installing zd1211-firmware-1.4-1.noarch

Installing specspo-15-1.noarch

Installing man-pages-2.78-2.fc9.noarch

Installing words-3.0-12.fc7.noarch

Installing rootfiles-8.1-1.1.1.noarch

Installing gnome-audio-2.22.2-1.noarch

Installing libgcc-4.3.0-8.i386

Installing glibc-2.8-3.i686

Installing zlib-1.2.3-18.fc9.i386

Installing libstdc++-4.3.0-8.i386

Installing libICE-1.0.4-3.fc9.i386

Installing libSM-1.0.2-5.fc9.i386

Installing popt-1.13-3.fc9.i386

Installing chkconfig-1.3.37-2.i386

Installing pkgconfig-0.23-2.fc9.i386

Installing libart_lgpl-2.3.20-1.fc9.i386

Installing libjpeg-6b-41.fc9.i386

Installing ncurses-libs-5.6-16.20080301.fc9.i386

Installing bzip2-libs-1.0.5-1.fc9.i386

Installing libpng-1.2.24-1.fc9.i386

Installing libXau-1.0.3-5.fc9.i386

Installing libattr-2.4.41-1.fc9.i386

Installing libacl-2.2.47-1.fc9.i386

Installing libXdmcp-1.0.2-5.fc9.i386

Installing libusb-0.1.12-15.fc9.i386

Installing expat-2.0.1-5.i386

Installing pcre-7.3-3.fc9.i386

Installing libcap-2.06-4.fc9.i386

Installing libtiff-3.8.2-10.fc9.i386

Installing cyrus-sasl-lib-2.1.22-13.fc9.i386

Installing db4-4.6.21-5.fc9.i386

Installing libgpg-error-1.6-2.i386

Installing libgcrypt-1.4.0-3.i386

Installing audit-libs-1.7.2-6.fc9.i386

Installing libogg-1.1.3-9.fc9.i386

Installing elfutils-libelf-0.133-3.fc9.i386

Installing libvorbis-1.2.0-3.fc9.i386

Installing gmp-4.2.2-7.fc9.i386

Installing bluez-libs-3.30-1.fc9.i386

Installing tcp_wrappers-libs-7.6-52.fc9.i386

Installing php-common-5.2.5-7.fc9.i386

Installing libexif-0.6.16-1.fc9.i386

Installing audiofile-0.2.6-8.fc9.i386

Installing libtool-ltdl-1.5.24-6.fc9.i386

Installing flac-1.2.1-4.fc9.i386

Installing libmusicbrainz-2.1.5-6.fc9.i386

Installing libxcb-1.1-4.fc9.i386

Installing hunspell-1.2.1-6.fc9.i386

Installing jasper-libs-1.900.1-8.fc9.i386

Installing libfontenc-1.0.4-5.fc9.i386

Installing keyutils-libs-1.2-3.fc9.i386

Installing tcl-8.5.1-4.fc9.i386

Installing taglib-1.5-1.fc9.i386

Installing libraw1394-1.3.0-6.fc9.i386

Installing liboil-0.3.14-1.fc9.i386

Installing pixman-0.10.0-1.fc9.i386

Installing libpcap-0.9.8-2.fc9.i386

Installing slang-2.1.3-3.fc9.i386

Installing newt-0.52.9-1.fc9.i386

Installing gdbm-1.8.0-28.fc9.i386

Installing libdrm-2.4.0-0.11.fc9.i386

Installing mpfr-2.3.0-3.fc9.i386

Installing libtheora-1.0beta2-4.fc9.i386

Installing procps-3.2.7-20.fc9.i386

Installing ilmbase-1.0.1-2.fc9.i386

Installing speex-1.2-0.7.beta3.i386

Installing libieee1284-0.2.11-3.fc9.i386

Installing libnl-1.1-3.fc9.i386

Installing OpenEXR-libs-1.6.1-3.fc9.i386

Installing exiv2-libs-0.16-2.fc9.i386

Installing openobex-1.3-11.fc9.i386

Installing clucene-core-0.9.20-4.fc9.i386

Installing zip-2.31-6.fc9.i386

Installing eject-2.1.5-11.fc9.i386

Installing patch-2.5.4-32.fc9.i386

Installing hesiod-3.1.0-10.i386

Installing pth-2.0.7-6.i386

Installing glibc-common-2.8-3.i386

Installing libwmf-lite-0.2.8.4-18.fc9.i386

Installing libdbi-0.8.3-1.fc9.i386

Installing libdhcp6client-1.0.14-1.fc9.i386

Installing libdhcp4client-4.0.0-14.fc9.i386

Installing libmpcdec-1.2.6-4.fc9.i386

Installing libdhcp-1.99.8-1.fc9.i386

Installing libavc1394-0.5.3-2.fc9.i386

Installing libiec61883-1.1.0-4.fc9.i386

Installing elfutils-libs-0.133-3.fc9.i386

Installing libksba-1.0.3-2.fc9.i386

Installing exempi-2.0.0-1.fc9.i386

Installing libarchive-2.4.17-1.fc9.i386

Installing libedit-2.10-4.20070831cvs.fc9.i386

Installing ncurses-5.6-16.20080301.fc9.i386

Installing bash-3.2-22.fc9.i386

Installing libxml2-2.6.32-1.fc9.i386

Installing info-4.11-5.fc9.i386

Installing libselinux-2.0.61-1.fc9.i386

Installing shadow-utils-4.1.1-1.fc9.i386

Installing freetype-2.3.5-4.fc9.i386

Installing nspr-4.7.0.99.2-2.fc9.i386

Installing readline-5.2-13.fc9.i386

Installing grep-2.5.1-59.fc9.i386

Installing coreutils-6.10-18.fc9.i386

Installing fontconfig-2.5.0-2.fc9.i386

Installing alsa-lib-1.0.16-3.fc9.i386

Installing sqlite-3.5.6-2.fc9.i386

Installing nss-3.11.99.5-2.fc9.i386

Installing libxslt-1.1.23-3.fc9.i386

Installing libsepol-2.0.26-1.fc9.i386

Installing gawk-3.1.5-17.fc9.i386

Installing sed-4.1.5-10.fc9.i386

Installing device-mapper-libs-1.02.24-11.fc9.i386

Installing e2fsprogs-libs-1.40.8-2.fc9.i386

Installing krb5-libs-1.6.3-10.fc9.i386

Installing openssl-0.9.8g-6.fc9.i686

Installing openldap-2.4.8-3.fc9.i386

Installing mysql-libs-5.0.51a-1.fc9.i386

Installing findutils-4.2.33-3.fc9.i386

Installing libidn-0.6.14-7.i386

Installing libcurl-7.18.1-1.fc9.i386

Installing postgresql-libs-8.3.1-1.fc9.i386

Installing apr-1.2.12-2.fc9.i386

Installing esound-libs-0.2.38-7.fc9.i386

Installing diffutils-2.8.1-21.fc9.i386

Installing which-2.19-3.fc9.i386

Installing device-mapper-1.02.24-11.fc9.i386

Installing rpm-libs-4.4.2.3-2.fc9.i386

Installing module-init-tools-3.4-13.fc9.i386

Installing logrotate-3.7.6-3.fc9.i386

Installing libsndfile-1.0.17-3.fc9.i386

Installing cpio-2.9-7.fc9.i386

Installing make-3.81-12.fc9.i386

Installing apr-util-1.2.12-5.fc9.i386

Installing libdap-3.7.10-2.fc9.i386

Installing lockdev-1.0.1-12.fc9.1.i386

Installing gphoto2-2.4.0-10.fc9.i386

Installing binutils-2.18.50.0.6-2.i386

Installing m4-1.4.10-3.fc9.i386

Installing bzip2-1.0.5-1.fc9.i386

Installing libsigc++20-2.2.2-1.fc9.i386

Installing libtalloc-1.2.0-9.fc9.i386

Installing libtdb-1.1.1-9.fc9.i386

Installing libsamplerate-0.1.2-8.fc9.i386

Installing wget-1.11.1-1.fc9.i386

Installing poppler-0.8.0-3.fc9.i386

Installing libXfont-1.3.1-4.fc9.i386

Installing libutempter-1.1.5-2.fc9.i386

Installing psmisc-22.6-5.fc9.i386

Installing cdparanoia-libs-alpha9.8-30.i386

Installing pulseaudio-core-libs-0.9.10-1.fc9.i386

Installing gdb-6.8-1.fc9.i386

Installing e2fsprogs-1.40.8-2.fc9.i386

Installing raptor-1.4.16-2.fc9.i386

Installing libgssglue-0.1-5.fc9.i386

Installing php-pdo-5.2.5-7.fc9.i386

Installing php-gd-5.2.5-7.fc9.i386

Installing iptables-1.4.0-4.fc9.i386

Installing tar-1.19-3.fc9.i386

Installing net-tools-1.60-87.fc9.i386

Installing gpm-1.20.1-90.fc9.i386

Installing cracklib-2.8.12-2.i386

Installing php-mysql-5.2.5-7.fc9.i386

Installing nfs-utils-lib-1.1.1-3.fc9.i386

Installing flex-2.5.35-1.fc9.i386

Installing rsyslog-3.14.1-2.fc9.i386

Installing festival-speechtools-libs-1.2.96-4.fc9.i386

Installing ruby-libs-1.8.6.114-1.fc9.i386

Installing bind-libs-9.5.0-29.b2.fc9.i386

Installing parted-1.8.8-5.fc9.i386

Installing kpartx-0.4.7-11.fc7.i386

Installing groff-1.18.1.4-14.fc9.i386

Installing wodim-1.1.6-11.fc9.i386

Installing unixODBC-2.2.12-7.fc9.i386

Installing MAKEDEV-3.23-4.i386

Installing vim-minimal-7.1.291-1.fc9.i386

Installing sysvinit-tools-2.86-24.i386

Installing libcdio-0.79-3.fc9.i386

Installing libgomp-4.3.0-8.i386

Installing cpp-4.3.0-8.i386

Installing pinentry-0.7.4-5.fc9.i386

Installing vnc-libs-4.1.2-30.fc9.i386

Installing kakasi-2.3.4-26.fc9.i386

Installing procmail-3.22-21.fc9.i386

Installing less-418-3.fc9.i386

Installing gzip-1.3.12-6.fc9.i386

Installing bes-3.5.3-3.fc9.i386

Installing libopenraw-0.0.5-1.fc9.i386

Installing djvulibre-libs-3.5.20-2.fc9.i386

Installing libmp4v2-1.5.0.1-6.fc9.i386

Installing cdrdao-1.2.2-5.i386

Installing libicu-3.8.1-7.fc9.i386

Installing boost-1.34.1-13.fc9.i386

Installing libsmbios-2.0.1-2.fc9.1.i386

Installing file-libs-4.23-5.fc9.i386

Installing file-4.23-5.fc9.i386

Installing wavpack-4.41-2.fc9.i386

Installing fuse-libs-2.7.3-2.fc9.i386

Installing lzo-2.02-4.fc9.i386

Installing upstart-0.3.9-19.fc9.i386

Installing libsysfs-2.1.0-3.fc9.i386

Installing libnova-0.12.1-3.fc9.i386

Installing mailx-8.1.1-48.fc9.i386

Installing pcsc-lite-libs-1.4.4-3.fc9.i386

Installing netpbm-10.35.41-1.fc9.i386

Installing hyphen-2.3.1-1.fc9.i386

Installing dmidecode-2.9-1.30.1.fc9.i386

Installing libvolume_id-120-5.20080421git.fc9.i386

Installing libtasn1-1.3-1.fc9.i386

Installing gnutls-2.0.4-2.fc9.i386

Installing cups-libs-1.3.7-1.fc9.i386

Installing libggz-0.0.14.1-1.fc9.i386

Installing ggz-client-libs-0.0.14.1-1.fc9.i386

Installing cupsddk-drivers-1.2.3-4.fc9.i386

Installing iputils-20071127-2.fc9.i386

Installing smbios-utils-2.0.1-2.fc9.1.i386

Installing dap-freeform_handler-3.7.7-2.fc9.i386

Installing dap-hdf4_handler-3.7.7-3.fc9.i386

Installing dmraid-1.0.0.rc14-6.fc9.i386

Installing ruby-1.8.6.114-1.fc9.i386

Installing festival-lib-1.96-4.fc9.i386

Installing iptables-ipv6-1.4.0-4.fc9.i386

Installing php-pgsql-5.2.5-7.fc9.i386

Installing libtirpc-0.1.7-18.fc9.i386

Installing rpcbind-0.1.4-14.fc9.i386

Installing rasqal-0.9.15-1.fc9.i386

Installing redland-1.0.7-1.fc9.i386

Installing cdparanoia-alpha9.8-30.i386

Installing tmpwatch-2.9.13-2.i386

Installing libsmi-0.4.5-5.fc9.i386

Installing oprofile-0.9.3-17.fc9.i386

Installing httpd-tools-2.2.8-3.i386

Installing dirmngr-1.0.1-2.fc9.i386

Installing gnupg2-2.0.9-1.fc9.i386

Installing gpgme-1.1.6-3.fc9.i386

Installing lvm2-2.02.33-11.fc9.i386

Installing gnupg-1.4.9-1.fc9.i386

Installing php-cli-5.2.5-7.fc9.i386

Installing curl-7.18.1-1.fc9.i386

Installing php-ldap-5.2.5-7.fc9.i386

Installing distcache-1.4.5-17.i386

Installing libesmtp-1.0.4-7.fc9.i386

Installing esmtp-0.6.0-4.fc9.i386

Installing openslp-1.2.1-9.fc9.i386

Installing libwvstreams-4.4.1-4.fc9.i386

Installing cyrus-sasl-md5-2.1.22-13.fc9.i386

Installing cryptsetup-luks-1.0.6-2.fc9.i386

Installing rmt-0.4b41-7.1.fc9.i386

Installing checkpolicy-2.0.14-1.fc9.i386

Installing php-xml-5.2.5-7.fc9.i386

Installing nss_compat_ossl-0.9.2-4.fc9.i386

Installing nss-tools-3.11.99.5-2.fc9.i386

Installing audit-1.7.2-6.fc9.i386

Installing nscd-2.8-3.i386

Installing guile-1.8.4-1.fc9.i386

Installing bc-1.06-33.fc9.i386

Installing lua-5.1.3-4.fc9.i386

Installing ttmkfdir-3.0.9-26.fc9.i386

Installing ed-0.8-2.fc9.i386

Installing time-1.7-33.fc9.i386

Installing texinfo-4.11-5.fc9.i386

Installing indent-2.2.10-1.fc9.i386

Installing fftw-3.1.2-6.fc9.i386

Installing libofa-0.9.3-13.fc9.i386

Installing libtunepimp-0.5.3-11.fc9.i386

Installing libfreebob-1.0.7-4.fc9.i386

Installing jack-audio-connection-kit-0.109.2-1.fc9.1.i386

Installing unzip-5.52-9.fc9.i386

Installing elfutils-0.133-3.fc9.i386

Installing libifp-1.0.0.2-7.fc9.i386

Installing urlview-0.9-4.fc9.i386

Installing vim-common-7.1.291-1.fc9.i386

Installing libshout-2.2.2-3.fc9.i386

Installing jasper-1.900.1-8.fc9.i386

Installing php-mbstring-5.2.5-7.fc9.i386

Installing tcp_wrappers-7.6-52.fc9.i386

Installing libwiimote-0.4-6.fc9.i386

Installing cyrus-sasl-plain-2.1.22-13.fc9.i386

Installing acl-2.2.47-1.fc9.i386

Installing rsync-3.0.2-0.fc9.i386

Installing libvncserver-0.9.1-2.fc9.i386

Installing netcdf-3.6.2-7.fc9.i386

Installing dap-netcdf_handler-3.7.8-3.fc9.i386

Installing gc-7.0-7.fc9.i386

Installing libconfig-1.2.1-2.fc9.i386

Installing db4-cxx-4.6.21-5.fc9.i386

Installing libmodplug-0.8.4-3.fc9.i386

Installing radeontool-1.5-3.fc9.i386

Installing libzip-0.8-5.fc9.i386

Installing GeoIP-1.4.4-2.fc9.i386

Installing hdparm-8.6-1.fc9.i386

Installing wireless-tools-29-2.fc9.i386

Installing lrzsz-0.12.20-23.fc9.i386

Installing gnuchess-5.07-11.fc9.i386

Installing ctags-5.7-1.fc9.i386

Installing pax-3.4-5.fc9.i386

Installing vbetool-0.7-6.fc9.i386

Installing gsm-1.0.12-6.fc9.i386

Installing sox-14.0.1-1.fc9.i386

Installing libdv-1.0.0-4.fc9.i386

Installing libevent-1.3e-2.fc9.i386

Installing inchi-1.0.2-0.3.fc9.i386

Installing openbabel-2.2.0-0.1.b3.fc9.i386

Installing inotify-tools-3.13-1.fc9.i386

Installing libiptcdata-1.0.2-2.fc9.i386

Installing SDL-1.2.13-3.fc9.i386

Installing libgfortran-4.3.0-8.i386

Installing namazu-libs-2.0.18-1.fc9.i386

Installing cfitsio-3.060-3.fc9.i386

Installing inews-2.4.3-12.fc9.i386

Installing linux-atm-libs-2.5.0-5.i386

Installing iproute-2.6.23-4.fc9.i386

Installing ethtool-6-1.fc9.i386

Installing mingetty-1.08-2.fc9.i386

Installing libdvdread-4.1.1-6.fc9.i386

Installing pakchois-0.4-1.i386

Installing neon-0.28.2-2.i386

Installing libunwind-0.99-0.5.frysk20070405cvs.fc9.i386

Installing libtextcat-2.2-5.fc9.i386

Installing libthai-0.1.9-4.fc9.i386

Installing libdaemon-0.12-3.fc9.i386

Installing kakasi-libs-2.3.4-26.fc9.i386

Installing libvisual-0.4.0-6.fc9.i386

Installing paps-libs-0.6.8-5.fc9.i386

Installing ustr-1.0.4-6.fc9.i386

Installing libnfnetlink-0.0.33-0.1.svn7211.fc9.i386

Installing libnetfilter_conntrack-0.0.89-0.1.svn7356.fc9.i386

Installing chmlib-0.39-7.fc9.i386

Installing sg3_utils-libs-1.25-4.fc9.i386

Installing iptstate-2.2.1-3.fc9.i386

Installing cadaver-0.23.2-4.i386

Installing minicom-2.3-2.fc9.i386

Installing ntfsprogs-2.0.0-7.fc9.i386

Installing slrn-0.9.8.1pl1-8.20070716cvs.fc9.i386

Installing dump-0.4b41-7.1.fc9.i386

Installing device-mapper-multipath-0.4.7-11.fc7.i386

Installing qdbm-1.8.77-3.fc9.i386

Installing mysql-connector-odbc-3.51.24r1071-1.fc9.i386

Installing php-odbc-5.2.5-7.fc9.i386

Installing bind-utils-9.5.0-29.b2.fc9.i386

Installing bind-9.5.0-29.b2.fc9.i386

Installing bison-2.3-5.fc9.i386

Installing nss_db-2.2-40.fc9.i386

Installing tomcat-native-1.1.13-1.fc9.i386

Installing elinks-0.11.4-0.4.rc1.fc9.i386

Installing jwhois-4.0-7.fc9.i386

Installing openldap-clients-2.4.8-3.fc9.i386

Installing tcpdump-3.9.8-4.fc9.i386

Installing nmap-4.53-1.fc9.i386

Installing krb5-workstation-1.6.3-10.fc9.i386

Installing xfsprogs-2.9.7-1.fc9.i386

Installing reiserfs-utils-3.6.19-3.4.1.i386

Installing jfsutils-1.1.12-2.i386

Installing mlocate-0.20-1.i386

Installing alsa-utils-1.0.16-2.fc9.i386

Installing bluez-utils-alsa-3.30-2.fc9.i386

Installing psacct-6.3.2-50.fc9.i386

Installing icedax-1.1.6-11.fc9.i386

Installing ccache-2.4-13.fc9.i386

Installing zsh-4.3.4-7.fc9.i386

Installing tcsh-6.15-4.fc9.i386

Installing ftp-0.17-47.fc9.i386

Installing apachetop-0.12.6-4.fc9.i386

Installing lsof-4.78-8.fc9.i386

Installing joe-3.5-5.fc9.i386

Installing nano-2.0.6-4.fc9.i386

Installing mtools-3.9.11-4.fc9.i386

Installing acpid-1.0.6-7.fc9.i386

Installing cpuspeed-1.2.1-5.fc9.i386

Installing cscope-15.6-1.fc9.i386

Installing iscsi-initiator-utils-6.2.0.868-0.7.fc9.i386

Installing ntsysv-1.3.37-2.i386

Installing php-pecl-apc-3.0.14-3.fc9.i386

Installing ltrace-0.5-10.45svn.fc9.i386

Installing attr-2.4.41-1.fc9.i386

Installing doxygen-1.5.5-3.fc9.i386

Installing telnet-0.17-42.fc9.i386

Installing mtr-0.72-4.fc9.i386

Installing talk-0.17-30.2.4.i386

Installing ntfs-3g-1.2506-1.fc9.i386

Installing swig-1.3.33-2.fc9.i386

Installing efibootmgr-0.5.4-4.fc9.i386

Installing squashfs-tools-3.3-2.i386

Installing zisofs-tools-1.0.8-3.fc9.i386

Installing setserial-2.17-22.fc9.i386

Installing traceroute-2.0.10-1.fc9.i386

Installing vconfig-1.9-6.fc9.i386

Installing dosfstools-2.11-9.fc9.i386

Installing finger-0.17-36.fc9.i386

Installing rdate-1.4-11.fc9.i386

Installing symlinks-1.2-31.fc9.i386

Installing pam_smb-1.1.7-8.2.2.i386

Installing rsh-0.17-49.fc9.i386

Installing unix2dos-2.2-30.fc9.i386

Installing tree-1.5.0-9.fc9.i386

Installing rdist-6.1.5-45.i386

Installing dos2unix-3.1-31.fc9.i386

Installing bcm43xx-fwcutter-006-4.fc9.i386

Installing b43-fwcutter-011-3.fc9.i386

Installing joystick-1.2.15-21.fc9.i386

Installing mpage-2.5.6-2.fc9.i386

Installing strace-4.5.16-5.fc9.i386

Installing diffstat-1.43-7.fc9.i386

Installing byacc-1.9.20070509-2.fc9.i386

Installing rcs-5.7-32.i386

Installing rhdb-utils-8.3.0-1.fc9.i386

Installing bridge-utils-1.2-4.fc9.i386

Installing jpackage-utils-1.7.5-1jpp.1.fc9.noarch

Installing xorg-x11-filesystem-7.3-1.fc9.noarch

Installing hwdata-0.217-1.fc9.noarch

Installing plexus-utils-1.2-2jpp.1.fc7.noarch

Installing hicolor-icon-theme-0.10-4.noarch

Installing zlib-devel-1.2.3-18.fc9.i386

Installing fedora-logos-9.0.0-2.fc9.noarch

Installing sgml-common-0.6.3-23.fc9.noarch

Installing freetype-devel-2.3.5-4.fc9.i386

Installing libpng-devel-1.2.24-1.fc9.i386

Installing fontconfig-devel-2.5.0-2.fc9.i386

Installing libart_lgpl-devel-2.3.20-1.fc9.i386

Installing oxygen-icon-theme-4.0.3-10.fc9.noarch

Installing libjpeg-devel-6b-41.fc9.i386

Installing urw-fonts-2.4-5.fc9.noarch

Installing crontabs-1.10-19.fc9.noarch

Installing popt-devel-1.13-3.fc9.i386

Installing alsa-lib-devel-1.0.16-3.fc9.i386

Installing jline-0.9.94-0jpp.1.fc9.noarch

Installing nspr-devel-4.7.0.99.2-2.fc9.i386

Installing nss-devel-3.11.99.5-2.fc9.i386

Installing ctapi-common-1.1-4.fc9.i386

Installing fedora-release-notes-9.0.0-1.noarch

Installing fedora-release-9-2.noarch

Installing libdbi-drivers-0.8.3-1.fc9.i386

Installing hunspell-en-0.20080207-1.fc9.noarch

Installing gnome-doc-utils-stylesheets-0.12.2-1.fc9.noarch

Installing bluecurve-icon-theme-8.0.2-1.fc9.noarch

Installing libfontenc-devel-1.0.4-5.fc9.i386

Installing maven2-common-poms-1.0-4jpp.2.fc7.noarch

Installing jakarta-commons-io-1.3.2-1jpp.1.fc9.noarch

Installing hyphen-en-2.3.1-1.fc9.i386

Installing cracklib-dicts-2.8.12-2.i386

Installing device-mapper-devel-1.02.24-11.fc9.i386

Installing e2fsprogs-devel-1.40.8-2.fc9.i386

Installing libidn-devel-0.6.14-7.i386

Installing libsilc-1.1.7-1.fc9.i386

Installing libsepol-devel-2.0.26-1.fc9.i386

Installing libselinux-devel-2.0.61-1.fc9.i386

Installing sqlite-devel-3.5.6-2.fc9.i386

Installing liberation-fonts-1.0-4.fc9.noarch

Installing dejavu-fonts-2.24-3.fc9.noarch

Installing ncurses-devel-5.6-16.20080301.fc9.i386

Installing readline-devel-5.2-13.fc9.i386

Installing sazanami-fonts-gothic-0.20040629-4.20061016.fc8.noarch

Installing sazanami-fonts-mincho-0.20040629-4.20061016.fc8.noarch

Installing pygtk2-codegen-2.12.1-6.fc9.i386

Installing tcllib-1.10-2.fc9.noarch

Installing glibc-headers-2.8-3.i386

Installing glibc-devel-2.8-3.i386

Installing audiofile-devel-0.2.6-8.fc9.i386

Installing libgpg-error-devel-1.6-2.i386

Installing slang-devel-2.1.3-3.fc9.i386

Installing pixman-devel-0.10.0-1.fc9.i386

Installing keyutils-libs-devel-1.2-3.fc9.i386

Installing libxcb-devel-1.1-4.fc9.i386

Installing elfutils-libelf-devel-0.133-3.fc9.i386

Installing libattr-devel-2.4.41-1.fc9.i386

Installing libacl-devel-2.2.47-1.fc9.i386

Installing bzip2-devel-1.0.5-1.fc9.i386

Installing gnome-mime-data-2.18.0-2.fc7.noarch

Installing libstdc++-devel-4.3.0-8.i386

Installing newt-devel-0.52.9-1.fc9.i386

Installing fonts-japanese-0.20061016-12.fc8.noarch

Installing dejavu-fonts-experimental-2.24-3.fc9.noarch

Installing xhtml1-dtds-1.0-20020801.1.noarch

Installing grub-0.97-33.fc9.i386

Installing xorg-x11-xtrans-devel-1.1-2.fc9.i386

Installing db4-devel-4.6.21-5.fc9.i386

Installing netpbm-devel-10.35.41-1.fc9.i386

Installing pcsc-lite-devel-1.4.4-3.fc9.i386

Installing boost-devel-1.34.1-13.fc9.i386

Installing gpm-devel-1.20.1-90.fc9.i386

Installing lockdev-devel-1.0.1-12.fc9.1.i386

Installing sysreport-1.4.4-1.noarch

Installing bitmap-fonts-0.3-5.2.fc9.noarch

Installing nafees-web-naskh-fonts-1.0-1.fc8.noarch

Installing wqy-bitmap-fonts-0.9.9-4.fc9.noarch

Installing bind-chroot-9.5.0-29.b2.fc9.i386

Installing gmp-devel-4.2.2-7.fc9.i386

Installing gdbm-devel-1.8.0-28.fc9.i386

Installing binutils-devel-2.18.50.0.6-2.i386

Installing paktype-fonts-2.0-2.fc8.noarch

Installing lohit-fonts-bengali-2.2.1-2.fc9.noarch

Installing jomolhari-fonts-0.003-4.fc8.noarch

Installing lohit-fonts-tamil-2.2.1-2.fc9.noarch

Installing lklug-fonts-0.2.2-5.fc8.noarch

Installing kacst-fonts-1.6.2-2.fc8.noarch

Installing lohit-fonts-malayalam-2.2.1-2.fc9.noarch

Installing cjkunifonts-uming-0.1.20060928-4.fc8.noarch

Installing VLGothic-fonts-20071215-2.fc9.noarch

Installing abyssinica-fonts-1.0-2.fc8.noarch

Installing baekmuk-ttf-fonts-gulim-2.2-7.fc9.noarch

Installing lohit-fonts-punjabi-2.2.1-2.fc9.noarch

Installing thaifonts-scalable-0.4.9-3.fc9.noarch

Installing lohit-fonts-kannada-2.2.1-2.fc9.noarch

Installing lohit-fonts-hindi-2.2.1-2.fc9.noarch

Installing lohit-fonts-gujarati-2.2.1-2.fc9.noarch

Installing lohit-fonts-telugu-2.2.1-2.fc9.noarch

Installing lohit-fonts-oriya-2.2.1-2.fc9.noarch

Installing memtest86+-2.01-3.fc9.i386

Installing baekmuk-ttf-fonts-batang-2.2-7.fc9.noarch

Installing samyak-fonts-malayalam-1.2.0-2.fc9.noarch

Installing smc-fonts-rachana-04-6.fc9.noarch

Installing smc-fonts-suruma-04-6.fc9.noarch

Installing VLGothic-fonts-proportional-20071215-2.fc9.noarch

Installing baekmuk-ttf-fonts-dotum-2.2-7.fc9.noarch

Installing tibetan-machine-uni-fonts-1.901-1.fc9.noarch

Installing smc-fonts-raghumalayalam-04-6.fc9.noarch

Installing sarai-fonts-1.0-4.fc9.noarch

Installing samyak-fonts-gujarati-1.2.0-2.fc9.noarch

Installing baekmuk-ttf-fonts-hline-2.2-7.fc9.noarch

Installing cjkunifonts-ukai-0.1.20060928-4.fc8.noarch

Installing smc-fonts-meera-04-6.fc9.noarch

Installing samyak-fonts-oriya-1.2.0-2.fc9.noarch

Installing samyak-fonts-devanagari-1.2.0-2.fc9.noarch

Installing samyak-fonts-tamil-1.2.0-2.fc9.noarch

Installing smc-fonts-dyuthi-04-6.fc9.noarch

Installing madan-fonts-1.0-6.fc8.noarch

Installing culmus-fonts-0.101-4.fc8.noarch

Installing baekmuk-bdf-fonts-2.2-5.fc9.noarch

Installing taipeifonts-1.2-5.fc9.noarch

Installing hesiod-devel-3.1.0-10.i386

Installing libdrm-devel-2.4.0-0.11.fc9.i386

Installing libtiff-devel-3.8.2-10.fc9.i386

Installing libcap-devel-2.06-4.fc9.i386

Installing expat-devel-2.0.1-5.i386

Installing libX11-1.1.4-1.fc9.i386

Installing libXext-1.0.4-1.fc9.i386

Installing libXrender-0.9.4-3.fc9.i386

Installing cairo-1.6.4-1.fc9.i386

Installing pam-1.0.1-2.fc9.i386

Installing libXft-2.1.12-5.fc9.i386

Installing libXfixes-4.0.3-3.fc9.i386

Installing libXtst-1.0.3-3.fc9.i386

Installing libXcursor-1.1.9-2.fc9.i386

Installing libXpm-3.5.7-4.fc9.i386

Installing libXt-1.0.4-5.fc9.i386

Installing libXrandr-1.2.2-3.fc9.i386

Installing startup-notification-0.9-4.fc9.i386

Installing libXinerama-1.0.3-1.fc9.i386

Installing libXi-1.1.3-4.fc9.i386

Installing giflib-4.1.3-9.i386

Installing libXmu-1.0.4-1.fc9.i386

Installing libXxf86vm-1.0.1-5.fc9.i386

Installing rpm-4.4.2.3-2.fc9.i386

Installing libXdamage-1.1.1-4.fc9.i386

Installing mesa-libGL-7.1-0.29.fc9.i386

Installing mesa-libGLU-7.1-0.29.fc9.i386

Installing libXcomposite-0.4.0-4.fc9.i386

Installing libXScrnSaver-1.1.2-4.fc9.i386

Installing libXaw-1.0.4-2.fc9.i386

Installing pulseaudio-libs-0.9.10-1.fc9.i386

Installing gcc-4.3.0-8.i386

Installing xorg-x11-font-utils-7.2-4.fc9.i386

Installing libXxf86misc-1.0.1-5.fc9.i386

Installing libXv-1.0.3-5.fc9.i386

Installing ppp-2.4.4-6.fc9.i386

Installing cairomm-1.5.0-1.fc9.i386

Installing libXres-1.0.3-4.fc9.i386

Installing libxkbfile-1.0.4-5.fc9.i386

Installing nas-libs-1.9.1-4.fc9.i386

Installing libXevie-1.0.2-3.fc9.i386

Installing tk-8.5.1-3.fc9.i386

Installing pciutils-2.2.10-1.fc9.i386

Installing xorg-x11-xkb-utils-7.2-4.fc9.i386

Installing libXvMC-1.0.4-4.fc9.i386

Installing gcc-c++-4.3.0-8.i386

Installing xorg-x11-xauth-1.0.2-4.fc9.i386

Installing libXTrap-1.0.0-5.fc9.i386

Installing gnokii-0.6.24-1.fc9.i386

Installing gd-2.0.35-5.fc9.i386

Installing libXfontcache-1.0.4-5.fc9.i386

Installing xorg-x11-server-utils-7.3-3.fc9.i386

Installing libdmx-1.0.2-5.fc9.i386

Installing libXxf86dga-1.0.2-2.fc9.i386

Installing libgcrypt-devel-1.4.0-3.i386

Installing lynx-2.8.6-13.fc9.i386

Installing xorg-x11-utils-7.3-3.fc9.i386

Installing tclx-8.4.0-10.fc9.i386

Installing tix-8.4.2-5.fc9.i386

Installing xorg-x11-apps-7.3-3.fc9.i386

Installing freeglut-2.4.0-14.fc9.i386

Installing man-1.6f-4.fc9.i386

Installing Xaw3d-1.5E-11.1.i386

Installing at-3.1.10-23.fc9.i386

Installing cronie-1.0-5.fc9.i386

Installing sudo-1.6.9p13-4.fc9.i386

Installing rdesktop-1.5.0-5.fc9.i386

Installing krb5-devel-1.6.3-10.fc9.i386

Installing ctapi-cyberjack-3.0.5-2.fc9.i386

Installing opensp-1.5.2-7.fc9.i386

Installing openjade-1.3.2-31.fc9.i386

Installing lighttpd-1.4.19-2.fc9.i386

Installing libpciaccess-0.10-2.fc9.i386

Installing lighttpd-fastcgi-1.4.19-2.fc9.i386

Installing xrestop-0.4-4.fc9.i386

Installing wvdial-1.60-5.fc9.i386

Installing gcc-gfortran-4.3.0-8.i386

Installing pulseaudio-utils-0.9.10-1.fc9.i386

Installing libflashsupport-000-0.5.svn20070904.i386

Installing xterm-234-1.fc9.i386

Installing glx-utils-7.1-0.29.fc9.i386

Installing rpm-devel-4.4.2.3-2.fc9.i386

Installing xorg-x11-twm-1.0.3-2.fc9.i386

Installing nss_ldap-259-3.fc9.i386

Installing pam_pkcs11-0.5.3-26.i386

Installing pam_ccreds-7-2.fc9.i386

Installing pam_krb5-2.3.0-1.i386

Installing pam_passwdqc-1.0.4-5.i386

Installing vsftpd-2.0.6-3.fc9.i386

Installing screen-4.0.3-11.fc9.i386

Installing mozplugger-1.10.1-1.i386

Installing libdbi-dbd-pgsql-0.8.3-1.fc9.i386

Installing thttpd-2.25b-16.fc9.i386

Installing boa-0.94.14-0.10.rc21.fc9.i386

Installing usbutils-0.73-2.fc9.i386

Installing kde-filesystem-4-14.fc9.noarch

Installing openssl-devel-0.9.8g-6.fc9.i386

Installing ghostscript-fonts-5.50-18.fc8.noarch

Installing gnutls-devel-2.0.4-2.fc9.i386

Installing libxkbfile-devel-1.0.4-5.fc9.i386

Installing xorg-x11-fonts-ISO8859-1-100dpi-7.2-6.fc9.noarch

Installing pciutils-devel-2.2.10-1.fc9.i386

Installing xorg-x11-fonts-misc-7.2-6.fc9.noarch

Installing xorg-x11-fonts-100dpi-7.2-6.fc9.noarch

Installing xorg-x11-fonts-Type1-7.2-6.fc9.noarch

Installing xorg-x11-fonts-ISO8859-9-100dpi-7.2-6.fc9.noarch

Installing giflib-devel-4.1.3-9.i386

Installing pam-devel-1.0.1-2.fc9.i386

Installing mesa-libGL-devel-7.1-0.29.fc9.i386

Installing mesa-libGLU-devel-7.1-0.29.fc9.i386

Installing perl-Pod-Escapes-1.04-20.fc9.i386

Installing festvox-slt-arctic-hts-0.20061229-4.fc9.i386

Installing libXdmcp-devel-1.0.2-5.fc9.i386

Installing glib2-2.16.3-5.fc9.i386

Installing pango-1.20.1-1.fc9.i386

Installing atk-1.22.0-1.fc9.i386

Installing gtk2-2.12.9-5.fc9.i386

Installing libgcj-4.3.0-8.i386

Installing python-2.5.1-25.fc9.i386

Installing dbus-libs-1.2.1-1.fc9.i386

Installing dbus-glib-0.74-6.fc9.i386

Installing libglade2-2.6.2-5.fc9.i386

Installing qt-4.3.4-11.fc9.i386

Installing gamin-0.1.9-5.fc9.i386

Installing desktop-file-utils-0.15-1.fc9.i386

Installing strigi-libs-0.5.8-2.fc9.i386

Installing dbus-1.2.1-1.fc9.i386

Installing python-libs-2.5.1-25.fc9.i386

Installing hal-libs-0.5.11-0.7.rc2.fc9.i386

Installing java-1.6.0-openjdk-1.6.0.0-0.10.b09.fc9.i386

Installing lcms-libs-1.17-4.fc9.i386

Installing rhpl-0.215-3.i386

Installing PolicyKit-0.8-2.fc9.i386

Installing shared-mime-info-0.23-9.fc9.i386

Installing libmng-1.0.9-6.1.i386

Installing qt3-3.3.8b-12.fc9.i386

Installing libwnck-2.22.1-1.fc9.i386

Installing dbus-x11-1.2.1-1.fc9.i386

Installing dbus-python-0.82.4-2.fc9.i386

Installing nautilus-extensions-2.22.2-7.fc9.i386

Installing libsoup-2.4.1-1.fc9.i386

Installing rpm-python-4.4.2.3-2.fc9.i386

Installing libxklavier-3.5-1.fc9.i386

Installing enchant-1.3.0-4.fc9.i386

Installing pulseaudio-0.9.10-1.fc9.i386

Installing PolicyKit-gnome-libs-0.8-4.fc9.i386

Installing libxml2-python-2.6.32-1.fc9.i386

Installing pygobject2-2.14.1-2.fc9.i386

Installing libIDL-0.8.10-2.fc9.i386

Installing ORBit2-2.14.12-3.fc9.i386

Installing GConf2-2.22.0-1.fc9.i386

Installing gnome-keyring-2.22.1-1.fc9.i386

Installing metacity-2.22.0-3.fc9.i386

Installing libgtop2-2.22.1-1.fc9.i386

Installing festival-1.96-4.fc9.i386

Installing libgnomekbd-2.22.0-2.fc9.i386

Installing arts-1.5.9-2.fc9.i386

Installing xine-lib-1.1.12-2.fc9.i386

Installing qca2-2.0.0-2.fc9.i386

Installing soprano-2.0.3-2.fc9.i386

Installing libuser-0.56.9-1.i386

Installing glibmm24-2.16.0-1.fc9.i386

Installing gtkmm24-2.12.5-1.fc9.i386

Installing libuser-python-0.56.9-1.i386

Installing notification-daemon-0.3.7-9.fc9.i386

Installing libnotify-0.4.4-10.fc9.i386

Installing libgsf-1.14.8-1.fc9.i386

Installing gtkspell-2.0.11-8.fc9.i386

Installing liby-0.1.11-7.fc9.i386

Installing ConsoleKit-libs-0.2.10-3.fc9.i386

Installing util-linux-ng-2.13.1-6.fc9.i386

Installing initscripts-8.76-1.i386

Installing httpd-2.2.8-3.i386

Installing udev-120-5.20080421git.fc9.i386

Installing avahi-0.6.22-10.fc9.i386

Installing avahi-glib-0.6.22-10.fc9.i386

Installing php-5.2.5-7.fc9.i386

Installing cyrus-sasl-2.1.22-13.fc9.i386

Installing openssh-5.0p1-1.fc9.i386

Installing ConsoleKit-0.2.10-3.fc9.i386

Installing gettext-0.17-4.fc9.i386

Installing newt-python-0.52.9-1.fc9.i386

Installing pyxf86config-0.3.37-1.fc9.i386

Installing libgpod-0.6.0-4.fc9.i386

Installing vte-0.16.13-1.fc9.i386

Installing rarian-0.8.0-1.fc9.i386

Installing rarian-compat-0.8.0-1.fc9.i386

Installing passwd-0.75-2.fc9.i386

Installing usermode-1.96.1-1.i386

Installing usermode-gtk-1.96.1-1.i386

Installing gnome-keyring-pam-2.22.1-1.fc9.i386

Installing dcraw-8.82-1.fc9.i386

Installing java-1.6.0-openjdk-devel-1.6.0.0-0.10.b09.fc9.i386

Installing gpsd-2.37-2.fc9.i386

Installing yum-metadata-parser-1.1.2-8.fc9.i386

Installing python-imaging-1.1.6-9.fc9.i386

Installing python-crypto-2.0.1-12.1.i386

Installing libsemanage-2.0.25-1.fc9.i386

Installing audit-libs-python-1.7.2-6.fc9.i386

Installing python-numeric-24.2-10.fc9.i386

Installing obex-data-server-0.3.1-1.fc9.i386

Installing imsettings-libs-0.99.6-3.fc9.i386

Installing dbus-qt-0.70-4.fc9.i386

Installing libbtctl-0.10.0-2.fc9.i386

Installing mx-2.0.6-3.i386

Installing libselinux-python-2.0.61-1.fc9.i386

Installing policycoreutils-2.0.46-5.fc9.i386

Installing sip-4.7.4-3.fc9.i386

Installing pycairo-1.4.12-2.fc9.i386

Installing pygtk2-2.12.1-6.fc9.i386

Installing pygtk2-libglade-2.12.1-6.fc9.i386

Installing xmlrpc3-common-3.0-2jpp.5.fc9.i386

Installing jakarta-commons-pool-tomcat5-1.3-10jpp.3.fc9.i386

Installing msv-xsdlib-1.2-0.2.20050722.3jpp.3.fc9.i386

Installing gimp-libs-2.4.5-1.fc9.i386

Installing gtksourceview2-2.2.1-1.fc9.i386

Installing scim-libs-1.4.7-23.fc9.i386

Installing gtk-nodoka-engine-0.7.0-1.fc9.i386

Installing libmalaga-7.12-1.fc9.i386

Installing libcroco-0.6.1-5.fc9.i386

Installing librsvg2-2.22.2-1.fc9.i386

Installing libgdiplus-1.9-4.fc9.i386

Installing lcms-1.17-4.fc9.i386

Installing xorg-x11-drv-evdev-1.99.1-0.5.fc9.i386

Installing pygtksourceview-2.2.0-1.fc9.i386

Installing xmlrpc3-client-3.0-2jpp.5.fc9.i386

Installing authconfig-5.4.2-1.fc9.i386

Installing setuptool-1.19.4-2.fc9.i386

Installing gucharmap-2.22.1-1.fc9.i386

Installing ConsoleKit-x11-0.2.10-3.fc9.i386

Installing xorg-x11-xinit-1.0.7-6.fc9.i386

Installing xdg-user-dirs-0.10-1.fc9.i386

Installing imsettings-0.99.6-3.fc9.i386

/var/tmp/rpm-tmp.7033: line 4: 2500 Aborted imsettings-reload -f > /dev/null 2>&1

Installing xorg-x11-xdm-1.1.6-3.fc9.i386

Installing sendmail-8.14.2-4.fc9.i386

Installing cyrus-sasl-devel-2.1.22-13.fc9.i386

Installing avahi-compat-libdns_sd-0.6.22-10.fc9.i386

Installing avahi-qt3-0.6.22-10.fc9.i386

Installing openvpn-2.1-0.25.rc7.fc9.i386

Installing libnjb-2.2.6-3.fc9.i386

Installing kbd-1.12-31.fc9.i386

Installing dhclient-4.0.0-14.fc9.i386

Installing mdadm-2.6.4-4.fc9.i386

Installing smartmontools-5.38-2.fc9.i386

Installing postgresql-8.3.1-1.fc9.i386

Installing nfs-utils-1.1.2-2.fc9.i386

Installing fakeroot-1.6.4-16.fc9.i386

Installing python-y-0.1.9-5.fc9.i386

Installing libwpd-0.8.14-1.fc9.i386

Installing notify-python-0.1.1-3.fc9.i386

Installing libglademm24-2.6.6-1.fc9.i386

Installing qca-ossl-2.0.0-0.4.beta3.fc9.i386

Installing xine-lib-pulseaudio-1.1.12-2.fc9.i386

Installing GConf2-gtk-2.22.0-1.fc9.i386

Installing pyorbit-2.14.3-2.fc9.i386

Installing libxslt-python-1.1.23-3.fc9.i386

Installing pulseaudio-module-x11-0.9.10-1.fc9.i386

Installing alsa-plugins-pulseaudio-1.0.16-4.fc9.i386

Installing pinentry-qt-0.7.4-5.fc9.i386

Installing jss-4.2.5-2.fc9.i386

Installing pygpgme-0.1-8.fc9.i386

Installing gamin-python-0.1.9-5.fc9.i386

Installing ypbind-1.20.4-4.fc9.i386

Installing wpa_supplicant-0.6.3-5.fc9.i386

Installing tkinter-2.5.1-25.fc9.i386

Installing wireshark-1.0.0-2.fc9.i386

Installing alchemist-1.0.37-4.fc9.i386

Installing kudzu-1.2.85-1.i386

Installing isomd5sum-1.0.4-1.i386

Installing libopensync-0.36-2.fc9.i386

Installing icu4j-eclipse-3.6.1-2jpp.6.fc9.i386

Installing gtk2-engines-2.14.1-1.fc9.i386

Installing poppler-glib-0.8.0-3.fc9.i386

Installing libopenraw-gnome-0.0.5-1.fc9.i386

Installing libwmf-0.2.8.4-18.fc9.i386

Installing gtkglext-libs-1.2.0-6.fc9.i386

Installing paps-0.6.8-5.fc9.i386

Installing libbeagle-0.3.5-1.fc9.i386

Installing nash-6.0.52-2.fc9.i386

Installing mkinitrd-6.0.52-2.fc9.i386

Installing kernel-2.6.25-14.fc9.i686

Installing vpnc-0.5.1-5.fc9.i386

Installing fuse-2.7.3-2.fc9.i386

Installing systemtap-runtime-0.6.2-1.fc9.i386

Installing pulseaudio-libs-glib2-0.9.10-1.fc9.i386

Installing gmime-2.2.18-1.fc9.i386

Installing gstreamer-tools-0.10.19-1.fc9.i386

Installing gstreamer-0.10.19-1.fc9.i386

Installing meanwhile-1.0.2-6.fc9.i386

Installing xdg-utils-1.0.2-4.fc9.noarch

Installing libxml2-devel-2.6.32-1.fc9.i386

Installing gnome-icon-theme-2.22.0-6.fc9.noarch

Installing redhat-menus-8.9.11-3.fc9.noarch

Installing gnome-themes-2.22.0-1.fc9.noarch

Installing texlive-texmf-2007-22.fc9.noarch

No such file or directory

Installing kde-settings-4.0-22.fc9.1.noarch

Installing nodoka-metacity-theme-0.3.90-1.fc9.noarch

Installing dbus-devel-1.2.1-1.fc9.i386

Installing texlive-texmf-dvips-2007-22.fc9.noarch

No such file or directory

Installing fedora-icon-theme-1.0.0-1.fc8.noarch

Installing system-config-network-tui-1.5.7-1.fc9.noarch

Installing python-devel-2.5.1-25.fc9.i386

Installing python-urlgrabber-3.0.0-6.fc9.noarch

Installing sip-devel-4.7.4-3.fc9.i386

Installing system-config-firewall-tui-1.2.7-1.fc9.noarch

Installing nodoka-theme-gnome-0.3.90-1.fc9.noarch

Installing fedora-gnome-theme-8.0.0-1.fc8.noarch

Installing texlive-texmf-fonts-2007-22.fc9.noarch

No such file or directory

Installing libxslt-devel-1.1.23-3.fc9.i386

Installing system-config-users-1.2.79-1.fc9.noarch

Installing crystalsvg-icon-theme-4.0.3-3.fc9.i386

Installing libgdiplus-devel-1.9-4.fc9.i386

Installing malaga-suomi-voikko-1.0-1.fc9.i386

Installing selinux-policy-3.3.1-42.fc9.noarch

Installing avahi-devel-0.6.22-10.fc9.i386

Installing rpmlint-0.82-3.fc9.noarch

Installing libmng-devel-1.0.9-6.1.i386

Installing qdox-1.5-2jpp.2.fc9.noarch

Installing strigi-devel-0.5.8-2.fc9.i386

Installing gamin-devel-0.1.9-5.fc9.i386

Installing spambayes-1.0.4-5.fc8.noarch

Installing moin-1.6.3-1.fc9.noarch

Installing python-iniparse-0.2.3-3.fc9.noarch

Installing yum-3.2.14-10.fc9.noarch

Installing python-reportlab-2.1-2.fc9.noarch

Installing pyxdg-0.15-6.fc9.noarch

Installing python-genshi-0.4.4-2.fc8.noarch

Installing python-paste-1.6-1.fc9.noarch

Installing smolt-1.1.1.1-4.fc9.noarch

Installing python-setuptools-0.6c7-2.fc8.noarch

Installing PyOpenGL-3.0.0-0.5.b1.fc9.noarch

Installing libgcj-devel-4.3.0-8.i386

Installing libao-0.8.8-4.fc9.i386

Installing gnome-menus-2.22.1-1.fc9.i386

Installing pygtkglext-1.1.0-4.fc9.i386

Installing libvoikko-1.6-3.fc9.i386

Installing vorbis-tools-1.2.0-1.fc9.i386

Installing pinfo-0.6.9-7.fc9.i386

Installing wireshark-gnome-1.0.0-2.fc9.i386

Installing pavucontrol-0.9.6-1.fc9.i386

Installing systemtap-0.6.2-1.fc9.i386

Installing pcmciautils-014-12.fc9.i386

Installing yp-tools-2.9-3.i386

Installing postgresql-server-8.3.1-1.fc9.i386

Installing xdg-user-dirs-gtk-0.7-1.fc9.i386

Installing postgresql-python-8.3.1-1.fc9.i386

Installing gnome-user-share-0.31-1.fc9.i386

Installing gcalctool-5.22.1-2.fc9.i386

Installing rhgb-9.0.0-6.fc9.i386

Installing openssh-clients-5.0p1-1.fc9.i386

Installing openssh-server-5.0p1-1.fc9.i386

Installing openssh-askpass-5.0p1-1.fc9.i386

Installing openct-0.6.14-4.fc9.i386

Installing mod_auth_mysql-3.0.0-6.i386

Installing mod_python-3.3.1-7.i386

Installing mod_ssl-2.2.8-3.i386

Installing webalizer-2.01_10-36.i386

Installing mod_auth_kerb-5.3-7.i386

Installing mod_fcgid-2.2-4.fc9.i386

Installing mod_cband-0.9.7.5-2.fc9.i386

Installing mod_security-2.1.6-1.fc9.i386

Installing mod_auth_pgsql-2.0.3-7.i386

Installing mod_geoip-1.2.0-2.fc9.i386

Installing mod_authz_ldap-0.26-10.i386

Installing mod_extract_forwarded-2.0.2-3.fc9.i386

Installing quota-3.15-6.fc9.i386

Installing irqbalance-0.55-9.fc9.i386

Installing dhcpv6-client-1.0.14-1.fc9.i386

Installing microcode_ctl-1.17-1.45.fc9.i386

Installing rng-utils-2.0-1.15.1.fc9.i386

Installing anacron-2.3-59.fc9.i386

Installing rp-pppoe-3.8-3.fc9.i386

Installing dovecot-1.0.13-6.fc9.i386

Installing dnsmasq-2.41-0.8.fc9.i386

Installing tclhttpd-3.5.1-19.fc9.i386

Installing ipsec-tools-0.7-13.fc9.i386

Installing prelink-0.4.0-3.i386

Installing vnc-server-4.1.2-30.fc9.i386

Installing kerneloops-0.10-11.fc9.i386

Installing pulseaudio-module-gconf-0.9.10-1.fc9.i386

Installing oprofile-gui-0.9.3-17.fc9.i386

Installing java-1.6.0-openjdk-plugin-1.6.0.0-0.10.b09.fc9.i386

Installing java-1.6.0-openjdk-demo-1.6.0.0-0.10.b09.fc9.i386

Installing python-ldap-2.3.1-3.fc9.i386

Installing frysk-0.2.1-2.fc9.i386

Installing transmission-1.06-1.fc9.i386

Installing vnc-4.1.2-30.fc9.i386

Installing jigdo-0.7.3-6.fc9.i386

Installing irda-utils-0.9.18-4.fc9.i386

Installing nc-1.84-16.fc9.i386

Installing xdelta-1.1.4-3.fc9.i386

Installing smolt-firstboot-1.1.1.1-4.fc9.noarch

Installing yum-utils-1.1.13-2.fc9.noarch

Installing createrepo-0.9.5-2.fc9.noarch

Installing selinux-policy-targeted-3.3.1-42.fc9.noarch

libsemanage.dbase_llist_query: could not query record value

Installing system-config-firewall-1.2.7-1.fc9.noarch

Installing kde-settings-pulseaudio-4.0-22.fc9.1.noarch

Installing system-config-services-0.99.15-1.fc9.noarch

Installing system-config-nfs-1.3.40-1.fc9.noarch

Installing openldap-devel-2.4.8-3.fc9.i386

Installing sendmail-cf-8.14.2-4.fc9.i386

Installing authconfig-gtk-5.4.2-1.fc9.i386

Installing bittorrent-4.4.0-6.fc9.noarch

usermod: no changes

Installing gnome-user-docs-2.22.0-1.fc9.noarch

Installing tiquit-2.5-1.fc9.noarch

Installing wordpress-2.5.1-1.fc9.noarch

Installing phpldapadmin-1.1.0.5-1.fc9.noarch

Installing drupal-6.2-1.fc9.noarch

Installing httpd-manual-2.2.8-3.i386

Installing festvox-clb-arctic-hts-0.20061229-4.fc9.i386

Installing festvox-rms-arctic-hts-0.20061229-4.fc9.i386

Installing festvox-bdl-arctic-hts-0.20061229-4.fc9.i386

Installing pulseaudio-esound-compat-0.9.10-1.fc9.i386

Installing thunderbird-2.0.0.14-1.fc9.i386

Installing libgnomecanvas-2.20.1.1-2.fc9.i386

Installing mono-core-1.9.1-2.fc9.i386

Installing NetworkManager-glib-0.7.0-0.9.3.svn3623.fc9.i386

Installing gail-1.22.1-1.fc9.i386

Installing texlive-2007-30.fc9.i386

Installing gtk-sharp2-2.10.3-2.fc9.i386

Installing pcsc-lite-1.4.4-3.fc9.i386

Installing samba-winbind-3.2.0-1.pre3.9.fc9.i386

Installing kpathsea-2007-30.fc9.i386

Installing samba-common-3.2.0-1.pre3.9.fc9.i386

Installing libsmbclient-3.2.0-1.pre3.9.fc9.i386

Installing gvfs-0.2.3-11.fc9.i386

Installing ifd-egate-0.05-20.i386

Installing libpurple-2.4.1-2.fc9.i386

Installing xorg-x11-drv-vesa-1.3.0-15.20080404.fc9.i386

Installing bluez-gnome-0.25-1.fc9.i386

Installing bluez-utils-3.30-2.fc9.i386

Installing ccid-1.2.1-4.fc9.i386

Installing coolkey-1.1.0-6.fc9.i386

Installing texinfo-tex-4.11-5.fc9.i386

Installing zenity-2.22.1-1.fc9.i386

Installing pm-utils-1.1.0-7.fc9.i386

Installing xorg-x11-proto-devel-7.3-12.fc9.noarch

Installing libICE-devel-1.0.4-3.fc9.i386

Installing libSM-devel-1.0.2-5.fc9.i386

Installing libXfixes-devel-4.0.3-3.fc9.i386

Installing libXrandr-devel-1.2.2-3.fc9.i386

Installing mono-data-1.9.1-2.fc9.i386

Installing libXcursor-devel-1.1.9-2.fc9.i386

Installing libXinerama-devel-1.0.3-1.fc9.i386

Installing ndesk-dbus-0.6.1a-2.fc9.i386

Installing ndesk-dbus-glib-0.4.1-3.fc9.i386

Installing mono-winforms-1.9.1-2.fc9.i386

Installing mono-web-1.9.1-2.fc9.i386

Installing libXcomposite-devel-0.4.0-4.fc9.i386

Installing libXi-devel-1.1.3-4.fc9.i386

Installing mono-addins-0.3-5.fc9.i386

Installing mono-data-sqlite-1.9.1-2.fc9.i386

Installing fedora-usermgmt-core-0.10-1.fc8.noarch

Installing setroubleshoot-plugins-2.0.4-5.fc9.noarch

Installing setroubleshoot-server-2.0.6-1.fc9.noarch

Installing libXau-devel-1.0.3-5.fc9.i386

Installing libX11-devel-1.1.4-1.fc9.i386

Installing libXext-devel-1.0.4-1.fc9.i386

Installing libXrender-devel-0.9.4-3.fc9.i386

Installing libXft-devel-2.1.12-5.fc9.i386

Installing cairo-devel-1.6.4-1.fc9.i386

Installing libXv-devel-1.0.3-5.fc9.i386

Installing pycairo-devel-1.4.12-2.fc9.i386

Installing libXScrnSaver-devel-1.1.2-4.fc9.i386

Installing startup-notification-devel-0.9-4.fc9.i386

Installing fedora-usermgmt-shadow-utils-0.10-1.fc8.noarch

Installing fedora-usermgmt-0.10-1.fc8.noarch

Installing libXdamage-devel-1.1.1-4.fc9.i386

Installing libXtst-devel-1.0.3-3.fc9.i386

Installing libXxf86misc-devel-1.0.1-5.fc9.i386

Installing gmime-sharp-2.2.18-1.fc9.i386

Installing mono-extras-1.9.1-2.fc9.i386

Installing perl-Module-Pluggable-3.60-20.fc9.i386

Installing fedorawaves-kdm-theme-1.1-1.fc9.noarch

Installing fedora-screensaver-theme-1.0.0-1.fc8.noarch

Installing kde-settings-kdm-4.0-22.fc9.1.noarch

Installing libXvMC-devel-1.0.4-4.fc9.i386

Installing libXevie-devel-1.0.2-3.fc9.i386

Installing libXxf86vm-devel-1.0.1-5.fc9.i386

Installing libXres-devel-1.0.3-4.fc9.i386

Installing libXxf86dga-devel-1.0.2-2.fc9.i386

Installing libXfont-devel-1.3.1-4.fc9.i386

Installing libXTrap-devel-1.0.0-5.fc9.i386

Installing libdmx-devel-1.0.2-5.fc9.i386

Installing libXfontcache-devel-1.0.4-5.fc9.i386

Installing esc-1.0.1-9.fc9.i386

Installing coolkey-devel-1.1.0-6.fc9.i386

Installing moin-latex-0-0.20051126.3.fc6.noarch

Installing libXt-devel-1.0.4-5.fc9.i386

Installing libXpm-devel-3.5.7-4.fc9.i386

Installing gvfs-fuse-0.2.3-11.fc9.i386

Installing ctapi-cyberjack-pcsc-3.0.5-2.fc9.i386

Installing libXmu-devel-1.0.4-1.fc9.i386

Installing libXaw-devel-1.0.4-2.fc9.i386

Installing Xaw3d-devel-1.5E-11.1.i386

Installing gd-devel-2.0.35-5.fc9.i386

Installing gnome-vfs2-2.22.0-1.fc9.i386

Installing hal-0.5.11-0.7.rc2.fc9.i386

Installing NetworkManager-0.7.0-0.9.3.svn3623.fc9.i386

Installing PolicyKit-gnome-0.8-4.fc9.i386

Installing gtkhtml2-2.11.1-3.fc9.i386

Installing libmtp-0.2.6.1-1.fc9.i386

Installing gnome-mount-0.8-1.fc9.i386

Installing libgweather-2.22.1.1-2.fc9.i386

Installing xorg-x11-drv-keyboard-1.3.0-3.fc9.i386

Installing perl-version-0.74-20.fc9.i386

Installing hal-devel-0.5.11-0.7.rc2.fc9.i386

Installing yum-packagekit-0.1.12-10.20080505.fc9.i386

Installing hal-info-20080317-6.fc9.noarch

Installing fedorainfinity-screensaver-theme-1.0.0-1.fc8.noarch

Installing liferea-1.4.13-2.fc9.i386

Installing gnome-system-monitor-2.22.1-5.fc9.i386

Installing gnome-vfs2-obexftp-0.4-6.fc9.i386

Installing gnome-vfs2-smb-2.22.0-1.fc9.i386

Installing smartmontools-config-5.38-2.fc9.i386

Installing perl-libs-5.10.0-20.fc9.i386

Installing perl-5.10.0-20.fc9.i386

Installing libbonobo-2.22.0-2.fc9.i386

Installing libgnome-2.22.0-3.fc9.i386

Installing libbonoboui-2.22.0-2.fc9.i386

Installing libgnomeui-2.22.1-2.fc9.i386

Installing glib2-devel-2.16.3-5.fc9.i386

Installing kdelibs3-3.5.9-8.fc9.i386

Installing gstreamer-plugins-base-0.10.19-1.fc9.i386

Installing gnome-panel-libs-2.22.1.2-6.fc9.i386

Installing gnome-desktop-2.22.1-4.fc9.i386

Installing evolution-data-server-2.22.1-2.fc9.i386

Installing xulrunner-1.9-0.60.beta5.fc9.i386

Installing at-spi-1.22.1-1.fc9.i386

Installing ghostscript-8.62-3.fc9.i386

Installing sane-backends-libs-1.0.19-10.fc9.i386

Installing cups-1.3.7-1.fc9.i386

Installing perl-DBI-1.601-4.fc9.i386

Installing pilot-link-0.12.3-13.fc9.i386

Installing totem-pl-parser-2.22.2-1.fc9.i386

Installing eel2-2.22.1-2.fc9.i386

Installing perl-Params-Validate-0.89-4.fc9.i386

Installing mysql-5.0.51a-1.fc9.i386

Installing ImageMagick-6.3.8.1-4.fc9.i386

Installing libspectre-0.2.0-2.fc9.i386

Installing gnome-panel-2.22.1.2-6.fc9.i386

Installing kdnssd-avahi-0.1.3-0.6.20080116svn.fc9.i386

Installing pango-devel-1.20.1-1.fc9.i386

Installing genisoimage-1.1.6-11.fc9.i386

Installing qt3-devel-3.3.8b-12.fc9.i386

Installing lm_sensors-3.0.1-5.fc9.i386

Installing net-snmp-libs-5.4.1-14.fc9.i386

Installing perl-Digest-SHA1-2.11-7.fc9.i386

Installing PackageKit-0.1.12-10.20080505.fc9.i386

Installing dvd+rw-tools-7.0-11.fc9.i386

Installing nautilus-cd-burner-2.22.1-1.fc9.i386

Installing evince-2.22.1.1-1.fc9.i386

Installing totem-2.23.2-2.fc9.i386

Installing kdepim-libs-3.5.9-9.fc9.i386

Installing gnome-settings-daemon-2.22.1-0.2008.03.26.7.fc9.i386

Installing gnome-media-2.22.0-2.fc9.i386

Installing gstreamer-plugins-good-0.10.7-1.fc9.i386

Installing totem-gstreamer-2.23.2-2.fc9.i386

Installing gstreamer-python-0.10.11-2.fc9.i386

Installing libkipi-0.1.5-4.fc9.i386

Installing libkdcraw-0.1.3-2.fc9.i386

Installing libkexiv2-0.1.6-4.fc9.i386

Installing gnome-screensaver-2.22.1-1.fc9.i386

Installing gnome-bluetooth-libs-0.11.0-3.fc9.i386

Installing gnome-speech-0.4.18-3.fc9.i386

Installing foomatic-3.0.2-59.fc9.i386

Installing system-config-printer-libs-0.7.82.2-4.fc9.i386

Installing psutils-1.17-28.fc9.i386

Installing texlive-dvips-2007-30.fc9.i386

Installing perl-Compress-Raw-Zlib-2.008-20.fc9.i386

Installing PackageKit-libs-0.1.12-10.20080505.fc9.i386

Installing xorg-x11-drv-mouse-1.3.0-2.fc9.i386

Installing gnome-packagekit-0.1.12-12.20080430.fc9.i386

Installing texlive-utils-2007-30.fc9.i386

Installing gdm-2.22.0-1.fc9.i386

Installing net-snmp-5.4.1-14.fc9.i386

Installing hpijs-2.8.2-2.fc9.i386

Installing qt3-designer-3.3.8b-12.fc9.i386

Installing arts-devel-1.5.9-2.fc9.i386

Installing gnome-netstatus-2.12.1-4.fc9.i386

Installing gnome-pilot-2.0.16-2.fc9.i386

Installing libmal-0.31-8.fc9.i386

Installing perl-DBD-MySQL-4.005-8.fc9.i386

Installing libgnomecups-0.2.3-3.fc9.i386

Installing libgnomeprint22-2.18.4-1.fc9.i386

Installing libgnomeprintui22-2.18.2-1.fc9.i386

Installing gnome-sharp-2.16.1-1.fc9.i386

Installing gutenprint-5.0.2-2.fc9.i386

Installing mousetweaks-2.22.1-2.fc9.i386

Installing libgail-gnome-1.20.0-2.fc9.i386

Installing control-center-2.22.1-4.fc9.i386

Installing gnome-session-2.22.1.1-1.fc9.i386

Installing gnome-mag-0.15.0-2.fc9.i386

Installing kaffeine-0.8.6-4.fc9.i386

Installing kaffeine-libs-0.8.6-4.fc9.i386

Installing kdebase3-pim-ioslaves-3.5.9-10.fc9.i386

Installing kdepim-3.5.9-9.fc9.i386

Installing libgsf-devel-1.14.8-1.fc9.i386

Installing gimp-2.4.5-1.fc9.i386

Installing im-chooser-0.99.6-3.fc9.i386

Installing scim-1.4.7-23.fc9.i386

Installing scim-bridge-0.4.15-5.fc9.i386

Installing gnome-spell-1.0.8-4.fc9.i386

Installing gtkhtml3-3.18.1-1.fc9.i386

Installing evolution-2.22.1-2.fc9.i386

Installing samba-client-3.2.0-1.pre3.9.fc9.i386

Installing netpbm-progs-10.35.41-1.fc9.i386

Installing vdr-1.6.0-1.fc9.i386

Installing rpm-build-4.4.2.3-2.fc9.i386

Installing imake-1.0.2-6.fc9.i386

Installing postfix-2.5.1-2.fc9.i386

Installing ntp-4.2.4p4-6.fc9.i386

Installing google-perftools-0.95-4.fc9.i386

Installing perl-String-CRC32-1.4-6.fc9.i386

Installing perl-BSD-Resource-1.28-6.fc9.i386

Installing perl-Text-Kakasi-2.04-8.fc9.i386

Installing perl-NKF-2.0.8b-2.fc9.i386

Installing perl-Newt-1.08-21.fc9.i386

Installing perl-suidperl-5.10.0-20.fc9.i386

Installing perl-File-RsyncP-0.68-4.fc9.i386

Installing emacs-common-22.2-4.fc9.i386

Installing perl-gettext-1.05-13.fc9.i386

Installing perl-IPC-ShareLite-0.12-1.fc9.i386

Installing perl-Socket6-0.20-1.fc9.i386

Installing perl-Net-SSLeay-1.32-5.fc9.i386

Installing sane-backends-1.0.19-10.fc9.i386

Installing java-1.5.0-gcj-1.5.0.0-21.fc9.i386

Installing docbook-dtds-1.0-35.fc9.noarch

Installing autoconf-2.61-10.fc9.noarch

Installing automake-1.10.1-2.noarch

Installing perl-devel-5.10.0-20.fc9.i386

Installing perl-URI-1.35-8.fc9.noarch

Installing perl-ExtUtils-MakeMaker-6.36-20.fc9.i386

Installing docbook-style-xsl-1.73.2-9.fc9.noarch

Installing redhat-rpm-config-9.0.2-1.fc9.noarch

Installing perl-Spiffy-0.30-9.fc9.noarch

Installing perl-IO-Compress-Base-2.008-20.fc9.i386

Installing perl-IO-Compress-Zlib-2.008-20.fc9.i386

Installing perl-Compress-Zlib-2.008-20.fc9.i386

Installing perl-IO-Zlib-1.07-20.fc9.i386

Installing perl-Archive-Tar-1.37-20.fc9.i386

Installing perl-Archive-Zip-1.20-5.fc9.noarch

Installing rpmdevtools-6.6-1.fc9.noarch

Installing perl-Test-Simple-0.72-20.fc9.i386

Installing libogg-devel-1.1.3-9.fc9.i386

Installing libtool-1.5.24-6.fc9.i386

Installing esound-devel-0.2.38-7.fc9.i386

Installing gnome-doc-utils-0.12.2-1.fc9.noarch

Installing docbook-style-dsssl-1.79-5.fc9.noarch

Installing docbook-simple-1.1-3.fc9.noarch

Installing tomcat5-jasper-eclipse-5.5.26-1jpp.2.fc9.i386

Installing perl-IO-Socket-SSL-1.12-4.fc9.noarch

Installing perl-IO-Socket-INET6-2.54-1.fc9.noarch

Installing perl-Digest-HMAC-1.01-19.fc9.noarch

Installing perl-Class-Container-0.12-7.fc9.noarch

Installing pilot-link-devel-0.12.3-13.fc9.i386

Installing at-spi-python-1.22.1-1.fc9.i386

Installing dbus-glib-devel-0.74-6.fc9.i386

Installing libIDL-devel-0.8.10-2.fc9.i386

Installing pygobject2-devel-2.14.1-2.fc9.i386

Installing libcroco-devel-0.6.1-5.fc9.i386

Installing perl-File-MMagic-1.27-5.fc9.noarch

Installing perl-Time-modules-2006.0814-2.fc9.noarch

Installing perl-Date-Manip-5.48-3.fc9.noarch

Installing perl-HTTP-BrowserDetect-0.99-2.fc9.noarch

Installing perl-SGMLSpm-1.03ii-18.fc9.noarch

Installing docbook-utils-0.6.14-13.fc9.noarch

Installing gtk-doc-1.9-4.fc9.noarch

Installing atk-devel-1.22.0-1.fc9.i386

Installing gnome-keyring-devel-2.22.1-1.fc9.i386

Installing libsoup-devel-2.4.1-1.fc9.i386

Installing perl-Convert-ASN1-0.21-3.fc9.noarch

Installing perl-ExtUtils-ParS-2.18-20.fc9.i386

Installing groff-perl-1.18.1.4-14.fc9.i386

Installing perl-Error-0.17012-2.fc9.noarch

Installing perl-Cache-Cache-1.05-2.fc9.noarch

Installing perl-Test-Harness-2.64-20.fc9.i386

Installing perl-HTML-Tagset-3.10-8.fc9.noarch

Installing perl-AppConfig-1.66-3.fc9.noarch

Installing perl-Pod-POM-0.17-9.fc9.noarch

Installing perl-Pod-Simple-3.05-20.fc9.i386

Installing perl-Devel-StackTrace-1.16-2.fc9.noarch

Installing perl-Class-Data-Inheritable-0.06-4.fc9.noarch

Installing perl-Exception-Class-1.23-6.fc9.noarch

Installing perl-XML-RegExp-0.03-4.fc9.noarch

Installing perl-IO-String-1.08-5.fc9.noarch

Installing perl-IO-All-0.38-3.fc9.noarch

Installing perl-TeX-Hyphen-0.140-7.fc9.noarch

Installing perl-Text-Reform-1.12.2-4.fc9.noarch

Installing perl-Text-Autoformat-1.14.0-3.fc9.noarch

Installing perl-Class-Singleton-1.4-3.fc9.noarch

Installing qt-x11-4.3.4-11.fc9.i386

Installing kdelibs-4.0.3-7.fc9.i386

Installing xml-commons-apis-1.3.04-1jpp.1.fc9.i386

Installing tomcat5-servlet-2.4-api-5.5.26-1jpp.2.fc9.i386

Installing jakarta-commons-logging-1.0.4-7jpp.5.fc9.i386

Installing junit-3.8.2-4jpp.3.fc9.i386

Installing jakarta-commons-collections-3.2-2jpp.2.fc9.i386

Installing gtk2-devel-2.12.9-5.fc9.i386

Installing jakarta-oro-2.0.8-4jpp.1.i386

Installing kdepimlibs-4.0.3-3.fc9.i386

Installing jakarta-commons-beanutils-1.7.0-6jpp.1.i386

Installing qimageblitz-0.0.4-0.4.svn706674.fc9.i386

Installing ORBit2-devel-2.14.12-3.fc9.i386

Installing tomcat5-jsp-2.0-api-5.5.26-1jpp.2.fc9.i386

Installing kdebase-workspace-libs-4.0.3-20.fc9.i386

Installing perl-HTML-Parser-3.56-5.fc9.i386

Installing regexp-1.5-2jpp.1.fc9.i386

Installing bcel-5.2-4jpp.2.fc9.i386

Installing jakarta-commons-digester-1.7-7jpp.2.i386

Installing eclipse-ecj-3.3.2-11.fc9.i386

Installing antlr-2.7.7-1jpp.7.fc9.i386

Installing classpathx-jaf-1.0-11jpp.1.fc9.i386

Installing classpathx-mail-1.1.1-5jpp.3.i386

Installing jakarta-commons-validator-1.1.4-6jpp.2.fc9.i386

Installing tomcat5-jasper-5.5.26-1jpp.2.fc9.i386

Installing subversion-1.4.6-7.i386

Installing jakarta-commons-el-1.0-9jpp.2.fc9.i386

Installing jakarta-commons-lang-2.3-2jpp.1.fc9.i386

Installing jakarta-commons-codec-1.3-9jpp.2.fc9.i386

Installing jakarta-commons-cli-1.0-7jpp_10.fc9.i386

Installing kdebase-runtime-4.0.3-10.fc9.i386

Installing jakarta-commons-httpclient-3.1-0jpp.1.fc9.i386

Installing jakarta-commons-fileupload-1.0-7jpp.2.fc9.i386

Installing hsqldb-1.8.0.9-2jpp.1.fc9.i386

Installing kdemultimedia-libs-4.0.3-3.fc9.i386

Installing kdesdk-libs-4.0.3-5.fc9.i386

Installing qt-devel-4.3.4-11.fc9.i386

Installing kdelibs-devel-4.0.3-7.fc9.i386

Installing perl-DateTime-0.41-5.fc9.i386

Installing perl-Template-Toolkit-2.19-4.fc9.i386

Installing jakarta-commons-launcher-1.1-2jpp.3.fc9.i386

Installing jakarta-commons-pool-1.3-10jpp.3.fc9.i386

Installing java_cup-0.10-0.k.6jpp.2.i386

Installing jdepend-2.6-7jpp.3.i386

Installing ganymed-ssh2-210-6.fc9.i386

Installing jakarta-commons-dbcp-tomcat5-1.2.1-11jpp.3.fc9.i386

Installing jakarta-commons-collections-tomcat5-3.2-2jpp.2.fc9.i386

Installing bea-stax-api-1.2.0-0.2.rc1.2jpp.1.fc9.i386

Installing lucene-2.3.0-1jpp.0.fc9.i386

Installing libswt3-gtk2-3.3.2-11.fc9.i386

Installing eclipse-rcp-3.3.2-11.fc9.i386

Installing eclipse-cvs-client-3.3.2-11.fc9.i386

Installing lucene-contrib-2.3.0-1jpp.0.fc9.i386

Installing bea-stax-1.2.0-0.2.rc1.2jpp.1.fc9.i386

Installing tomcat5-common-lib-5.5.26-1jpp.2.fc9.i386

Installing svnkit-1.1.4-3.fc9.i386

Installing jakarta-commons-dbcp-1.2.1-11jpp.3.fc9.i386

Installing kdebase-workspace-devel-4.0.3-20.fc9.i386

Installing kdesdk-utils-4.0.3-5.fc9.i386

Installing struts-1.2.9-5jpp.9.fc9.i386

Installing subversion-javahl-1.4.6-7.i386

Installing kdebase-libs-4.0.3-9.fc9.i386

Installing kdebase-4.0.3-9.fc9.i386

Installing kdebase-workspace-4.0.3-20.fc9.i386

Installing kdenetwork-libs-4.0.3-6.fc9.i386

Installing jakarta-commons-discovery-0.4-3jpp.1.fc9.i386

Installing kdeedu-libs-4.0.3-3.fc9.i386

Installing kdegames-libs-4.0.3-3.fc9.i386

Installing PyQt4-4.3.3-2.fc9.i386

Installing poppler-qt4-0.8.0-3.fc9.i386

Installing kdegraphics-libs-4.0.3-3.fc9.i386

Installing samba-3.2.0-1.pre3.9.fc9.i386

Installing perl-Net-DNS-0.63-3.fc9.i386

Installing mod_perl-2.0.3-21.i386

Installing sinjdoc-0.5-6.fc9.i386

Installing jlex-1.2.6-6jpp.1.i386

Installing jakarta-commons-daemon-1.0.1-6jpp.5.fc9.i386

Installing ldapjdk-4.18-1.fc9.i386

Installing ws-commons-util-1.0.1-6.fc8.i386

Installing jzlib-1.0.7-5jpp.1.i386

Installing jsch-0.1.31-2jpp.3.fc9.i386

Installing libreadline-java-0.8.0-20.fc9.i386

Installing xml-commons-apis12-1.2.04-1jpp.4.fc9.i386

Installing dtdparser-1.21-4jpp.2.fc9.i386

Installing icu4j-3.6.1-2jpp.6.fc9.i386

Installing kdegraphics-4.0.3-3.fc9.i386

Installing PyQt4-devel-4.3.3-2.fc9.i386

Installing kdegames-4.0.3-3.fc9.i386

Installing kdeedu-4.0.3-3.fc9.i386

Installing kdenetwork-4.0.3-6.fc9.i386

Installing kdemultimedia-4.0.3-3.fc9.i386

Installing kdeartwork-4.0.3-3.fc9.i386

Installing kdeaccessibility-4.0.3-3.fc9.i386

Installing gcc-java-4.3.0-8.i386

Installing kdeutils-4.0.3-4.fc9.i386

Installing extragear-plasma-4.0.1-5.fc9.i386

Installing ktorrent-3.0.1-3.fc9.i386

Installing kaider-4.0.0-2.fc9.i386

Installing namazu-2.0.18-1.fc9.i386

Installing orca-2.22.1-2.fc9.i386

Installing gnu-getopt-1.0.12-4jpp.1.i386

Installing xml-commons-which-1.0-1.b2.0jpp.2.i386

Installing emacs-22.2-4.fc9.i386

Installing crypto-utils-2.3-10.i386

Installing lftp-3.6.3-2.fc9.i386

Installing Pound-2.4-1.fc9.i386

Installing fetchmail-6.3.8-6.fc9.i386

Installing vdr-wapd-0.9-4.fc9.i386

Installing scim-bridge-gtk-0.4.15-5.fc9.i386

Installing xsane-gimp-0.995-3.fc9.i386

Installing tomboy-0.10.1-2.fc9.i386

Installing f-spot-0.4.2-5.fc9.i386

Installing planner-0.14.2-12.fc9.i386

Installing gnome-utils-2.20.0.1-5.fc9.i386

Installing mysql-server-5.0.51a-1.fc9.i386

Installing hplip-2.8.2-2.fc9.i386

Installing gdm-user-switch-applet-2.22.0-1.fc9.i386

Installing hal-cups-utils-0.6.16-3.fc9.i386

Installing gok-1.3.7-3.fc9.i386

Installing dasher-4.7.3-1.fc9.i386

Installing gnome-phone-manager-0.51-1.fc9.i386

Installing digikam-0.9.3-2.fc9.i386

Installing kipi-plugins-0.1.5-0.6.rc2.fc9.i386

Installing totem-nautilus-2.23.2-2.fc9.i386

Installing totem-mozplugin-2.23.2-2.fc9.i386

Installing sound-juicer-2.22.0-1.fc9.i386

Installing evince-djvu-2.22.1.1-1.fc9.i386

Installing evince-dvi-2.22.1.1-1.fc9.i386

Installing k3b-1.0.4-6.fc9.i386

Installing kftpgrabber-0.8.1-6.fc9.i386

Installing amarok-1.4.8-5.fc9.i386

Installing NetworkManager-gnome-0.7.0-0.9.3.svn3623.fc9.i386

Installing MySQL-python-1.2.2-6.fc9.i386

Installing libdbi-dbd-mysql-0.8.3-1.fc9.i386

Installing nautilus-2.22.2-7.fc9.i386

Installing perl-DBD-Pg-1.49-9.fc9.i386

Installing bluez-utils-cups-3.30-2.fc9.i386

Installing xsane-0.995-3.fc9.i386

Installing scribus-1.3.4-5.fc9.i386

Installing yelp-2.22.1-1.fc9.i386

Installing nspluginwrapper-0.9.91.5-27.fc9.i386

Installing devhelp-0.19-4.fc9.i386

Installing xulrunner-devel-1.9-0.60.beta5.fc9.i386

Installing bug-buddy-2.22.0-2.fc9.i386

Installing nautilus-sendto-0.14.0-1.fc9.i386

Installing pidgin-2.4.1-2.fc9.i386

Installing evolution-webcal-2.21.92-1.fc9.i386

Installing eog-2.22.1-1.fc9.i386

Installing gnome-power-manager-2.22.1-1.fc9.i386

Installing gstreamer-plugins-pulse-0.9.5-0.5.svn20070924.fc9.i386

Installing konversation-1.0.1-6.fc9.i386

Installing kpowersave-0.7.3-3.fc9.i386

Installing ksshaskpass-0.4-2.fc9.i386

Installing kdbg-2.1.0-2.fc9.i386

Installing gnome-terminal-2.22.1-1.fc9.i386

Installing vino-2.22.1-1.fc9.i386

Installing file-roller-2.22.1-1.fc9.i386

Installing gthumb-2.10.8-3.fc9.i386

Installing krb5-auth-dialog-0.7-7.fc9.i386

Installing glade2-2.12.2-2.fc9.i386

Installing NetworkManager-vpnc-0.7.0-0.7.7.svn3627.fc9.i386

Installing NetworkManager-openvpn-0.7.0-10.svn3632.fc9.i386

Installing vim-enhanced-7.1.291-1.fc9.i386

Installing mutt-1.5.17-4.fc9.i386

Installing stunnel-4.22-1.i386

Installing numactl-1.0.2-4.fc9.i386

Installing fbset-2.1-25.fc9.i386

Installing isdn4k-utils-3.2-58.fc9.i386

Installing enscript-1.6.4-9.fc9.i386

Installing cvs-1.11.22-13.fc9.i386

Installing patchutils-0.2.31-5.fc9.i386

Installing valgrind-3.3.0-3.i386

Installing exim-4.69-4.fc9.i386

Installing inn-2.4.3-12.fc9.i386

Installing squid-3.0.STABLE2-2.fc9.i386

Installing bonnie++-1.03a-9.fc9.i386

Installing libbonobo-devel-2.22.0-2.fc9.i386

Installing perl-libwww-perl-5.808-7.fc9.noarch

Installing GConf2-devel-2.22.0-1.fc9.i386

Installing libglade2-devel-2.6.2-5.fc9.i386

Installing libgnomecanvas-devel-2.20.1.1-2.fc9.i386

Installing gail-devel-1.22.1-1.fc9.i386

Installing gnome-vfs2-devel-2.22.0-1.fc9.i386

Installing libgnome-devel-2.22.0-3.fc9.i386

Installing libgnomeprint22-devel-2.18.4-1.fc9.i386

Installing perl-Spoon-0.24-3.fc9.noarch

Installing perl-DateTime-Format-W3CDTF-0.04-5.fc9.noarch

Installing perl-DateTime-Format-Mail-0.3001-3.fc9.noarch

Installing librsvg2-devel-2.22.2-1.fc9.i386

Installing xpp3-1.1.3.8-1jpp.1.fc7.noarch

Installing xpp2-2.1.10-6jpp.1.fc7.noarch

Installing perl-Kwiki-0.39-3.fc9.noarch

Installing libgnomeprintui22-devel-2.18.2-1.fc9.i386

Installing evolution-data-server-devel-2.22.1-2.fc9.i386

Installing at-spi-devel-1.22.1-1.fc9.i386

Installing awstats-6.7-3.fc9.noarch

Installing perl-HTML-Mason-1.39-2.fc9.noarch

Installing system-config-samba-1.2.63-1.fc9.noarch

Installing kdemultimedia-devel-4.0.3-3.fc9.i386

Installing jdepend-demo-2.6-7jpp.3.i386

Installing vdradmin-am-3.6.1-1.fc8.noarch

Installing kdepimlibs-devel-4.0.3-3.fc9.i386

Installing junit-demo-3.8.2-4jpp.3.fc9.i386

Installing libgtop2-devel-2.22.1-1.fc9.i386

Installing logwatch-7.3.6-21.fc9.noarch

Installing pygtk2-devel-2.12.1-6.fc9.i386

Installing docbook-slides-3.4.0-3.fc9.noarch

Installing libvorbis-devel-1.2.0-3.fc9.i386

Installing libcurl-devel-7.18.1-1.fc9.i386

Installing SDL-devel-1.2.13-3.fc9.i386

Installing automake17-1.7.9-11.noarch

Installing evolution-help-2.22.1-2.fc9.i386

Installing gutenprint-foomatic-5.0.2-2.fc9.i386

Installing gnome-bluetooth-0.11.0-3.fc9.i386

Installing codeina-0.10.1-8.fc9.noarch

Installing redhat-lsb-3.1-19.fc8.i386

Installing firefox-3.0-0.60.beta5.fc9.i386

Installing libuser-devel-0.56.9-1.i386

Installing w3m-0.5.2-10.fc9.i386

Installing automake15-1.5-23.noarch

Installing automake16-1.6.3-14.noarch

Installing automake14-1.4p6-15.fc7.noarch

Installing libbonoboui-devel-2.22.0-2.fc9.i386

Installing perl-XML-Parser-2.36-3.fc9.i386

Installing dap-server-3.8.4-3.fc9.i386

Installing spamassassin-3.2.4-4.fc9.i386

Installing libgnomeui-devel-2.22.1-2.fc9.i386

Installing perl-XML-DOM-1.44-4.fc9.noarch

Installing perl-XML-RSS-1.31-3.fc9.noarch

Installing BackupPC-3.1.0-2.fc9.noarch

Installing eel2-devel-2.22.1-2.fc9.i386

Installing gnome-pilot-devel-2.0.16-2.fc9.i386

Installing gnome-panel-devel-2.22.1.2-6.fc9.i386

Installing gnome-desktop-devel-2.22.1-4.fc9.i386

Installing dap-server-cgi-3.8.4-3.fc9.i386

Installing kdesdk-4.0.3-5.fc9.i386

Installing xorg-x11-server-Xorg-1.4.99.901-29.20080415.fc9.i386

Installing xerces-j2-2.7.1-10jpp.1.fc9.i386

Installing ant-1.7.0-1jpp.4.fc9.i386

Installing xalan-j2-2.7.0-7jpp.2.fc9.i386

Installing gnome-python2-2.22.0-2.fc9.i386

Installing texlive-latex-2007-30.fc9.i386

Installing log4j-1.2.14-4jpp.1.fc9.i386

Installing gnome-python2-canvas-2.22.0-2.fc9.i386

Installing jdom-1.0-5jpp.2.fc9.i386

Installing xml-commons-resolver-1.1-1jpp.12.i386

Installing gnome-python2-gconf-2.22.0-2.fc9.i386

Installing xmldb-api-0.1-0.2.20011111cvs.1jpp.2.fc9.i386

Installing rhpxl-1.9-1.fc9.i386

Installing gnome-python2-gnomevfs-2.22.0-2.fc9.i386

Installing xorg-x11-drv-void-1.1.1-9.fc9.i386

Installing kdelibs3-devel-3.5.9-8.fc9.i386

Installing classworlds-1.1-1jpp.1.fc7.noarch

Installing plexus-container-default-1.0-0.1.a8.1jpp.1.fc7.noarch

Installing gnome-python2-desktop-2.22.0-2.fc9.i386

Installing plexus-i18n-1.0-0.b6.5jpp.2.fc9.noarch

Installing gnome-python2-extras-2.19.1-15.fc9.i386

Installing nekohtml-0.9.5-4jpp.1.fc7.noarch

Installing isorelax-0-0.1.release20050331.1jpp.2.fc7.noarch

Installing httpunit-1.6.2-1jpp.1.fc7.noarch

Installing plexus-compiler-1.5.2-2jpp.2.fc7.noarch

Installing plexus-interactivity-1.0-0.1.a5.2jpp.2.fc7.noarch

Installing system-config-date-1.9.30-2.fc9.noarch

Installing firstboot-1.97-1.fc9.i386

Installing jadetex-3.13-2.fc9.noarch

Installing xmltex-20020625-11.fc9.noarch

Installing passivetex-1.25-8.fc9.noarch

Installing xom-1.0-3jpp.4.fc7.noarch

Installing tex-preview-11.85-7.fc9.noarch

Installing texlive-texmf-latex-2007-22.fc9.noarch

Installing kdnssd-avahi-devel-0.1.3-0.6.20080116svn.fc9.i386

Installing maven-surefire-1.5.3-2jpp.5.fc9.i386

Installing maven-surefire-booter-1.5.3-2jpp.5.fc9.i386

Installing msv-msv-1.2-0.2.20050722.3jpp.3.fc9.i386

Installing gnome-python2-gtkhtml2-2.19.1-15.fc9.i386

Installing gnome-python2-libegg-2.19.1-15.fc9.i386

Installing gnome-python2-gnomeprint-2.22.0-2.fc9.i386

Installing gnome-python2-applet-2.22.0-2.fc9.i386

Installing plexus-ant-factory-1.0-0.2.a1.1jpp.6.fc9.i386

Installing plexus-archiver-1.0-0.2.a7.1jpp.1.fc9.i386

Installing kdevelop-3.5.1-4.fc9.i386

Installing xmldb-api-sdk-0.1-0.2.20011111cvs.1jpp.2.fc9.i386

Installing ant-apache-resolver-1.7.0-1jpp.4.fc9.i386

Installing werken-xpath-0.9.4-1.beta.12jpp.2.i386

Installing ant-apache-log4j-1.7.0-1jpp.4.fc9.i386

Installing jakarta-taglibs-standard-1.1.1-9jpp.1.fc9.i386

Installing avalon-framework-4.1.4-3jpp.14.fc9.i386

Installing ant-trax-1.7.0-1jpp.4.fc9.i386

Installing bsf-2.3.0-12jpp.2.fc9.i386

Installing bsh-1.3.0-12jpp.3.fc9.i386

Installing openoffice.org-core-2.4.0-12.8.fc9.i386

Installing openoffice.org-graphicfilter-2.4.0-12.8.fc9.i386

Installing plexus-bsh-factory-1.0-0.2.a7s.1jpp.6.fc9.i386

Installing ant-apache-regexp-1.7.0-1jpp.4.fc9.i386

Installing ant-commons-logging-1.7.0-1jpp.4.fc9.i386

Installing ant-antlr-1.7.0-1jpp.4.fc9.i386

Installing ant-apache-oro-1.7.0-1jpp.4.fc9.i386

Installing ant-junit-1.7.0-1jpp.4.fc9.i386

Installing ant-apache-bcel-1.7.0-1jpp.4.fc9.i386

Installing ant-swing-1.7.0-1jpp.4.fc9.i386

Installing ant-javamail-1.7.0-1jpp.4.fc9.i386

Installing ant-nodeps-1.7.0-1jpp.4.fc9.i386

Installing ant-jdepend-1.7.0-1jpp.4.fc9.i386

Installing ant-jsch-1.7.0-1jpp.4.fc9.i386

Installing jtidy-1.0-0.2.r7dev.1jpp.2.fc9.i386

Installing wsdl4j-1.5.2-5jpp.2.fc9.i386

Installing axis-1.2.1-3jpp.8.fc9.i386

Installing mx4j-3.0.1-6jpp.4.i386

Installing jakarta-commons-modeler-2.0-4jpp.2.fc9.i386

Installing tomcat5-server-lib-5.5.26-1jpp.2.fc9.i386

Installing tomcat5-5.5.26-1jpp.2.fc9.i386

Installing jetty-5.1.12-1jpp.9.fc8.i386

Installing eclipse-platform-3.3.2-11.fc9.i386

Installing eclipse-jdt-3.3.2-11.fc9.i386

Installing eclipse-mylyn-2.3.2-4.fc9.i386

Installing eclipse-mylyn-ide-2.3.2-4.fc9.i386

Installing eclipse-changelog-2.6.1-3.fc9.i386

Installing eclipse-pde-runtime-3.3.2-11.fc9.i386

Installing geronimo-specs-1.0-1.M2.2jpp.12.i386

Installing xorg-x11-drv-neomagic-1.2.0-1.fc9.i386

Installing synaptics-0.14.6-7.fc9.i386

Installing xorg-x11-drv-voodoo-1.2.0-1.fc9.i386

Installing xorg-x11-drv-hyperpen-1.2.0-1.fc9.i386

Installing xorg-x11-drv-mga-1.4.8-1.fc9.i386

Installing linuxwacom-0.7.9.8-6.fc9.i386

Installing xorg-x11-drv-tdfx-1.4.0-1.fc9.i386

Installing xorg-x11-drv-dmc-1.1.2-1.fc9.i386

Installing xorg-x11-drv-rendition-4.2.0-1.fc9.i386

Installing xorg-x11-drv-cirrus-1.2.0-1.fc9.i386

Installing xorg-x11-drv-palmax-1.2.0-1.fc9.i386

Installing xorg-x11-drv-ati-6.8.0-12.fc9.i386

Installing xorg-x11-drv-sis-0.10.0-1.fc9.i386

Installing xorg-x11-drv-ast-0.85.0-1.fc9.i386

Installing xorg-x11-drv-magellan-1.2.0-1.fc9.i386

Installing xorg-x11-drv-siliconmotion-1.6.0-1.fc9.i386

Installing xorg-x11-drv-trident-1.3.0-1.fc9.i386

Installing xorg-x11-drv-fpit-1.2.0-1.fc9.i386

Installing xorg-x11-drv-digitaledge-1.1.1-1.fc9.i386

Installing xorg-x11-drv-dynapro-1.1.2-1.fc9.i386

Installing xorg-x11-drv-geode-2.8.0-3.fc9.i386

Installing xorg-x11-drv-nv-2.1.8-1.fc9.i386

Installing xorg-x11-drv-microtouch-1.2.0-1.fc9.i386

Installing xorg-x11-drv-s3virge-1.10.0-1.fc9.i386

Installing xorg-x11-drv-summa-1.2.0-1.fc9.i386

Installing xorg-x11-drv-jamstudio-1.2.0-1.fc9.i386

Installing xorg-x11-drv-mutouch-1.2.0-1.fc9.i386

Installing xorg-x11-drv-diamondtouch-0.2.0-0.1.fc9.i386

Installing xorg-x11-drv-penmount-1.3.0-1.fc9.i386

Installing xorg-x11-drv-savage-2.2.0-1.fc9.i386

Installing xorg-x11-drv-elographics-1.2.0-1.fc9.i386

Installing xorg-x11-drv-nouveau-0.0.10-2.20080408git0991281.fc9.i386

Installing xorg-x11-drv-citron-2.2.1-1.fc9.i386

Installing xorg-x11-drv-acecad-1.2.2-1.fc9.i386

Installing xorg-x11-drv-ur98-1.1.0-5.fc9.i386

Installing xorg-x11-drv-spaceorb-1.1.0-6.fc9.i386

Installing xorg-x11-drv-vmware-10.16.0-1.fc9.i386

Installing xorg-x11-drv-tek4957-1.2.0-1.fc9.i386

Installing xorg-x11-drv-i810-2.2.1-24.fc9.i386

Installing xorg-x11-drv-vmmouse-12.5.0-1.fc9.i386

Installing xorg-x11-drv-i128-1.3.0-1.fc9.i386

Installing xorg-x11-drv-wiimote-0.0.1-1.fc9.i386

Installing xorg-x11-drv-fbdev-0.3.1-7.fc9.i386

Installing xorg-x11-drv-i740-1.2.0-1.fc9.i386

Installing xorg-x11-drv-sisusb-0.9.0-1.fc9.i386

Installing xorg-x11-drv-apm-1.2.0-1.fc9.i386

Installing xorg-x11-drv-aiptek-1.1.1-1.fc9.i386

Installing xorg-x11-drv-dummy-0.3.0-1.fc9.i386

Installing xorg-x11-drv-openchrome-0.2.902-3.fc9.i386

Installing xorg-x11-drv-v4l-0.2.0-1.fc9.i386

Installing xorg-x11-drv-glint-1.2.0-1.fc9.i386

Installing xorg-x11-drv-calcomp-1.1.2-1.fc9.i386

Installing compiz-0.7.2-3.fc9.i386

Installing kdevelop-libs-3.5.1-4.fc9.i386

Installing geronimo-specs-compat-1.0-1.M2.2jpp.12.i386

Installing openoffice.org-writer2latex-0.5-2.fc9.i386

Installing ws-jaxme-0.5.1-2jpp.1.fc7.noarch

Installing xorg-x11-drivers-7.3-4.fc9.i386

Installing openoffice.org-xsltfilter-2.4.0-12.8.fc9.i386

Installing setroubleshoot-2.0.6-1.fc9.noarch

Installing docbook-utils-pdf-0.6.14-13.fc9.noarch

Installing system-config-keyboard-1.2.15-2.fc9.noarch

Installing system-config-display-1.0.51-9.fc9.noarch

Installing alacarte-0.11.5-1.fc9.noarch

Installing policycoreutils-gui-2.0.46-5.fc9.i386

Installing system-config-network-1.5.7-1.fc9.noarch

Installing system-config-httpd-1.4.4-1.fc8.noarch

Installing system-config-printer-0.7.82.2-4.fc9.i386

Installing ant-scripts-1.7.0-1jpp.4.fc9.i386

Installing xerces-j2-scripts-2.7.1-10jpp.1.fc9.i386

Installing avalon-logkit-1.2-5jpp.5.fc9.i386

Installing velocity-1.4-7jpp.1.i386

Installing plexus-velocity-1.1.2-3jpp.1.fc9.i386

Installing maven-doxia-1.0-0.2.a7.2jpp.6.fc9.i386

Installing maven-jxr-1.0-2jpp.5.fc9.i386

Installing mysql-connector-java-3.1.12-5.fc9.i386

Installing jython-2.2.1-0.1.Release_2_2_1.1jpp.1.fc9.i386

Installing eclipse-pydev-1.3.14-1.fc9.i386

Installing openoffice.org-writer-2.4.0-12.8.fc9.i386

Installing compiz-gnome-0.7.2-3.fc9.i386

Installing eclipse-pde-3.3.2-11.fc9.i386

Installing eclipse-rpm-editor-0.2.1-3.fc9.i386

Installing eclipse-mylyn-java-2.3.2-4.fc9.i386

Installing eclipse-mylyn-bugzilla-2.3.2-4.fc9.i386

Installing eclipse-cdt-4.0.3-1.fc9.i386

Installing eclipse-subclipse-1.2.4-9.fc9.i386

Installing tomcat5-admin-webapps-5.5.26-1jpp.2.fc9.i386

Installing tomcat5-webapps-5.5.26-1jpp.2.fc9.i386

Installing openoffice.org-draw-2.4.0-12.8.fc9.i386

Installing openoffice.org-impress-2.4.0-12.8.fc9.i386

Installing openoffice.org-math-2.4.0-12.8.fc9.i386

Installing openoffice.org-calc-2.4.0-12.8.fc9.i386

Installing openoffice.org-voikko-2.2-4.fc9.i386

Installing gnome-applets-2.22.1-2.fc9.i386

Installing gnome-games-2.22.1.1-4.fc9.i386

Installing xmlto-0.0.20-2.fc9.i386

Installing gedit-2.22.0-1.fc9.i386

Installing rhythmbox-0.11.5-9.fc9.i386

Installing a2ps-4.13b-71.fc9.i386

Installing linuxdoc-tools-0.9.21-16.fc9.i386

Installing mediawiki-1.10.4-39.fc9.i386

Installing gnome-python2-bonobo-2.22.0-2.fc9.i386

Installing xalan-j2-demo-2.7.0-7jpp.2.fc9.i386

Installing xerces-j2-demo-2.7.1-10jpp.1.fc9.i386

Installing xalan-j2-xsltc-2.7.0-7jpp.2.fc9.i386

Installing modello-1.0-0.1.a8.4jpp.3.fc7.noarch

Installing checkstyle-4.1-4jpp.3.fc9.noarch

Installing maven-scm-1.0-0.2.b3.1jpp.3.fc9.i386

Installing maven-scm-test-1.0-0.2.b3.1jpp.3.fc9.i386

Installing jaxen-1.1-1jpp.2.fc7.noarch

Installing maven-shared-1.0-4jpp.4.fc9.i386

Installing dom4j-1.6.1-2jpp.3.fc8.noarch

Installing maven-shared-plugin-testing-harness-1.0-4jpp.4.fc9.i386

Installing maven-shared-file-management-1.0-4jpp.4.fc9.i386

Installing pmd-3.6-1jpp.3.fc7.noarch

Installing maven2-2.0.4-10jpp.10.fc9.i386

Installing bind-chroot-9.5.0-29.b2.fc9.i386

Installing kernel-2.6.25-14.fc9.i686

Installing emacs-common-22.2-4.fc9.i386

Installing emacs-22.2-4.fc9.i386

[root@fedora ~]#

 

Use ls -l command to show the install.log file permission, owner, group owner, file size, date created or edited and file location.

list of packages in installation log under root home directory

[root@fedora ~]# ls -l /root/install.log

-rw-r--r-- 1 root root 72032 2008-05-20 08:25 /root/install.log

[root@fedora ~]#