Saturday, May 15, 2010

Spinning your own Fedora’s LiveCD Tools

LiveCD’s are one of the coolest features of modern operating systems today. In short, a LiveCD lets one take an entire OS and make it bootable, fully functional, and occasionally installable. As time passed, LiveCDs became LiveDVDs & LiveUSB. For the purpose of this article I will group them under the umbrella term of “Live CD”. Having a fully featured OS on removable media has some very tangible benefits. The two biggest ones by far are in the areas of system recovery and demos. The system recovery aspect is very important to me. Back when I used to consult for a particular “well-known” company that specialized in Disaster Recovery and Business Continuity Planning, a Knoppix CD was on me during all DR tests I supported. Being able to diagnose a non-booting system, either Linux or Windows saved my butt on many occasions. Also, being able to demonstrate Linux (or OpenSolaris or the BSDs) in a non-invasive manner lowers the barrier of entry to many people. In the past, creating Live CD was fairly hackish and frequently required an enchantment or two to get working properly. With the advent of Fedora’s LiveCD Tools, creating LiveCDs are a simple as creating Kickstart files.

Install the required packages:

#yum install livecd-tools spin-kickstarts

Take a look at the standard base kickstart file /usr/share/spin-kickstarts/fedora-live-base.ks. The contents of this file look like pretty much every other kickstart file. One of the things I like to do is update the “repo” stanzas to use a local yum repository. This way, I get two major benefits. Firstly, my LiveCD composes complete faster, and secondly, it allows me to be a good internet citizen and not beat up on the mirrors.

# fedora-live-base.ks
#
# Defines the basics for all kickstarts in the fedora-live branch
# Does not include package selection (other then mandatory)
# Does not include localization packages or configuration
#
# Does includes "default" language configuration (kickstarts including
# this template can override these settings)

lang en_US.UTF-8
keyboard us
timezone US/Eastern
auth --useshadow --enablemd5
selinux --disabled
firewall --disabled

xconfig --startxonboot
part / --size 3072 --fstype ext4
services --enabled=NetworkManager --disabled=network,sshd

# To compose against the current release tree, use the following "repo" (enabled by default)
repo --name=released --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-12&arch=$basearch
# To include updates, use the following "repo" (enabled by default)
repo --name=updates --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f12&arch=$basearch

# To compose against rawhide, use the following "repo" (disabled by default)
#repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch

# To compose against local trees, (edit and) use:
#repo --name=f12 --baseurl=http://localrepo/fedora/releases/12/Everything/$basearch/os/

%packages
@base-x
@base
@core
@fonts
@input-methods
@admin-tools
@dial-up
@hardware-support
@printing
kernel
memtest86+

#firstaidkit-plugin-all

# save some space
-specspo
-esc
-samba-client
-a2ps
-mpage
-redhat-lsb
-sox
-hplip
-hpijs
sendmail
#ssmtp
-numactl
-isdn4k-utils
-autofs
# smartcards won't really work on the livecd.
-coolkey
-ccid
# duplicate functionality
-pinfo
-vorbis-tools
-wget
# lose the compat stuff
-compat*

# qlogic firmwares
-ql2100-firmware
-ql2200-firmware
-ql23xx-firmware
-ql2400-firmware

# scanning takes quite a bit of space :/
-xsane
-xsane-gimp
-sane-backends

# livecd bits to set up the livecd and be able to install
anaconda
isomd5sum

# commented out to avoid warning
# # make sure debuginfo doesn't end up on the live image
#-*debuginfo
%end

%post
# FIXME: it'd be better to get this installed from a package
cat > /etc/rc.d/init.d/livesys << EOF #!/bin/bash # # live: Init script for live image # # chkconfig: 345 00 99 # description: Init script for live image. . /etc/init.d/functions if ! strstr "\`cat /proc/cmdline\`" liveimg || [ "\$1" != "start" ]; then exit 0 fi if [ -e /.liveimg-configured ] ; then configdone=1 fi exists() { which \$1 >/dev/null 2>&1 || return
\$*
}

touch /.liveimg-configured

# mount live image
if [ -b \`readlink -f /dev/live\` ]; then
mkdir -p /mnt/live
mount -o ro /dev/live /mnt/live 2>/dev/null || mount /dev/live /mnt/live
fi

livedir="LiveOS"
for arg in \`cat /proc/cmdline\` ; do
if [ "\${arg##live_dir=}" != "\${arg}" ]; then
livedir=\${arg##live_dir=}
return
fi
done

# enable swaps unless requested otherwise
swaps=\`blkid -t TYPE=swap -o device\`
if ! strstr "\`cat /proc/cmdline\`" noswap && [ -n "\$swaps" ] ; then
for s in \$swaps ; do
action "Enabling swap partition \$s" swapon \$s
done
fi
if ! strstr "\`cat /proc/cmdline\`" noswap && [ -f /mnt/live/\${livedir}/swap.img ] ; then
action "Enabling swap file" swapon /mnt/live/\${livedir}/swap.img
fi

mountPersistentHome() {
# support label/uuid
if [ "\${homedev##LABEL=}" != "\${homedev}" -o "\${homedev##UUID=}" != "\${homedev}" ]; then
homedev=\`/sbin/blkid -o device -t "\$homedev"\`
fi

# if we're given a file rather than a blockdev, loopback it
if [ "\${homedev##mtd}" != "\${homedev}" ]; then
# mtd devs don't have a block device but get magic-mounted with -t jffs2
mountopts="-t jffs2"
elif [ ! -b "\$homedev" ]; then
loopdev=\`losetup -f\`
if [ "\${homedev##/mnt/live}" != "\${homedev}" ]; then
action "Remounting live store r/w" mount -o remount,rw /mnt/live
fi
losetup \$loopdev \$homedev
homedev=\$loopdev
fi

# if it's encrypted, we need to unlock it
if [ "\$(/sbin/blkid -s TYPE -o value \$homedev 2>/dev/null)" = "crypto_LUKS" ]; then
echo
echo "Setting up encrypted /home device"
plymouth ask-for-password --command="cryptsetup luksOpen \$homedev EncHome"
homedev=/dev/mapper/EncHome
fi

# and finally do the mount
mount \$mountopts \$homedev /home
# if we have /home under what's passed for persistent home, then
# we should make that the real /home. useful for mtd device on olpc
if [ -d /home/home ]; then mount --bind /home/home /home ; fi
[ -x /sbin/restorecon ] && /sbin/restorecon /home
if [ -d /home/liveuser ]; then USERADDARGS="-M" ; fi
}

findPersistentHome() {
for arg in \`cat /proc/cmdline\` ; do
if [ "\${arg##persistenthome=}" != "\${arg}" ]; then
homedev=\${arg##persistenthome=}
return
fi
done
}

if strstr "\`cat /proc/cmdline\`" persistenthome= ; then
findPersistentHome
elif [ -e /mnt/live/\${livedir}/home.img ]; then
homedev=/mnt/live/\${livedir}/home.img
fi

# if we have a persistent /home, then we want to go ahead and mount it
if ! strstr "\`cat /proc/cmdline\`" nopersistenthome && [ -n "\$homedev" ] ; then
action "Mounting persistent /home" mountPersistentHome
fi

# make it so that we don't do writing to the overlay for things which
# are just tmpdirs/caches
mount -t tmpfs -o mode=0755 varcacheyum /var/cache/yum
mount -t tmpfs tmp /tmp
mount -t tmpfs vartmp /var/tmp
[ -x /sbin/restorecon ] && /sbin/restorecon /var/cache/yum /tmp /var/tmp >/dev/null 2>&1

if [ -n "\$configdone" ]; then
exit 0
fi

# add fedora user with no passwd
action "Adding live user" useradd \$USERADDARGS -c "Live System User" liveuser
passwd -d liveuser > /dev/null

# turn off firstboot for livecd boots
chkconfig --level 345 firstboot off 2>/dev/null

# don't start yum-updatesd for livecd boots
chkconfig --level 345 yum-updatesd off 2>/dev/null

# turn off mdmonitor by default
chkconfig --level 345 mdmonitor off 2>/dev/null

# turn off setroubleshoot on the live image to preserve resources
chkconfig --level 345 setroubleshoot off 2>/dev/null

# don't do packagekit checking by default
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t string /apps/gnome-packagekit/frequency_get_updates never >/dev/null
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t string /apps/gnome-packagekit/frequency_get_upgrades never >/dev/null
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t string /apps/gnome-packagekit/frequency_refresh_cache never >/dev/null
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-packagekit/notify_available false >/dev/null
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-packagekit/notify_distro_upgrades false >/dev/null
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-packagekit/enable_check_firmware false >/dev/null
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-packagekit/enable_check_hardware false >/dev/null
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-packagekit/enable_codec_helper false >/dev/null
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-packagekit/enable_font_helper false >/dev/null
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-packagekit/enable_mime_type_helper false >/dev/null


# don't start cron/at as they tend to spawn things which are
# disk intensive that are painful on a live image
chkconfig --level 345 crond off 2>/dev/null
chkconfig --level 345 atd off 2>/dev/null
chkconfig --level 345 anacron off 2>/dev/null
chkconfig --level 345 readahead_early off 2>/dev/null
chkconfig --level 345 readahead_later off 2>/dev/null

# Stopgap fix for RH #217966; should be fixed in HAL instead
touch /media/.hal-mtab

# workaround clock syncing on shutdown that we don't want (#297421)
sed -i -e 's/hwclock/no-such-hwclock/g' /etc/rc.d/init.d/halt

# and hack so that we eject the cd on shutdown if we're using a CD...
if strstr "\`cat /proc/cmdline\`" CDLABEL= ; then
cat >> /sbin/halt.local << FOE #!/bin/bash # XXX: This often gets stuck during shutdown because /etc/init.d/halt # (or something else still running) wants to read files from the block\ # device that was ejected. Disable for now. Bug #531924 # we want to eject the cd on halt, but let's also try to avoid # io errors due to not being able to get files... #cat /sbin/halt > /dev/null
#cat /sbin/reboot > /dev/null
#/usr/sbin/eject -p -m \$(readlink -f /dev/live) >/dev/null 2>&1
#echo "Please remove the CD from your drive and press Enter to finish restarting"
#read -t 30 < /dev/console FOE chmod +x /sbin/halt.local fi EOF # bah, hal starts way too late cat > /etc/rc.d/init.d/livesys-late << EOF #!/bin/bash # # live: Late init script for live image # # chkconfig: 345 99 01 # description: Late init script for live image. . /etc/init.d/functions if ! strstr "\`cat /proc/cmdline\`" liveimg || [ "\$1" != "start" ] || [ -e /.liveimg-late-configured ] ; then exit 0 fi exists() { which \$1 >/dev/null 2>&1 || return
\$*
}

touch /.liveimg-late-configured

# read some variables out of /proc/cmdline
for o in \`cat /proc/cmdline\` ; do
case \$o in
ks=*)
ks="\${o#ks=}"
;;
xdriver=*)
xdriver="--set-driver=\${o#xdriver=}"
;;
esac
done

# this is a bad hack to work around #460581 for the geode
# purely to help move testing along for now
if [ \`grep -c Geode /proc/cpuinfo\` -ne 0 ]; then
cat > /etc/X11/xorg.conf <
I have edited SELINUX and FIREWALL to disabled


Sample output would like similar to the following:

[root@rajapa spin-kickstarts]# livecd-creator --config=fedora-live-base.ks
mke2fs 1.41.9 (22-Aug-2009)
Filesystem label=fedora-live-ba-i
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
196608 inodes, 786432 blocks
7864 blocks (1.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=805306368
24 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912

Writing inode tables: done
Creating journal (16384 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 24 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
tune2fs 1.41.9 (22-Aug-2009)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/repodata/repomd.xml ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/repodata/01a9150327554e6d65132266f7b065a5d107b4efb7afa78012fa3ffcc6f517e9-primary.sqlite.bz2 ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/repodata/repomd.xml ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/repodata/332f778c0968cee2d11ceb9eeb75b3662970a986258ded1c198b40bfecc49c17-primary.sqlite.bz2 ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/repodata/049e1caf96d85939d47c2530c21ae9d4535fd6019bfe8a0429319c293f493629-comps-rawhide.xml.gz ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/repodata/1f6ac7c723763f5d87a90456bf6c00f3d6f98738e8c64d41fe30d910c301f766-comps-f12.xml.gz ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ConsoleKit-0.4.1-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ConsoleKit-libs-0.4.1-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ConsoleKit-x11-0.4.1-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/DeviceKit-power-014-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/GConf2-2.28.0-4.fc12.2.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/MAKEDEV-3.24-4.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ModemManager-0.3-9.git20100409.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/NetworkManager-0.8.0-6.git20100408.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/NetworkManager-glib-0.8.0-6.git20100408.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ORBit2-2.14.17-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/PackageKit-0.5.7-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/PackageKit-device-rebind-0.5.7-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/PackageKit-glib-0.5.7-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/PackageKit-gtk-module-0.5.7-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/PackageKit-yum-0.5.7-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/PackageKit-yum-plugin-0.5.7-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/abrt-1.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/abrt-addon-ccpp-1.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/abrt-addon-kerneloops-1.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/abrt-addon-python-1.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/abrt-desktop-1.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/abrt-gui-1.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/abrt-libs-1.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/abrt-plugin-bugzilla-1.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/abrt-plugin-logger-1.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/abrt-plugin-runapp-1.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/abyssinica-fonts-1.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/acl-2.2.49-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/acpid-1.0.10-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/alsa-lib-1.0.23-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/anaconda-12.46-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/anaconda-yum-plugins-1.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/anthy-9100h-10.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/at-3.1.10-40.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/atk-1.28.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/atmel-firmware-1.3-6.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/attr-2.4.44-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/audit-2.0.4-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/audit-libs-2.0.4-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/audit-libs-python-2.0.4-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/authconfig-6.0.0-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/authconfig-gtk-6.0.0-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/avahi-0.6.25-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/avahi-autoipd-0.6.25-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/avahi-glib-0.6.25-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/b43-fwcutter-012-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/b43-openfwwf-5.2-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/basesystem-10.0-3.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/bash-4.0.35-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/bc-1.06.95-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/bind-libs-9.6.2-3.P1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/bind-utils-9.6.2-3.P1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/binutils-2.19.51.0.14-37.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/bitmap-fonts-0.3-9.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/bluecurve-cursor-theme-8.0.2-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/bluez-cups-4.58-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/bluez-libs-4.58-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/bzip2-1.0.5-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/bzip2-libs-1.0.5-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/c2050-0.3b-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/c2070-0.99-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ca-certificates-2009-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/cairo-1.8.8-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/checkpolicy-2.0.19-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/chkconfig-1.3.44-1.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/cjet-0.8.9-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cjkuni-uming-fonts-0.2.20080216.1-30.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/comps-extras-17-1.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/control-center-filesystem-2.28.1-18.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/coreutils-7.6-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/coreutils-libs-7.6-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cpio-2.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cpuspeed-1.5-13.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/cracklib-2.8.13-6.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/cracklib-dicts-2.8.13-6.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/cracklib-python-2.8.13-6.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/crda-1.1.1_2009.11.25-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/createrepo-0.9.8-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cronie-1.4.3-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cronie-anacron-1.4.3-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/crontabs-1.10-31.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cryptsetup-luks-1.1.0-0.4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cryptsetup-luks-libs-1.1.0-0.4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cups-1.4.2-28.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cups-libs-1.4.2-28.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cups-pk-helper-0.0.4-12.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/curl-7.19.7-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cyrus-sasl-2.1.23-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cyrus-sasl-lib-2.1.23-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/cyrus-sasl-plain-2.1.23-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dash-0.5.5.1-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/db4-4.7.25-13.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/db4-utils-4.7.25-13.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/dbus-1.2.16-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dbus-glib-0.82-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/dbus-libs-1.2.16-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dbus-python-0.83.0-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/dbus-x11-1.2.16-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dejavu-fonts-common-2.30-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dejavu-sans-fonts-2.30-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dejavu-sans-mono-fonts-2.30-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dejavu-serif-fonts-2.30-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/deltarpm-3.5-0.4.20090913git.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/desktop-backgrounds-basic-9.0.0-11.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/desktop-file-utils-0.15-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/device-mapper-1.02.38-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/device-mapper-event-1.02.38-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/device-mapper-event-libs-1.02.38-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/device-mapper-libs-1.02.38-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/device-mapper-multipath-0.4.9-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/device-mapper-multipath-libs-0.4.9-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/dhclient-4.1.1-13.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/diffutils-2.8.1-25.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dirmngr-1.0.3-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dmidecode-2.10-1.39.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dmraid-1.0.0.rc16-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dmraid-events-1.0.0.rc16-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/dnsmasq-2.52-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/dos2unix-3.1-36.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/dosfstools-3.0.9-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/dracut-005-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/dump-0.4-0.4.b42.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/e2fsprogs-1.41.9-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/e2fsprogs-libs-1.41.9-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ed-1.1-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/efibootmgr-0.5.4-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/eggdbus-0.5-2.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/eject-2.1.5-17.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/elfutils-0.145-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/elfutils-libelf-0.145-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/elfutils-libs-0.145-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/enchant-1.6.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ethtool-6-7.20090323git.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/expat-2.0.1-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/fedora-gnome-theme-12.3-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/fedora-icon-theme-1.0.0-6.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/fedora-logos-12.0.3-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/fedora-release-12-2.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/fedora-release-notes-12.0.2-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/file-5.03-14.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/file-libs-5.03-14.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/filesystem-2.4.30-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/findutils-4.4.2-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/finger-0.17-39.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/fipscheck-1.2.0-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/fipscheck-lib-1.2.0-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/firstboot-1.110-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/flac-1.2.1-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/fontconfig-2.8.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/fontpackages-filesystem-1.41-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/foomatic-db-filesystem-4.0-8.20091126.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/foomatic-db-ppds-4.0-8.20091126.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/fprintd-0.1-16.git04fd09cfa.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/fprintd-pam-0.1-16.git04fd09cfa.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/freetype-2.3.11-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ftp-0.17-51.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gamin-0.1.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gamin-python-0.1.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gawk-3.1.7-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gdb-7.0.1-45.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gdbm-1.8.0-33.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/genisoimage-1.1.10-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ghostscript-8.71-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ghostscript-fonts-5.50-23.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/glib2-2.22.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/glibc-2.11.1-6.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/glibc-common-2.11.1-6.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/glx-utils-7.7-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gmp-4.3.1-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gnome-icon-theme-2.28.0-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gnome-keyring-2.28.2-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gnome-menus-2.28.0-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gnome-packagekit-2.28.3-0.1.20091211git.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gnome-python2-2.28.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gnome-python2-bonobo-2.28.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gnome-python2-canvas-2.28.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gnome-python2-desktop-2.28.0-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gnome-python2-extras-2.25.3-17.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gnome-python2-gnome-2.28.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gnome-python2-gnomekeyring-2.28.0-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gnome-python2-gnomevfs-2.28.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gnome-python2-gtkhtml2-2.25.3-17.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gnome-themes-2.28.1-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gnome-vfs2-2.24.2-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gnupg-1.4.10-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gnupg2-2.0.13-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gnutls-2.8.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gobject-introspection-0.6.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gpgme-1.1.8-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/grep-2.6.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/groff-1.18.1.4-20.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/grub-0.97-62.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/grubby-7.0.9-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gstreamer-0.10.28-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gstreamer-tools-0.10.28-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gtk2-2.18.9-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gtk2-engines-2.18.4-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gtk2-immodule-xim-2.18.9-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/gtkhtml2-2.11.1-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gutenprint-5.2.5-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gutenprint-cups-5.2.5-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/gzip-1.3.12-15.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/hal-0.5.13-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/hal-info-20090716-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/hal-libs-0.5.13-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/hdparm-9.16-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/hesiod-3.1.0-16.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/hicolor-icon-theme-0.11-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/htmlview-4.0.0-6.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/hunspell-1.2.8-14.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/hunspell-en-0.20090216-7.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/hwdata-0.225-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ibus-1.3.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ibus-anthy-1.2.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ibus-chewing-1.2.99.20100317-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ibus-gtk-1.3.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ibus-hangul-1.3.0.20100329-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ibus-libs-1.3.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ibus-m17n-1.3.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ibus-pinyin-1.3.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ibus-rawcode-1.2.99.20100208-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/im-chooser-1.2.7-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/imsettings-0.108.0-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/imsettings-libs-0.108.0-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/info-4.13a-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/initscripts-9.02.1-1.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/iok-1.3.10-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/iproute-2.6.29-5.0.20091009gitdaf49fd6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/iptables-1.4.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/iptables-ipv6-1.4.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/iptstate-2.2.2-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/iputils-20071127-10.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ipw2100-firmware-1.3-10.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ipw2200-firmware-3.1-3.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/irda-utils-0.9.18-10.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/irqbalance-0.55-25.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/iscsi-initiator-utils-6.2.0.870-10.fc12.1.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/iso-codes-3.11-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/isomd5sum-1.0.5-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ivtv-firmware-20080701-20.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/iw-0.9.19-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/iwl1000-firmware-128.50.3.1-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/iwl3945-firmware-15.32.2.9-2.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/iwl4965-firmware-228.61.2.24-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/iwl5000-firmware-8.24.2.12-2.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/iwl6000-firmware-9.193.4.1-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/jack-audio-connection-kit-0.118.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/jasper-libs-1.900.1-14.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/jomolhari-fonts-0.003-8.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/jwhois-4.0-19.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-art-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-book-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-decorative-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-digital-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-farsi-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-fonts-common-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-letter-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-naskh-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-office-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-one-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-pen-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-poster-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-qurn-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-screen-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-title-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kacst-titlel-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kasumi-2.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/kbd-1.15-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/kernel-2.6.32.11-99.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/kernel-firmware-2.6.32.11-99.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/keyutils-libs-1.2-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/khmeros-base-fonts-5.0-7.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/khmeros-fonts-common-5.0-7.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/kpartx-0.4.9-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/krb5-auth-dialog-0.13-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/krb5-libs-1.7.1-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/krb5-workstation-1.7.1-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/lcms-libs-1.19-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/less-436-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/lftp-4.0.5-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libICE-1.0.6-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libIDL-0.8.13-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libSM-1.1.0-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libX11-1.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libX11-common-1.3-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXau-1.0.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXcomposite-0.4.1-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXcursor-1.1.10-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXdamage-1.1.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXdmcp-1.0.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libXext-1.1-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXfixes-4.0.4-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXfont-1.4.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXft-2.1.13-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libXi-1.3-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXinerama-1.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXmu-1.0.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libXrandr-1.3.0-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXrender-0.9.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXres-1.0.4-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXt-1.0.7-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXtst-1.0.99.2-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXv-1.0.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXvMC-1.0.4-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXxf86dga-1.1.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXxf86misc-1.0.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libXxf86vm-1.1.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libacl-2.2.49-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libaio-0.3.107-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libarchive-2.7.1-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libart_lgpl-2.3.20-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libasyncns-0.8-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libattr-2.4.44-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libavc1394-0.5.3-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libbdevid-python-6.0.93-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libblkid-2.16.2-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libbonobo-2.24.2-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libbonoboui-2.24.2-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libcanberra-0.22-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libcanberra-gtk2-0.22-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libcap-2.16-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libcap-ng-0.6.2-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libchewing-0.3.2-26.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libcom_err-1.41.9-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libconfig-1.3.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libcroco-0.6.2-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libcurl-7.19.7-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libdaemon-0.14-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libdmx-1.1.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libdrm-2.4.18-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libdwarf-0.20090324-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libedit-2.11-4.20080712cvs.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/liberation-fonts-common-1.05.1.20090721-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/liberation-mono-fonts-1.05.1.20090721-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/liberation-sans-fonts-1.05.1.20090721-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/liberation-serif-fonts-1.05.1.20090721-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libertas-usb8388-firmware-5.110.22.p23-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libevent-1.4.12-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libffi-3.0.5-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libfontenc-1.0.5-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libfprint-0.1.0-14.pre2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libfreebob-1.0.11-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libgcc-4.4.3-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libgcrypt-1.4.4-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libglade2-2.6.4-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libgnome-2.28.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libgnomecanvas-2.26.0-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libgnomeui-2.24.1-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libgpg-error-1.6-4.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libgsf-1.14.15-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libgssglue-0.1-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libgudev1-145-20.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libgxim-0.3.3-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libhangul-0.0.10-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libidn-1.9-5.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libiec61883-1.2.0-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libjpeg-6b-46.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libksba-1.0.6-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libmcpp-2.7.2-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libnetfilter_conntrack-0.0.101-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libnfnetlink-1.0.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libnl-1.1-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libnotify-0.4.5-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libogg-1.1.4-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libpcap-1.0.0-4.20090922gite154e2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libpciaccess-0.10.9-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libpng-1.2.43-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libraw1394-2.0.4-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/librsvg2-2.26.0-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libselinux-2.0.90-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libselinux-python-2.0.90-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libselinux-utils-2.0.90-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libsemanage-2.0.45-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libsemanage-python-2.0.45-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libsepol-2.0.41-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libsexy-0.1.11-13.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libsmbclient-3.4.7-58.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libsndfile-1.0.20-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libss-1.41.9-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libssh2-1.2.4-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libstdc++-4.4.3-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libtalloc-2.0.0-0.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libtasn1-2.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libtdb-1.2.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libthai-0.1.12-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libtiff-3.9.2-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libtirpc-0.2.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libtool-ltdl-2.2.6-18.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libudev-145-20.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libusb-0.1.12-22.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libusb1-1.0.6-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libuser-0.56.13-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libuser-python-0.56.13-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libutempter-1.1.5-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libuuid-2.16.2-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libvorbis-1.2.3-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libwnck-2.28.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libwvstreams-4.6-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libx86-1.1-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libxcb-1.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libxfce4util-4.6.1-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libxfcegui4-4.6.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libxkbfile-1.0.6-1.1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libxml2-2.7.6-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/libxml2-python-2.7.6-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/libxslt-1.1.26-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/linux-atm-libs-2.5.0-10.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lklug-fonts-0.6-1.20090803cvs.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/lockdev-1.0.1-19.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/logrotate-3.7.8-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lohit-assamese-fonts-2.4.3-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lohit-bengali-fonts-2.4.3-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/lohit-gujarati-fonts-2.4.4-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/lohit-hindi-fonts-2.4.3-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lohit-kannada-fonts-2.4.4-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lohit-maithili-fonts-2.4.3-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lohit-marathi-fonts-2.4.3-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lohit-oriya-fonts-2.4.3-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lohit-punjabi-fonts-2.4.3-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/lohit-tamil-fonts-2.4.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/lohit-telugu-fonts-2.4.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lrzsz-0.12.20-27.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lsof-4.82-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lua-5.1.4-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lvm2-2.02.53-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lvm2-libs-2.02.53-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/lx-20030328-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-assamese-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-bengali-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-gujarati-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-hindi-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-kannada-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-maithili-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-malayalam-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-marathi-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-oriya-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-punjabi-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-sinhala-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-tamil-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-telugu-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/m17n-contrib-urdu-1.1.10-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-assamese-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-bengali-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-gujarati-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-hindi-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-kannada-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-malayalam-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-oriya-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-punjabi-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-sinhala-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-tamil-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-telugu-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-db-thai-1.5.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m17n-lib-1.5.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/m4-1.4.13-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/mailcap-2.1.31-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/mailx-12.4-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/make-3.81-18.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/makebootfat-1.4-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/man-1.6f-25.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/man-pages-3.22-6.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/mcpp-2.7.2-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/mdadm-3.0.3-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/memtest86+-4.00-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/mesa-dri-drivers-7.7-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/mesa-libGL-7.7-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/metacity-2.28.0-14.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/microcode_ctl-1.17-1.57.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/min12xxw-0.0.9-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/mingetty-1.08-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/minicom-2.3-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/mlocate-0.22.2-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/mobile-broadband-provider-info-1.20100122-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/module-init-tools-3.9-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/mtools-4.0.11-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/mtr-0.75-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/nano-2.0.9-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/nash-6.0.93-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/nc-1.84-21.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ncurses-5.7-3.20090207.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ncurses-base-5.7-3.20090207.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ncurses-libs-5.7-3.20090207.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/net-tools-1.60-99.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/newt-0.52.11-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/newt-python-0.52.11-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/nfs-utils-1.2.1-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/nfs-utils-lib-1.1.4-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/notification-daemon-0.4.1-0.20090923.4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/notification-daemon-engine-slider-0.2.0-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/notify-python-0.1.1-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/nscd-2.11.1-6.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/nspr-4.8.4-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/nss-3.12.6-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/nss-softokn-3.12.4-17.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/nss-softokn-freebl-3.12.4-17.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/nss-sysinit-3.12.6-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/nss-util-3.12.6-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/nss_db-2.2-47.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/nss_ldap-264-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ntfs-3g-2010.3.6-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ntfsprogs-2.0.0-13.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ntp-4.2.4p8-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ntpdate-4.2.4p8-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ntsysv-1.3.44-1.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/openjpeg-libs-1.3-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/openldap-2.4.19-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/openssh-5.3p1-19.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/openssh-askpass-5.3p1-19.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/openssh-clients-5.3p1-19.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/openssh-server-5.3p1-19.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/openssl-1.0.0-0.13.beta4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/paktype-fonts-common-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/paktype-naqsh-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/paktype-tehreer-fonts-2.0-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pam-1.1.0-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pam_ccreds-10-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/pam_krb5-2.3.7-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pam_passwdqc-1.0.5-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pam_pkcs11-0.5.3-29.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pam_smb-1.1.7-11.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/pango-1.26.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/parted-1.9.0-17.2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/passwd-0.77-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pbm2l2030-1.4-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pbm2l7k-990321-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/pciutils-3.1.6-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/pciutils-libs-3.1.6-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/pcmciautils-015-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pcre-7.8-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/perf-2.6.32.11-99.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/perl-5.10.0-87.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/perl-Crypt-PasswdMD5-1.3-5.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/perl-Digest-SHA1-2.12-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/perl-Module-Pluggable-3.90-87.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/perl-Pod-Escapes-1.04-87.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/perl-Pod-Simple-3.07-87.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/perl-libs-5.10.0-87.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/perl-version-0.74-87.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pinentry-0.7.6-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/pixman-0.16.6-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pkgconfig-0.23-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/plymouth-0.8.0-0.2009.29.09.19.3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/plymouth-libs-0.8.0-0.2009.29.09.19.3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/plymouth-plugin-label-0.8.0-0.2009.29.09.19.3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/plymouth-plugin-two-step-0.8.0-0.2009.29.09.19.3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/plymouth-scripts-0.8.0-0.2009.29.09.19.3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/plymouth-system-theme-0.8.0-0.2009.29.09.19.3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/plymouth-theme-charge-0.8.0-0.2009.29.09.19.3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/pm-utils-1.2.5-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pnm2ppa-1.04-18.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/policycoreutils-2.0.82-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/policycoreutils-gui-2.0.82-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/policycoreutils-python-2.0.82-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/polkit-0.95-0.git20090913.3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/polkit-gnome-0.95-0.git20090913.6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/poppler-0.12.4-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/poppler-data-0.4.0-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/poppler-utils-0.12.4-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/popt-1.13-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/portreserve-0.0.4-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ppp-2.4.5-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/prelink-0.4.2-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/preupgrade-1.1.5-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/printer-filters-1.1-4.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/procmail-3.22-25.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/procps-3.2.8-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/psacct-6.3.2-59.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/psmisc-22.6-13.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/psutils-1.17-33.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pth-2.0.7-9.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ptouch-driver-1.3-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/pulseaudio-libs-0.9.21-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pycairo-1.8.6-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pygobject2-2.20.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pygpgme-0.1-17.20090824bzr68.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pygtk2-2.16.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pygtk2-libglade-2.16.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pykickstart-1.64-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pyorbit-2.24.0-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pyparted-2.1.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/python-2.6.2-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-bugzilla-0.5.1-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-cryptsetup-0.0.10-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-decorator-3.0.1-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-deltarpm-3.5-0.4.20090913git.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-ethtool-0.3-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/python-iniparse-0.3.1-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-iwlib-0.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/python-libs-2.6.2-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-meh-0.7-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-nss-0.8-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-paste-1.7.2-4.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-pyblock-0.44-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-pycurl-7.19.0-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/python-simplejson-2.0.9-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/python-slip-0.2.9-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/python-slip-dbus-0.2.9-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/python-slip-gtk-0.2.9-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/python-urlgrabber-3.9.1-4.1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pyxdg-0.17-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/pyxf86config-0.3.37-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/ql2500-firmware-5.03.02-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/quota-3.17-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/radeontool-1.5-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/rarian-0.8.1-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/rarian-compat-0.8.1-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/rdate-1.4-14.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/rdist-6.1.5-48.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/readahead-1.5.4-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/readline-6.0-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/redhat-menus-12.0.1-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/report-0.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/report-config-bugzilla-redhat-com-0.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/report-config-localsave-0.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/report-config-scp-0.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/report-gtk-0.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/report-plugin-bugzilla-0.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/report-plugin-localsave-0.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/report-plugin-scp-0.10-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/rmt-0.4-0.4.b42.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/rng-utils-2.0-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/rootfiles-8.1-6.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/rp-pppoe-3.10-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/rpcbind-0.2.0-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/rpm-4.7.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/rpm-libs-4.7.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/rpm-python-4.7.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/rsh-0.17-58.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/rsync-3.0.7-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/rsyslog-4.4.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/rt61pci-firmware-1.2-6.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/rt73usb-firmware-1.8-6.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/samba-winbind-clients-3.4.7-58.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/sed-4.2.1-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/selinux-policy-3.6.32-113.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/selinux-policy-targeted-3.6.32-113.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/sendmail-8.14.3-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/setools-console-3.3.6-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/setools-libs-3.3.6-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/setools-libs-python-3.3.6-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/setroubleshoot-2.2.69-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/setroubleshoot-plugins-2.1.50-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/setroubleshoot-server-2.2.69-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/setserial-2.17-24.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/setup-2.8.9-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/setuptool-1.19.9-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/sgml-common-0.6.3-31.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/sgpio-1.2.0.10-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/shadow-utils-4.1.4.2-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/shared-mime-info-0.70-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/slang-2.2.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/smartmontools-5.39.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/smc-fonts-common-04.2-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/smc-meera-fonts-04.2-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/smolt-1.4.2-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/smolt-firstboot-1.4.2-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/sos-1.9-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/sound-theme-freedesktop-0.7-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/sqlite-3.6.20-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/squashfs-tools-4.0-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/startup-notification-0.10-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/stix-fonts-0.9-13.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/stunnel-4.29-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/sudo-1.7.2p6-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/symlinks-1.4-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/syslinux-3.75-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/system-config-boot-0.4.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/system-config-date-1.9.53-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/system-config-firewall-1.2.21-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/system-config-firewall-base-1.2.21-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/system-config-firewall-tui-1.2.21-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/system-config-keyboard-1.3.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/system-config-language-1.3.3-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/system-config-lvm-1.1.13-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/system-config-network-1.6.0-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/system-config-network-tui-1.6.0-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/system-config-printer-1.1.18-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/system-config-printer-libs-1.1.18-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/system-config-printer-udev-1.1.18-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/system-config-services-0.99.43-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/system-config-users-1.2.94-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/system-setup-keyboard-0.7-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/sysvinit-tools-2.87-4.dsf.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/talk-0.17-33.2.4.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/tar-1.22-12.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/tcp_wrappers-7.6-56.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/tcp_wrappers-libs-7.6-56.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/tcpdump-4.0.0-3.20090921gitdf3cb4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/telnet-0.17-45.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/thai-scalable-fonts-common-0.4.12-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/thai-scalable-waree-fonts-0.4.12-2.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/time-1.7-37.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/tmpwatch-2.9.17-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/traceroute-2.0.14-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/tree-1.5.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/tzdata-2010i-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/udev-145-20.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/un-core-dotum-fonts-1.0.2-0.10.080608.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/un-core-fonts-common-1.0.2-0.10.080608.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/unique-1.1.6-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/unix2dos-2.2-34.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/unzip-5.52-12.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/upstart-0.3.11-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/urw-fonts-2.4-9.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/usbutils-0.86-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/usermode-1.104-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/usermode-gtk-1.104-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ustr-1.0.4-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/util-linux-ng-2.16.2-9.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/vbetool-1.2.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/vconfig-1.9-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/vim-minimal-7.2.411-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/vlgothic-fonts-20100126-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/vlgothic-fonts-common-20100126-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/which-2.19-5.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/wireless-tools-29-5.1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/words-3.0-16.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/wpa_supplicant-0.6.8-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/wvdial-1.60-10.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xcb-util-0.3.6-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xdg-utils-1.0.2-16.20091217cvs.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xfce4-notifyd-0.1.0-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xfconf-4.6.1-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xkeyboard-config-1.7-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xml-common-0.6.3-31.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xmlrpc-c-1.16.6-3.1582.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xmlrpc-c-client-1.16.6-3.1582.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drivers-7.3-13.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-acecad-1.4.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-aiptek-1.3.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-apm-1.2.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-ast-0.89.9-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-drv-ati-6.13.0-0.21.20100219gite68d3a389.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-drv-ati-firmware-6.13.0-0.21.20100219gite68d3a389.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-cirrus-1.3.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-drv-dummy-0.3.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-elographics-1.2.3-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-drv-evdev-2.3.2-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-fbdev-0.4.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-fpit-1.3.0-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-geode-2.11.4.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-glint-1.2.4-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-hyperpen-1.3.0-3.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-i128-1.3.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-i740-1.3.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-intel-2.9.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-drv-keyboard-1.4.0-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-mach64-6.8.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-mga-1.4.11-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-drv-mouse-1.5.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-mutouch-1.2.1-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-neomagic-1.2.4-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-drv-nouveau-0.0.15-21.20091105gite1c2efd.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-nv-2.1.15-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-openchrome-0.2.904-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-penmount-1.4.0-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-r128-6.8.1-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-rendition-4.2.2-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-s3virge-1.10.4-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-savage-2.3.1-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-siliconmotion-1.7.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-sis-0.10.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-sisusb-0.9.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-drv-synaptics-1.2.2-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-tdfx-1.4.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-trident-1.3.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-v4l-0.2.0-3.fc12.1.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-drv-vesa-2.3.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-vmmouse-12.6.5-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-vmware-10.16.7-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-void-1.3.0-2.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-drv-voodoo-1.2.3-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-drv-wacom-0.10.5-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-font-utils-7.2-11.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-server-Xorg-1.7.6-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-server-common-1.7.6-4.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-server-utils-7.4-13.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-utils-7.4-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-xauth-1.0.2-7.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xorg-x11-xinit-1.0.9-14.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/xorg-x11-xkb-utils-7.4-6.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xz-4.999.9-0.2.beta.20091007git.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xz-libs-4.999.9-0.2.beta.20091007git.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/xz-lzma-compat-4.999.9-0.2.beta.20091007git.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/yp-tools-2.9-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/ypbind-1.20.4-20.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/yum-3.2.27-3.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/yum-metadata-parser-1.1.2-14.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/updates/12/i386/yum-utils-1.1.26-1.fc12.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/zd1211-firmware-1.4-3.noarch.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/zenity-2.28.0-1.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/zip-2.31-8.fc12.i686.rpm ...OK
Retrieving http://mirror.cse.iitk.ac.in/fedora/releases/12/Everything/i386/os/Packages/zlib-1.2.3-23.fc12.i686.rpm ...OK
warning: fontpackages-filesystem-1.41-1.fc12.noarch: Header V3 RSA/SHA256 signature: NOKEY, key ID 57bbccba
Installing: fontpackages-filesystem ##################### [ 1/795]
Installing: kacst-fonts-common ##################### [ 2/795]
Installing: m17n-db ##################### [ 3/795]
Installing: setup ##################### [ 4/795]
Installing: xkeyboard-config ##################### [ 5/795]
Installing: dejavu-fonts-common ##################### [ 6/795]
Installing: liberation-fonts-common ##################### [ 7/795]
Installing: filesystem ##################### [ 8/795]
Installing: paktype-fonts-common ##################### [ 9/795]
Installing: comps-extras ##################### [ 10/795]
Installing: xml-common ##################### [ 11/795]
Installing: iso-codes ##################### [ 12/795]
Installing: basesystem ##################### [ 13/795]
Installing: un-core-fonts-common ##################### [ 14/795]
Installing: vlgothic-fonts-common ##################### [ 15/795]
Installing: smc-fonts-common ##################### [ 16/795]
Installing: khmeros-fonts-common ##################### [ 17/795]
Installing: thai-scalable-fonts-common ##################### [ 18/795]
Installing: poppler-data ##################### [ 19/795]
Installing: control-center-filesystem ##################### [ 20/795]
Installing: ca-certificates ##################### [ 21/795]
Installing: bluecurve-cursor-theme ##################### [ 22/795]
Installing: kernel-firmware ##################### [ 23/795]
Installing: tzdata ##################### [ 24/795]
Installing: fedora-release ##################### [ 25/795]
Installing: ncurses-base ##################### [ 26/795]
Installing: libX11-common ##################### [ 27/795]
Installing: foomatic-db-filesystem ##################### [ 28/795]
Installing: mobile-broadband-provider-in ##################### [ 29/795]
Installing: xorg-x11-drv-ati-firmware ##################### [ 30/795]
Installing: m17n-db-thai ##################### [ 31/795]
Installing: iwl1000-firmware ##################### [ 32/795]
Installing: rt61pci-firmware ##################### [ 33/795]
Installing: atmel-firmware ##################### [ 34/795]
Installing: rt73usb-firmware ##################### [ 35/795]
Installing: man-pages ##################### [ 36/795]
Installing: mailcap ##################### [ 37/795]
Installing: words ##################### [ 38/795]
Installing: ivtv-firmware ##################### [ 39/795]
Installing: iwl5000-firmware ##################### [ 40/795]
Installing: libertas-usb8388-firmware ##################### [ 41/795]
Installing: desktop-backgrounds-basic ##################### [ 42/795]
Installing: cjkuni-uming-fonts ##################### [ 43/795]
Installing: iwl4965-firmware ##################### [ 44/795]
Installing: rootfiles ##################### [ 45/795]
Installing: iwl3945-firmware ##################### [ 46/795]
Installing: ipw2100-firmware ##################### [ 47/795]
Installing: ql2500-firmware ##################### [ 48/795]
Installing: zd1211-firmware ##################### [ 49/795]
Installing: ipw2200-firmware ##################### [ 50/795]
Installing: libgcc ##################### [ 51/795]
Installing: m17n-db-oriya ##################### [ 52/795]
Installing: m17n-db-assamese ##################### [ 53/795]
Installing: cracklib-dicts ##################### [ 54/795]
Installing: glibc ##################### [ 55/795]
Installing: zlib ##################### [ 56/795]
Installing: libstdc++ ##################### [ 57/795]
Installing: ncurses-libs ##################### [ 58/795]
Installing: bash ##################### [ 59/795]
Installing: freetype ##################### [ 60/795]
Installing: info ##################### [ 61/795]
Installing: libxml2 ##################### [ 62/795]
Installing: libcom_err ##################### [ 63/795]
Installing: popt ##################### [ 64/795]
Installing: chkconfig ##################### [ 65/795]
Installing: audit-libs ##################### [ 66/795]
Installing: readline ##################### [ 67/795]
Installing: libsepol ##################### [ 68/795]
Installing: libselinux ##################### [ 69/795]
Installing: shadow-utils ##################### [ 70/795]
Installing: bzip2-libs ##################### [ 71/795]
Installing: device-mapper-libs ##################### [ 72/795]
Installing: nspr ##################### [ 73/795]
Installing: libICE ##################### [ 74/795]
Installing: sqlite ##################### [ 75/795]
Installing: db4 ##################### [ 76/795]
Installing: sed ##################### [ 77/795]
Installing: libpng ##################### [ 78/795]
Installing: libuuid ##################### [ 79/795]
Installing: libSM ##################### [ 80/795]
Installing: gawk ##################### [ 81/795]
Installing: libblkid ##################### [ 82/795]
Installing: xz-libs ##################### [ 83/795]
Installing: tcp_wrappers-libs ##################### [ 84/795]
Installing: libgpg-error ##################### [ 85/795]
Installing: libgcrypt ##################### [ 86/795]
Installing: nss-util ##################### [ 87/795]
Installing: elfutils-libelf ##################### [ 88/795]
Installing: pkgconfig ##################### [ 89/795]
Installing: expat ##################### [ 90/795]
Installing: e2fsprogs-libs ##################### [ 91/795]
Installing: libusb ##################### [ 92/795]
Installing: libattr ##################### [ 93/795]
Installing: libcap ##################### [ 94/795]
Installing: libacl ##################### [ 95/795]
Installing: libjpeg ##################### [ 96/795]
Installing: libcap-ng ##################### [ 97/795]
Installing: libart_lgpl ##################### [ 98/795]
Installing: device-mapper ##################### [ 99/795]
Installing: libnl ##################### [100/795]
Installing: nss-softokn-freebl ##################### [101/795]
Installing: nss-softokn ##################### [102/795]
Installing: cyrus-sasl-lib ##################### [103/795]
Installing: device-mapper-event-libs ##################### [104/795]
Installing: xmlrpc-c ##################### [105/795]
Installing: libidn ##################### [106/795]
Installing: file-libs ##################### [107/795]
Installing: libogg ##################### [108/795]
Installing: pixman ##################### [109/795]
Installing: bzip2 ##################### [110/795]
Installing: findutils ##################### [111/795]
Installing: iptables ##################### [112/795]
Installing: which ##################### [113/795]
Installing: cracklib ##################### [114/795]
Installing: libXau ##################### [115/795]
Installing: libudev ##################### [116/795]
Installing: glibc-common ##################### [117/795]
Installing: pciutils-libs ##################### [118/795]
Installing: libxcb ##################### [119/795]
Installing: libX11 ##################### [120/795]
Installing: libXext ##################### [121/795]
Installing: libXrender ##################### [122/795]
Installing: libXfixes ##################### [123/795]
Installing: libXi ##################### [124/795]
Installing: libXtst ##################### [125/795]
Installing: libXv ##################### [126/795]
Installing: libXcomposite ##################### [127/795]
Installing: libXdamage ##################### [128/795]
Installing: libXrandr ##################### [129/795]
Installing: libXinerama ##################### [130/795]
Installing: libXxf86vm ##################### [131/795]
Installing: libXt ##################### [132/795]
Installing: libXmu ##################### [133/795]
Installing: libvorbis ##################### [134/795]
Installing: libtiff ##################### [135/795]
Installing: parted ##################### [136/795]
Installing: plymouth-libs ##################### [137/795]
Installing: setools-libs ##################### [138/795]
Installing: psmisc ##################### [139/795]
Installing: lua ##################### [140/795]
Installing: procps ##################### [141/795]
Installing: keyutils-libs ##################### [142/795]
Installing: krb5-libs ##################### [143/795]
Installing: libgssglue ##################### [144/795]
Installing: libpcap ##################### [145/795]
Installing: pth ##################### [146/795]
Installing: libraw1394 ##################### [147/795]
Installing: libtirpc ##################### [148/795]
Installing: libXvMC ##################### [149/795]
Installing: libXcursor ##################### [150/795]
Installing: libXxf86misc ##################### [151/795]
Installing: device-mapper-event ##################### [152/795]
Installing: jasper-libs ##################### [153/795]
Installing: acl ##################### [154/795]
Installing: tar ##################### [155/795]
Installing: cryptsetup-luks-libs ##################### [156/795]
Installing: cryptsetup-luks ##################### [157/795]
Installing: libksba ##################### [158/795]
Installing: xz ##################### [159/795]
Installing: kpartx ##################### [160/795]
Installing: dmraid ##################### [161/795]
Installing: lockdev ##################### [162/795]
Installing: checkpolicy ##################### [163/795]
Installing: upstart ##################### [164/795]
Installing: libss ##################### [165/795]
Installing: e2fsprogs ##################### [166/795]
Installing: cpio ##################### [167/795]
Installing: make ##################### [168/795]
Installing: libtalloc ##################### [169/795]
Installing: libtdb ##################### [170/795]
Installing: libedit ##################### [171/795]
Installing: hunspell ##################### [172/795]
Installing: pcre ##################### [173/795]
Installing: grep ##################### [174/795]
Installing: less ##################### [175/795]
Installing: gzip ##################### [176/795]
Installing: libfontenc ##################### [177/795]
Installing: libXfont ##################### [178/795]
Installing: xorg-x11-drv-void ##################### [179/795]
Installing: lcms-libs ##################### [180/795]
Installing: gdbm ##################### [181/795]
Installing: dmidecode ##################### [182/795]
Installing: libffi ##################### [183/795]
Installing: sysvinit-tools ##################### [184/795]
Installing: openjpeg-libs ##################### [185/795]
Installing: libtool-ltdl ##################### [186/795]
Installing: libdaemon ##################### [187/795]
Installing: anthy ##################### [188/795]
Installing: libtasn1 ##################### [189/795]
Installing: gnutls ##################### [190/795]
Installing: avahi-autoipd ##################### [191/795]
Installing: xorg-x11-font-utils ##################### [192/795]
Installing: xz-lzma-compat ##################### [193/795]
Installing: libavc1394 ##################### [194/795]
Installing: libiec61883 ##################### [195/795]
Installing: libfreebob ##################### [196/795]
Installing: tmpwatch ##################### [197/795]
Installing: setools-console ##################### [198/795]
Installing: xorg-x11-xauth ##################### [199/795]
Installing: libXres ##################### [200/795]
Installing: libXxf86dga ##################### [201/795]
Installing: libdmx ##################### [202/795]
Installing: libxkbfile ##################### [203/795]
Installing: xorg-x11-xkb-utils ##################### [204/795]
Installing: xcb-util ##################### [205/795]
Installing: startup-notification ##################### [206/795]
Installing: radeontool ##################### [207/795]
Installing: MAKEDEV ##################### [208/795]
Installing: iptables-ipv6 ##################### [209/795]
Installing: flac ##################### [210/795]
Installing: file ##################### [211/795]
Installing: iputils ##################### [212/795]
Installing: lvm2-libs ##################### [213/795]
Installing: iw ##################### [214/795]
Installing: vim-minimal ##################### [215/795]
Installing: pinentry ##################### [216/795]
Installing: ntpdate ##################### [217/795]
Installing: rmt ##################### [218/795]
Installing: elfutils-libs ##################### [219/795]
Installing: elfutils ##################### [220/795]
Installing: libxslt ##################### [221/795]
Installing: tcp_wrappers ##################### [222/795]
Installing: db4-utils ##################### [223/795]
Installing: libutempter ##################### [224/795]
Installing: libselinux-utils ##################### [225/795]
Installing: net-tools ##################### [226/795]
Installing: isomd5sum ##################### [227/795]
Installing: diffutils ##################### [228/795]
Installing: binutils ##################### [229/795]
Installing: mtools ##################### [230/795]
Installing: m4 ##################### [231/795]
Installing: portreserve ##################### [232/795]
Installing: pnm2ppa ##################### [233/795]
Installing: psutils ##################### [234/795]
Installing: procmail ##################### [235/795]
Installing: ncurses ##################### [236/795]
Installing: gmp ##################### [237/795]
Installing: libconfig ##################### [238/795]
Installing: squashfs-tools ##################### [239/795]
Installing: pbm2l7k ##################### [240/795]
Installing: hdparm ##################### [241/795]
Installing: slang ##################### [242/795]
Installing: newt ##################### [243/795]
Installing: mingetty ##################### [244/795]
Installing: min12xxw ##################### [245/795]
Installing: pbm2l2030 ##################### [246/795]
Installing: c2050 ##################### [247/795]
Installing: libnfnetlink ##################### [248/795]
Installing: libnetfilter_conntrack ##################### [249/795]
Installing: libhangul ##################### [250/795]
Installing: libasyncns ##################### [251/795]
Installing: libx86 ##################### [252/795]
Installing: libaio ##################### [253/795]
Installing: device-mapper-multipath-libs ##################### [254/795]
Installing: libevent ##################### [255/795]
Installing: ustr ##################### [256/795]
Installing: libsemanage ##################### [257/795]
Installing: m17n-lib ##################### [258/795]
Installing: libXdmcp ##################### [259/795]
Installing: makebootfat ##################### [260/795]
Installing: sgpio ##################### [261/795]
Installing: dmraid-events ##################### [262/795]
Installing: cjet ##################### [263/795]
Installing: libusb1 ##################### [264/795]
Installing: libchewing ##################### [265/795]
Installing: dosfstools ##################### [266/795]
Installing: c2070 ##################### [267/795]
Installing: lrzsz ##################### [268/795]
Installing: libmcpp ##################### [269/795]
Installing: mcpp ##################### [270/795]
Installing: xorg-x11-server-utils ##################### [271/795]
Installing: lx ##################### [272/795]
Installing: ethtool ##################### [273/795]
Installing: dash ##################### [274/795]
Installing: libdwarf ##################### [275/795]
Installing: hesiod ##################### [276/795]
Installing: bluez-libs ##################### [277/795]
Installing: linux-atm-libs ##################### [278/795]
Installing: iproute ##################### [279/795]
Installing: libthai ##################### [280/795]
Installing: minicom ##################### [281/795]
Installing: device-mapper-multipath ##################### [282/795]
Installing: iptstate ##################### [283/795]
Installing: ntsysv ##################### [284/795]
Installing: ntfsprogs ##################### [285/795]
Installing: dump ##################### [286/795]
Installing: xorg-x11-utils ##################### [287/795]
Installing: lftp ##################### [288/795]
Installing: mlocate ##################### [289/795]
Installing: nss_db ##################### [290/795]
Installing: efibootmgr ##################### [291/795]
Installing: jwhois ##################### [292/795]
Installing: cyrus-sasl-plain ##################### [293/795]
Installing: rsync ##################### [294/795]
Installing: attr ##################### [295/795]
Installing: lsof ##################### [296/795]
Installing: ftp ##################### [297/795]
Installing: bc ##################### [298/795]
Installing: acpid ##################### [299/795]
Installing: cpuspeed ##################### [300/795]
Installing: ed ##################### [301/795]
Installing: nano ##################### [302/795]
Installing: time ##################### [303/795]
Installing: unzip ##################### [304/795]
Installing: mtr ##################### [305/795]
Installing: telnet ##################### [306/795]
Installing: talk ##################### [307/795]
Installing: traceroute ##################### [308/795]
Installing: dos2unix ##################### [309/795]
Installing: vconfig ##################### [310/795]
Installing: tree ##################### [311/795]
Installing: rsh ##################### [312/795]
Installing: unix2dos ##################### [313/795]
Installing: zip ##################### [314/795]
Installing: eject ##################### [315/795]
Installing: rdist ##################### [316/795]
Installing: finger ##################### [317/795]
Installing: rdate ##################### [318/795]
Installing: setserial ##################### [319/795]
Installing: pam_smb ##################### [320/795]
Installing: ntfs-3g ##################### [321/795]
Installing: symlinks ##################### [322/795]
Installing: b43-fwcutter ##################### [323/795]
Installing: m17n-contrib ##################### [324/795]
Installing: m17n-contrib-oriya ##################### [325/795]
Installing: m17n-contrib-assamese ##################### [326/795]
Installing: xorg-x11-server-common ##################### [327/795]
Installing: crontabs ##################### [328/795]
Installing: m17n-contrib-urdu ##################### [329/795]
Installing: m17n-contrib-maithili ##################### [330/795]
Installing: m17n-contrib-marathi ##################### [331/795]
Installing: perf ##################### [332/795]
Installing: hunspell-en ##################### [333/795]
Installing: kacst-screen-fonts ##################### [334/795]
Installing: kacst-farsi-fonts ##################### [335/795]
Installing: kacst-decorative-fonts ##################### [336/795]
Installing: lohit-kannada-fonts ##################### [337/795]
Installing: abyssinica-fonts ##################### [338/795]
Installing: lohit-bengali-fonts ##################### [339/795]
Installing: dejavu-sans-fonts ##################### [340/795]
Installing: thai-scalable-waree-fonts ##################### [341/795]
Installing: dejavu-sans-mono-fonts ##################### [342/795]
Installing: lohit-oriya-fonts ##################### [343/795]
Installing: lohit-punjabi-fonts ##################### [344/795]
Installing: paktype-tehreer-fonts ##################### [345/795]
Installing: lohit-gujarati-fonts ##################### [346/795]
Installing: paktype-naqsh-fonts ##################### [347/795]
Installing: lohit-tamil-fonts ##################### [348/795]
Installing: kacst-titlel-fonts ##################### [349/795]
Installing: kacst-letter-fonts ##################### [350/795]
Installing: lohit-assamese-fonts ##################### [351/795]
Installing: kacst-book-fonts ##################### [352/795]
Installing: liberation-mono-fonts ##################### [353/795]
Installing: kacst-art-fonts ##################### [354/795]
Installing: lklug-fonts ##################### [355/795]
Installing: stix-fonts ##################### [356/795]
Installing: un-core-dotum-fonts ##################### [357/795]
Installing: kacst-poster-fonts ##################### [358/795]
Installing: kacst-digital-fonts ##################### [359/795]
Installing: liberation-sans-fonts ##################### [360/795]
Installing: jomolhari-fonts ##################### [361/795]
Installing: lohit-telugu-fonts ##################### [362/795]
Installing: dejavu-serif-fonts ##################### [363/795]
Installing: lohit-hindi-fonts ##################### [364/795]
Installing: smc-meera-fonts ##################### [365/795]
Installing: lohit-maithili-fonts ##################### [366/795]
Installing: khmeros-base-fonts ##################### [367/795]
Installing: kacst-title-fonts ##################### [368/795]
Installing: kacst-qurn-fonts ##################### [369/795]
Installing: kacst-naskh-fonts ##################### [370/795]
Installing: kacst-one-fonts ##################### [371/795]
Installing: liberation-serif-fonts ##################### [372/795]
Installing: vlgothic-fonts ##################### [373/795]
Installing: lohit-marathi-fonts ##################### [374/795]
Installing: kacst-pen-fonts ##################### [375/795]
Installing: kacst-office-fonts ##################### [376/795]
Installing: report-config-bugzilla-redha ##################### [377/795]
Installing: m17n-contrib-punjabi ##################### [378/795]
Installing: m17n-contrib-gujarati ##################### [379/795]
Installing: hal-info ##################### [380/795]
Installing: m17n-db-malayalam ##################### [381/795]
Installing: m17n-contrib-kannada ##################### [382/795]
Installing: m17n-db-gujarati ##################### [383/795]
Installing: m17n-contrib-bengali ##################### [384/795]
Installing: m17n-db-sinhala ##################### [385/795]
Installing: m17n-db-hindi ##################### [386/795]
Installing: m17n-contrib-hindi ##################### [387/795]
Installing: m17n-contrib-telugu ##################### [388/795]
Installing: m17n-db-bengali ##################### [389/795]
Installing: m17n-db-telugu ##################### [390/795]
Installing: m17n-db-tamil ##################### [391/795]
Installing: m17n-db-punjabi ##################### [392/795]
Installing: m17n-db-kannada ##################### [393/795]
Installing: m17n-contrib-malayalam ##################### [394/795]
Installing: m17n-contrib-tamil ##################### [395/795]
Installing: m17n-contrib-sinhala ##################### [396/795]
Installing: glib2 ##################### [397/795]
Installing: dbus-libs ##################### [398/795]
Installing: atk ##################### [399/795]
Installing: dbus-glib ##################### [400/795]
Installing: python-libs ##################### [401/795]
Installing: dbus ##################### [402/795]
Installing: nss ##################### [403/795]
Installing: ibus-libs ##################### [404/795]
Installing: libgudev1 ##################### [405/795]
Installing: desktop-file-utils ##################### [406/795]
Installing: rpm-libs ##################### [407/795]
Installing: hal-libs ##################### [408/795]
Installing: fipscheck-lib ##################### [409/795]
Installing: NetworkManager-glib ##################### [410/795]
Installing: dbus-x11 ##################### [411/795]
Installing: shared-mime-info ##################### [412/795]
Installing: libxfce4util ##################### [413/795]
Installing: gamin ##################### [414/795]
Installing: xfconf ##################### [415/795]
Installing: deltarpm ##################### [416/795]
Installing: grubby ##################### [417/795]
Installing: libIDL ##################### [418/795]
Installing: ORBit2 ##################### [419/795]
Installing: libbonobo ##################### [420/795]
Installing: ModemManager ##################### [421/795]
/var/tmp/rpm-tmp.MYhc0t: line 2: touch: command not found
Installing: mailx ##################### [422/795]
Installing: gdb ##################### [423/795]
Installing: eggdbus ##################### [424/795]
Installing: gobject-introspection ##################### [425/795]
Installing: gstreamer-tools ##################### [426/795]
Installing: gstreamer ##################### [427/795]
Installing: enchant ##################### [428/795]
Installing: libcroco ##################### [429/795]
Installing: irqbalance ##################### [430/795]
Installing: nc ##################### [431/795]
Installing: redhat-menus ##################### [432/795]
Installing: htmlview ##################### [433/795]
Installing: report-config-scp ##################### [434/795]
Installing: coreutils ##################### [435/795]
Installing: fontconfig ##################### [436/795]
Installing: cairo ##################### [437/795]
Installing: pam ##################### [438/795]
Installing: openssl ##################### [439/795]
Installing: python ##################### [440/795]
Installing: openldap ##################### [441/795]
Installing: util-linux-ng ##################### [442/795]
Installing: polkit ##################### [443/795]
Installing: dbus-python ##################### [444/795]
Installing: module-init-tools ##################### [445/795]
Installing: libselinux-python ##################### [446/795]
Installing: newt-python ##################### [447/795]
Installing: libxml2-python ##################### [448/795]
Installing: nash ##################### [449/795]
Installing: lvm2 ##################### [450/795]
Installing: libuser ##################### [451/795]
Installing: libuser-python ##################### [452/795]
Installing: yum-metadata-parser ##################### [453/795]
Installing: pygobject2 ##################### [454/795]
Installing: logrotate ##################### [455/795]
Installing: ppp ##################### [456/795]
Installing: alsa-lib ##################### [457/795]
Installing: rsyslog ##################### [458/795]
Installing: libbdevid-python ##################### [459/795]
Installing: authconfig ##################### [460/795]
Installing: setools-libs-python ##################### [461/795]
Installing: audit-libs-python ##################### [462/795]
Installing: python-ethtool ##################### [463/795]
Installing: libssh2 ##################### [464/795]
Installing: libcurl ##################### [465/795]
Installing: xmlrpc-c-client ##################### [466/795]
Installing: abrt-libs ##################### [467/795]
Installing: abrt ##################### [468/795]
Installing: curl ##################### [469/795]
Installing: rpm ##################### [470/795]
Installing: rpm-python ##################### [471/795]
Installing: policycoreutils ##################### [472/795]
Installing: libarchive ##################### [473/795]
Installing: ConsoleKit-libs ##################### [474/795]
Installing: ConsoleKit ##################### [475/795]
Installing: rpcbind ##################### [476/795]
Installing: ConsoleKit-x11 ##################### [477/795]
Installing: xorg-x11-xinit ##################### [478/795]
Installing: abrt-addon-kerneloops ##################### [479/795]
Installing: abrt-plugin-bugzilla ##################### [480/795]
Installing: abrt-addon-python ##################### [481/795]
Installing: abrt-plugin-logger ##################### [482/795]
Installing: abrt-plugin-runapp ##################### [483/795]
Installing: python-pycurl ##################### [484/795]
Installing: jack-audio-connection-kit ##################### [485/795]
Installing: libsndfile ##################### [486/795]
Installing: pulseaudio-libs ##################### [487/795]
Installing: dirmngr ##################### [488/795]
Installing: gnupg2 ##################### [489/795]
Installing: gpgme ##################### [490/795]
Installing: pygpgme ##################### [491/795]
Installing: passwd ##################### [492/795]
Installing: usermode ##################### [493/795]
Installing: setuptool ##################### [494/795]
Installing: rarian ##################### [495/795]
Installing: rarian-compat ##################### [496/795]
Installing: nfs-utils-lib ##################### [497/795]
Installing: samba-winbind-clients ##################### [498/795]
Installing: libsmbclient ##################### [499/795]
Installing: python-simplejson ##################### [500/795]
Installing: pycairo ##################### [501/795]
Installing: python-cryptsetup ##################### [502/795]
Installing: wpa_supplicant ##################### [503/795]
Installing: gamin-python ##################### [504/795]
Installing: pyxf86config ##################### [505/795]
Installing: python-nss ##################### [506/795]
Installing: cracklib-python ##################### [507/795]
Installing: libsemanage-python ##################### [508/795]
Installing: policycoreutils-python ##################### [509/795]
Installing: pyorbit ##################### [510/795]
Installing: python-deltarpm ##################### [511/795]
Installing: iscsi-initiator-utils ##################### [512/795]
Installing: gnome-menus ##################### [513/795]
Installing: fipscheck ##################### [514/795]
Installing: bind-libs ##################### [515/795]
Installing: libwvstreams ##################### [516/795]
Installing: ntp ##################### [517/795]
Installing: poppler ##################### [518/795]
Installing: poppler-utils ##################### [519/795]
Installing: libXft ##################### [520/795]
Installing: pango ##################### [521/795]
Installing: plymouth-plugin-label ##################### [522/795]
Installing: plymouth-plugin-two-step ##################### [523/795]
Installing: nscd ##################### [524/795]
Installing: groff ##################### [525/795]
Installing: genisoimage ##################### [526/795]
Installing: nss-sysinit ##################### [527/795]
Installing: audit ##################### [528/795]
Installing: coreutils-libs ##################### [529/795]
Installing: perl-libs ##################### [530/795]
Installing: hwdata ##################### [531/795]
Installing: hicolor-icon-theme ##################### [532/795]
Installing: python-urlgrabber ##################### [533/795]
Installing: python-slip ##################### [534/795]
Installing: plymouth-scripts ##################### [535/795]
Installing: python-bugzilla ##################### [536/795]
Installing: xdg-utils ##################### [537/795]
Installing: fedora-logos ##################### [538/795]
Installing: libpciaccess ##################### [539/795]
Installing: vbetool ##################### [540/795]
Installing: pciutils ##################### [541/795]
Installing: usbutils ##################### [542/795]
Installing: man ##################### [543/795]
Installing: nss_ldap ##################### [544/795]
Installing: wvdial ##################### [545/795]
Installing: bind-utils ##################### [546/795]
Installing: nfs-utils ##################### [547/795]
Installing: gnupg ##################### [548/795]
Installing: irda-utils ##################### [549/795]
Installing: prelink ##################### [550/795]
Installing: sudo ##################### [551/795]
Installing: stunnel ##################### [552/795]
Installing: tcpdump ##################### [553/795]
Installing: pam_ccreds ##################### [554/795]
Installing: at ##################### [555/795]
Installing: pam_passwdqc ##################### [556/795]
Installing: pam_krb5 ##################### [557/795]
Installing: pam_pkcs11 ##################### [558/795]
Installing: krb5-workstation ##################### [559/795]
Installing: psacct ##################### [560/795]
Installing: selinux-policy ##################### [561/795]
Installing: python-decorator ##################### [562/795]
Installing: python-slip-dbus ##################### [563/795]
Installing: system-config-firewall-base ##################### [564/795]
Installing: urw-fonts ##################### [565/795]
Installing: report-plugin-bugzilla ##################### [566/795]
Installing: plymouth-theme-charge ##################### [567/795]
Installing: pykickstart ##################### [568/795]
Installing: report-plugin-scp ##################### [569/795]
Installing: pyxdg ##################### [570/795]
Installing: python-paste ##################### [571/795]
Installing: python-iniparse ##################### [572/795]
Installing: yum ##################### [573/795]
Installing: yum-utils ##################### [574/795]
Installing: anaconda-yum-plugins ##################### [575/795]
Installing: createrepo ##################### [576/795]
Installing: ghostscript-fonts ##################### [577/795]
Installing: sound-theme-freedesktop ##################### [578/795]
Installing: sgml-common ##################### [579/795]
Installing: plymouth-system-theme ##################### [580/795]
Installing: selinux-policy-targeted ##################### [581/795]
Installing: grub ##################### [582/795]
Installing: fedora-release-notes ##################### [583/795]
Installing: sos ##################### [584/795]
Installing: bitmap-fonts ##################### [585/795]
Installing: memtest86+ ##################### [586/795]
Installing: GConf2 ##################### [587/795]
Installing: libcanberra ##################### [588/795]
Installing: pyparted ##################### [589/795]
Installing: python-pyblock ##################### [590/795]
Installing: libgsf ##################### [591/795]
Installing: abrt-addon-ccpp ##################### [592/795]
Installing: initscripts ##################### [593/795]
Installing: udev ##################### [594/795]
Installing: hal ##################### [595/795]
Installing: avahi ##################### [596/795]
Installing: cups-libs ##################### [597/795]
Installing: gtk2 ##################### [598/795]
Installing: pygtk2 ##################### [599/795]
Installing: usermode-gtk ##################### [600/795]
Installing: libglade2 ##################### [601/795]
Installing: pygtk2-libglade ##################### [602/795]
Installing: libgnomecanvas ##################### [603/795]
Installing: cups ##################### [604/795]
Installing: report ##################### [605/795]
Installing: dhclient ##################### [606/795]
Installing: openssh ##################### [607/795]
Installing: libcanberra-gtk2 ##################### [608/795]
Installing: libgxim ##################### [609/795]
Installing: imsettings-libs ##################### [610/795]
Installing: gnome-keyring ##################### [611/795]
Installing: unique ##################### [612/795]
Installing: system-config-printer-libs ##################### [613/795]
Installing: ghostscript ##################### [614/795]
Installing: mdadm ##################### [615/795]
Installing: kbd ##################### [616/795]
Installing: pm-utils ##################### [617/795]
Installing: DeviceKit-power ##################### [618/795]
Installing: gutenprint ##################### [619/795]
Installing: iok ##################### [620/795]
Installing: openssh-clients ##################### [621/795]
Installing: ptouch-driver ##################### [622/795]
Installing: libxfcegui4 ##################### [623/795]
Installing: polkit-gnome ##################### [624/795]
Installing: libfprint ##################### [625/795]
Installing: fprintd ##################### [626/795]
Installing: libsexy ##################### [627/795]
Installing: gtk2-engines ##################### [628/795]
Installing: kasumi ##################### [629/795]
Installing: librsvg2 ##################### [630/795]
Installing: libwnck ##################### [631/795]
Installing: notification-daemon ##################### [632/795]
Installing: libnotify ##################### [633/795]
Installing: notify-python ##################### [634/795]
Installing: zenity ##################### [635/795]
Installing: imsettings ##################### [636/795]
Installing: notification-daemon-engine-s ##################### [637/795]
Installing: avahi-glib ##################### [638/795]
Installing: gnome-vfs2 ##################### [639/795]
Installing: gtkhtml2 ##################### [640/795]
Installing: system-setup-keyboard ##################### [641/795]
Installing: crda ##################### [642/795]
Installing: wireless-tools ##################### [643/795]
Installing: python-iwlib ##################### [644/795]
Installing: dnsmasq ##################### [645/795]
Installing: NetworkManager ##################### [646/795]
Installing: cyrus-sasl ##################### [647/795]
Installing: sendmail ##################### [648/795]
Installing: cronie ##################### [649/795]
Installing: cronie-anacron ##################### [650/795]
Installing: yp-tools ##################### [651/795]
Installing: ypbind ##################### [652/795]
Installing: gnome-python2 ##################### [653/795]
Installing: gnome-icon-theme ##################### [654/795]
Installing: gnome-themes ##################### [655/795]
Installing: system-config-network-tui ##################### [656/795]
Installing: python-meh ##################### [657/795]
Installing: system-config-firewall-tui ##################### [658/795]
Installing: system-config-firewall ##################### [659/795]
Installing: fedora-icon-theme ##################### [660/795]
Installing: fedora-gnome-theme ##################### [661/795]
Installing: gnome-python2-extras ##################### [662/795]
Installing: report-gtk ##################### [663/795]
Installing: system-config-users ##################### [664/795]
Installing: preupgrade ##################### [665/795]
Installing: authconfig-gtk ##################### [666/795]
Installing: python-slip-gtk ##################### [667/795]
Installing: smolt ##################### [668/795]
Installing: report-plugin-localsave ##################### [669/795]
Installing: report-config-localsave ##################### [670/795]
Installing: perl-version ##################### [671/795]
Installing: gnome-python2-canvas ##################### [672/795]
Installing: libgnome ##################### [673/795]
Installing: libbonoboui ##################### [674/795]
Installing: libgnomeui ##################### [675/795]
Installing: gnome-python2-bonobo ##################### [676/795]
Installing: gnome-python2-gnomevfs ##################### [677/795]
Installing: gnome-python2-gnome ##################### [678/795]
Installing: im-chooser ##################### [679/795]
Installing: gnome-python2-gtkhtml2 ##################### [680/795]
Installing: metacity ##################### [681/795]
Installing: krb5-auth-dialog ##################### [682/795]
Installing: xfce4-notifyd ##################### [683/795]
Installing: fprintd-pam ##################### [684/795]
Installing: gutenprint-cups ##################### [685/795]
Installing: system-config-printer-udev ##################### [686/795]
Installing: openssh-askpass ##################### [687/795]
Installing: openssh-server ##################### [688/795]
Installing: bluez-cups ##################### [689/795]
Installing: gtk2-immodule-xim ##################### [690/795]
Installing: cups-pk-helper ##################### [691/795]
Installing: quota ##################### [692/795]
Installing: smartmontools ##################### [693/795]
Installing: rng-utils ##################### [694/795]
Installing: readahead ##################### [695/795]
Installing: rp-pppoe ##################### [696/795]
Installing: microcode_ctl ##################### [697/795]
Installing: system-config-date ##################### [698/795]
Installing: gnome-python2-desktop ##################### [699/795]
Installing: system-config-network ##################### [700/795]
Installing: system-config-lvm ##################### [701/795]
Installing: policycoreutils-gui ##################### [702/795]
Installing: smolt-firstboot ##################### [703/795]
Installing: system-config-services ##################### [704/795]
Installing: printer-filters ##################### [705/795]
Installing: foomatic-db-ppds ##################### [706/795]
Installing: system-config-language ##################### [707/795]
Installing: system-config-boot ##################### [708/795]
Installing: iwl6000-firmware ##################### [709/795]
Installing: b43-openfwwf ##################### [710/795]
Installing: gnome-python2-gnomekeyring ##################### [711/795]
Installing: abrt-gui ##################### [712/795]
Installing: abrt-desktop ##################### [713/795]
Installing: system-config-printer ##################### [714/795]
Installing: system-config-keyboard ##################### [715/795]
Installing: setroubleshoot-plugins ##################### [716/795]
Installing: perl-Module-Pluggable ##################### [717/795]
Installing: firstboot ##################### [718/795]
Installing: libdrm ##################### [719/795]
Installing: perl ##################### [720/795]
Installing: ibus ##################### [721/795]
Installing: PackageKit-glib ##################### [722/795]
Installing: setroubleshoot-server ##################### [723/795]
Installing: PackageKit-gtk-module ##################### [724/795]
Installing: xorg-x11-drv-evdev ##################### [725/795]
Installing: PackageKit-device-rebind ##################### [726/795]
Installing: perl-Digest-SHA1 ##################### [727/795]
Installing: mesa-dri-drivers ##################### [728/795]
Installing: mesa-libGL ##################### [729/795]
Installing: ibus-gtk ##################### [730/795]
Installing: plymouth ##################### [731/795]
Installing: dracut ##################### [732/795]
Installing: perl-Crypt-PasswdMD5 ##################### [733/795]
Installing: perl-Pod-Escapes ##################### [734/795]
Installing: kernel ##################### [735/795]
Installing: syslinux ##################### [736/795]
Installing: anaconda ##################### [737/795]
Installing: pcmciautils ##################### [738/795]
Installing: glx-utils ##################### [739/795]
Installing: setroubleshoot ##################### [740/795]
Installing: ibus-chewing ##################### [741/795]
Installing: ibus-hangul ##################### [742/795]
Installing: ibus-pinyin ##################### [743/795]
Installing: ibus-m17n ##################### [744/795]
Installing: ibus-anthy ##################### [745/795]
Installing: ibus-rawcode ##################### [746/795]
Installing: perl-Pod-Simple ##################### [747/795]
Installing: xorg-x11-server-Xorg ##################### [748/795]
Installing: xorg-x11-drv-vesa ##################### [749/795]
Installing: PackageKit-yum-plugin ##################### [750/795]
Installing: xorg-x11-drv-vmmouse ##################### [751/795]
Installing: xorg-x11-drv-mach64 ##################### [752/795]
Installing: xorg-x11-drv-siliconmotion ##################### [753/795]
Installing: xorg-x11-drv-vmware ##################### [754/795]
Installing: xorg-x11-drv-i740 ##################### [755/795]
Installing: xorg-x11-drv-intel ##################### [756/795]
Installing: xorg-x11-drv-fbdev ##################### [757/795]
Installing: xorg-x11-drv-elographics ##################### [758/795]
Installing: xorg-x11-drv-s3virge ##################### [759/795]
Installing: xorg-x11-drv-i128 ##################### [760/795]
Installing: xorg-x11-drv-nouveau ##################### [761/795]
Installing: xorg-x11-drv-openchrome ##################### [762/795]
Installing: xorg-x11-drv-aiptek ##################### [763/795]
Installing: xorg-x11-drv-neomagic ##################### [764/795]
Installing: xorg-x11-drv-ast ##################### [765/795]
Installing: xorg-x11-drv-apm ##################### [766/795]
Installing: xorg-x11-drv-keyboard ##################### [767/795]
Installing: xorg-x11-drv-glint ##################### [768/795]
Installing: xorg-x11-drv-r128 ##################### [769/795]
Installing: xorg-x11-drv-v4l ##################### [770/795]
Installing: xorg-x11-drv-voodoo ##################### [771/795]
Installing: xorg-x11-drv-wacom ##################### [772/795]
Installing: xorg-x11-drv-nv ##################### [773/795]
Installing: xorg-x11-drv-penmount ##################### [774/795]
Installing: xorg-x11-drv-sisusb ##################### [775/795]
Installing: xorg-x11-drv-mutouch ##################### [776/795]
Installing: xorg-x11-drv-dummy ##################### [777/795]
Installing: xorg-x11-drv-cirrus ##################### [778/795]
Installing: xorg-x11-drv-acecad ##################### [779/795]
Installing: xorg-x11-drv-hyperpen ##################### [780/795]
Installing: xorg-x11-drv-ati ##################### [781/795]
Installing: xorg-x11-drv-sis ##################### [782/795]
Installing: xorg-x11-drv-synaptics ##################### [783/795]
Installing: xorg-x11-drv-trident ##################### [784/795]
Installing: xorg-x11-drv-mga ##################### [785/795]
Installing: xorg-x11-drv-mouse ##################### [786/795]
Installing: xorg-x11-drv-tdfx ##################### [787/795]
Installing: xorg-x11-drv-fpit ##################### [788/795]
Installing: xorg-x11-drv-savage ##################### [789/795]
Installing: xorg-x11-drv-geode ##################### [790/795]
Installing: xorg-x11-drv-rendition ##################### [791/795]
Installing: xorg-x11-drivers ##################### [792/795]
Installing: PackageKit ##################### [793/795]
Installing: gnome-packagekit ##################### [794/795]
Installing: PackageKit-yum ##################### [795/795]

/usr/sbin/setenforce: SELinux is disabled
Removing password for user root.
passwd: Success
cp: cannot stat `/var/tmp/imgcreate-QP0Ld3/install_root/usr/share/doc/HTML/readme-live-image/en_US/readme-live-image-en_US.txt': No such file or directory
e2fsck 1.41.9 (22-Aug-2009)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
fedora-live-ba-i: 62649/196608 files (0.1% non-contiguous), 322853/786432 blocks
e2image 1.41.9 (22-Aug-2009)
resize2fs 1.41.9 (22-Aug-2009)
Resizing the filesystem on /var/tmp/imgcreate-QP0Ld3/tmp-wBv3Uw/ext3fs.img to 320702 (4k) blocks.
The filesystem on /var/tmp/imgcreate-QP0Ld3/tmp-wBv3Uw/ext3fs.img is now 320702 blocks long.

e2fsck 1.41.9 (22-Aug-2009)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
fedora-live-ba-i: 62649/81920 files (0.1% non-contiguous), 315658/320702 blocks
e2fsck 1.41.9 (22-Aug-2009)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
fedora-live-ba-i: 62649/81920 files (0.1% non-contiguous), 315658/320702 blocks
e2image 1.41.9 (22-Aug-2009)
resize2fs 1.41.9 (22-Aug-2009)
Resizing the filesystem on /var/tmp/imgcreate-QP0Ld3/tmp-wBv3Uw/ext3fs.img to 786432 (4k) blocks.
The filesystem on /var/tmp/imgcreate-QP0Ld3/tmp-wBv3Uw/ext3fs.img is now 786432 blocks long.

e2fsck 1.41.9 (22-Aug-2009)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
fedora-live-ba-i: 62649/196608 files (0.1% non-contiguous), 322854/786432 blocks
e2fsck 1.41.9 (22-Aug-2009)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
fedora-live-ba-i: 62649/196608 files (0.1% non-contiguous), 322854/786432 blocks
e2image 1.41.9 (22-Aug-2009)
resize2fs 1.41.9 (22-Aug-2009)
Resizing the filesystem on /dev/mapper/imgcreate-3132-34605 to 320703 (4k) blocks.
The filesystem on /dev/mapper/imgcreate-3132-34605 is now 320703 blocks long.

e2fsck 1.41.9 (22-Aug-2009)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
fedora-live-ba-i: 62649/81920 files (0.1% non-contiguous), 315658/320703 blocks
Parallel mksquashfs: Using 2 processors
Creating 4.0 filesystem on /var/tmp/imgcreate-QP0Ld3/iso-9_jbmG/LiveOS/osmin.img, block size 131072.
[================================================================================================================================================|] 8/8 100%
Exportable Squashfs 4.0 filesystem, data block size 131072
compressed data, compressed metadata, compressed fragments
duplicates are removed
Filesystem size 6.39 Kbytes (0.01 Mbytes)
0.71% of uncompressed filesystem size (904.22 Kbytes)
Inode table size 67 bytes (0.07 Kbytes)
68.37% of uncompressed inode table size (98 bytes)
Directory table size 23 bytes (0.02 Kbytes)
85.19% of uncompressed directory table size (27 bytes)
Number of duplicate files found 0
Number of inodes 2
Number of files 1
Number of fragments 0
Number of symbolic links 0
Number of device nodes 0
Number of fifo nodes 0
Number of socket nodes 0
Number of directories 1
Number of ids (unique uids + gids) 1
Number of uids 1
root (0)
Number of gids 1
root (0)
Parallel mksquashfs: Using 2 processors
Creating 4.0 filesystem on /var/tmp/imgcreate-QP0Ld3/iso-9_jbmG/LiveOS/squashfs.img, block size 131072.
[========================================================================================================================================|] 24576/24576 100%
Exportable Squashfs 4.0 filesystem, data block size 131072
compressed data, compressed metadata, compressed fragments
duplicates are removed
Filesystem size 388587.11 Kbytes (379.48 Mbytes)
12.35% of uncompressed filesystem size (3145824.30 Kbytes)
Inode table size 26330 bytes (25.71 Kbytes)
26.74% of uncompressed inode table size (98450 bytes)
Directory table size 50 bytes (0.05 Kbytes)
86.21% of uncompressed directory table size (58 bytes)
Number of duplicate files found 0
Number of inodes 3
Number of files 1
Number of fragments 0
Number of symbolic links 0
Number of device nodes 0
Number of fifo nodes 0
Number of socket nodes 0
Number of directories 2
Number of ids (unique uids + gids) 1
Number of uids 1
root (0)
Number of gids 1
root (0)
I: -input-charset not specified, using utf-8 (detected in locale settings)
Size of boot image is 4 sectors -> No emulation
2.48% done, estimate finish Sun May 16 02:33:52 2010
4.95% done, estimate finish Sun May 16 02:33:32 2010
7.42% done, estimate finish Sun May 16 02:33:25 2010
9.90% done, estimate finish Sun May 16 02:33:22 2010
12.37% done, estimate finish Sun May 16 02:33:20 2010
14.84% done, estimate finish Sun May 16 02:33:18 2010
17.31% done, estimate finish Sun May 16 02:33:17 2010
19.79% done, estimate finish Sun May 16 02:33:22 2010
22.25% done, estimate finish Sun May 16 02:33:20 2010
24.73% done, estimate finish Sun May 16 02:33:20 2010
27.20% done, estimate finish Sun May 16 02:33:19 2010
29.68% done, estimate finish Sun May 16 02:33:22 2010
32.14% done, estimate finish Sun May 16 02:33:21 2010
34.62% done, estimate finish Sun May 16 02:33:20 2010
37.09% done, estimate finish Sun May 16 02:33:20 2010
39.57% done, estimate finish Sun May 16 02:33:19 2010
42.03% done, estimate finish Sun May 16 02:33:21 2010
44.51% done, estimate finish Sun May 16 02:33:20 2010
46.98% done, estimate finish Sun May 16 02:33:20 2010
49.45% done, estimate finish Sun May 16 02:33:20 2010
51.92% done, estimate finish Sun May 16 02:33:19 2010
54.40% done, estimate finish Sun May 16 02:33:19 2010
56.87% done, estimate finish Sun May 16 02:33:20 2010
59.34% done, estimate finish Sun May 16 02:33:20 2010
61.81% done, estimate finish Sun May 16 02:33:21 2010
64.29% done, estimate finish Sun May 16 02:33:22 2010
66.76% done, estimate finish Sun May 16 02:33:23 2010
69.23% done, estimate finish Sun May 16 02:33:23 2010
71.70% done, estimate finish Sun May 16 02:33:23 2010
74.18% done, estimate finish Sun May 16 02:33:22 2010
76.65% done, estimate finish Sun May 16 02:33:22 2010
79.12% done, estimate finish Sun May 16 02:33:22 2010
81.59% done, estimate finish Sun May 16 02:33:23 2010
84.07% done, estimate finish Sun May 16 02:33:22 2010
86.54% done, estimate finish Sun May 16 02:33:22 2010
89.01% done, estimate finish Sun May 16 02:33:22 2010
91.48% done, estimate finish Sun May 16 02:33:21 2010
93.96% done, estimate finish Sun May 16 02:33:21 2010
96.43% done, estimate finish Sun May 16 02:33:22 2010
98.90% done, estimate finish Sun May 16 02:33:22 2010
Total translation table size: 2048
Total rockridge attributes bytes: 3072
Total directory bytes: 8898
Path table size(bytes): 64
Max brk space used 21000
202235 extents written (394 MB)
Inserting md5sum into iso image...
md5 = 35e756f0a0170f0c1286e3cc1263d143
Inserting fragment md5sums into iso image...
fragmd5 = 7d9bf25fa169e8a4e79fabce1d5af5fe5647e6a14152adbae92ca98e86b1
frags = 20
Setting supported flag to 0

[Rajat@rajapa Downloads]$ ls -al
total 404504
drwxr-xr-x. 3 Rajat Rajat 4096 2010-05-16 02:47 .
drwx--x---+ 36 Rajat Rajat 4096 2010-05-16 02:42 ..
-rw-r--r-- 1 root root 414187520 2010-05-16 02:42 livecd-fedora-live-base-201005160108.iso
drwx--x---+ 3 Rajat Rajat 4096 2010-04-21 00:27 rhev2.2
[Rajat@rajapa Downloads]$

Resetting Root Password via GRUB / Kernel boot options

n the field, it may become necessary to reset the root password on a Linux system. There are many ways to reset an unknown root password, to include LiveCDs and booting into single user mode. This document assumes the following

* The root password is unknown
* An account with sufficient permissions to reset the root password is unknown or unavailable.
* The sysadmin has access to edit the GRUB bootloader options.
* A normal boot into single user mode doesn’t work


Perform the following steps to boot Linux to a very minimal working shell:

* At the GRUB menu, where it says “Press Any key to enter the menu”, press ESCAPE
* Next, press ‘e‘ to edit the first kernel option.
* On the following screen, highlight the ‘kernel’ line using the arrow keys and press ‘e‘
* On the next screen, which should have a line that says ‘grub edit>’ append ‘init=/bin/sh‘ and press ENTER
* Finally, press ‘b‘ to boot the system.

This process passes the init=/bin/sh option to the kernel and tells it to run /bin/sh as init instead of the normal /sbin/init. By doing this, the normal init process is completely bypassed. Normal filesystem mounting via /etc/fstab is bypassed as well as any options in /etc/inittab such as the stanza that secures single-user mode (~:S:wait:/sbin/sulogin). Only the root filesystem is mounted, and even that is mounted read-only

Now, to reset the root password:

* mount the /proc filesystem (mount /proc)
* remount the root filesystem in read/write mode (mount -n -o remount,rw /)
* Reset the root password by doing any one of the following:
o edit /etc/shadow and replace the second field of root’s entry with a known password hash
o edit /etc/shadow and remove the second field of root’s entry. This will set root’s password to a blank value.
o mount the /usr partition (if it is a separate partition) and run /usr/bin/passwd to reset root’s password.
* issue the sync command to flush all uncommitted writes to disk.
* Power down the system manually (/sbin/shutdown, /sbin/init 0 , and /sbin/reboot) will not work

This process is known to work on both Linux!!!

Monday, May 10, 2010

Creating Custom Ubuntu Live-CD With Remastersys

Install Remastersys in Ubuntu (http://sourceforge.net/projects/remastersys/files/ download lates version for Ubuntu 10.04)

The Remastersys repository needs to be added to your /etc/apt/sources.list

sudo vi /etc/apt/sources.list

Paste the following into the sources.list:

# Remastersys
deb http://www.remastersys.klikit-linux.com/repository remastersys/

Save and exit the file.

Update the source list using the following command

sudo apt-get update

Install remastersys using the following command

sudo apt-get install remastersys

This will complete the installation

Using Remastersys

In order to learn how you can use remastersys, run

sudo remastersys

remastersys Syntax

sudo remastersys backup|clean|dist [cdfs|iso] [filename.iso]

remastersys Examples

1) to make a livecd/dvd backup of your system

sudo remastersys backup

2) to make a livecd/dvd backup and call the iso custom.iso

sudo remastersys backup custom.iso

3) to clean up temporary files of remastersys

sudo remastersys clean

4) to make a distributable livecd/dvd of your system

sudo remastersys dist

5) to make a distributable livecd/dvd filesystem only

sudo remastersys dist cdfs

6) to make a distributable iso named custom.iso but only if the cdfs is already present

sudo remastersys dist iso custom.iso

cdfs and iso options should only be used if you wish to modify something on the cd before the iso is created. An example of this would be to modify the isolinux portion of the livecd/dvd

Creating An ISO Image

To create an iso image of your installation, simply run

sudo remastersys dist

This will create an iso image called customdist.iso in the /home/remastersys directory. The dist option makes that your personal folder (e.g. /home/rajat) will not be included in the iso image. You might have to insert your Ubuntu installation CD during the process.

This is how the end of the process looks:

[...]
92.16% done, estimate finish Tue MAY 11 13:31:20 2010
93.39% done, estimate finish Tue MAY 11 13:31:21 2010
94.62% done, estimate finish Tue MAY 11 13:31:22 2010
95.85% done, estimate finish Tue MAY 11 13:31:23 2010
97.08% done, estimate finish Tue MAY 11 13:31:24 2010
98.31% done, estimate finish Tue MAY 11 13:31:25 2010
99.54% done, estimate finish Tue MAY 11 13:31:26 2010
Total translation table size: 2048
Total rockridge attributes bytes: 3950
Total directory bytes: 9094
Path table size(bytes): 54
Max brk space used 0
406890 extents written (794 MB)

/home/remastersys/customdist.iso is ready to be burned or tested in a virtual machine.

Check the size and if it is larger than 700MB you will need to burn it to a dvd

796M /home/remastersys/customdist.iso

Clean Up

After you’ve burnt the iso image onto a CD/DVD, you can run

sudo remastersys clean

to remove all temporary file created during the iso generation as well as the /home/remastersys directory.

Wednesday, May 5, 2010

Fedora NFS Server Configuration

1. Download and install NFS rpm package using yum

# yum -y install nfs-utils rpcbind

If you have an earlier Fedora versions

# yum -y intall nfs-utils portmap

2. Prepare and modify /etc/exports for sharing files, that would similar to as shown below

/home/NFS-files 192.168.100.0/24(ro,sync)

/home/NFS-share */26(rw,sync)

/ISO 192.168.100.0/24(ro,sync)

Save and exit.

Legend:

rw = for read/write access

ro = for read only access

* = allow any source request

/24 , /26 = IP network subnet

Create NFS folder and populate your NFS files you wish to share

# mkdir /home/NFS-files /home/NFS-share /ISO

# cp your-files /home/NFS-files

3. Start your NFS service

# service nfs start

# service rpcbind start

For earlier Fedora versions

# service portmap start

# service nfs start

If you wish to modify any other non-default NFS diretives, modify /etc/sysconfig/nfs .

To restart NFS service

# service nfs restart

# service rpcbind restart

For earlier Fedora versions, instead of rpcbind,

# service portmap restart

To monitor NFS stats

The nfsstat command displays statistical information about RPC calls.

# nfsstats

# nfsstats -o net

Further NFSman page

# man exports

Thursday, April 29, 2010

Mysql with RHEL/Centos/Fedora

1. Identify the Group name of MySQL Packages

yum grouplist displays all package groups that are available in the repository. As shown below, mysql package group is called “MySQL Database”.

# yum grouplist | grep -i mysql
MySQL Database

2. What is bundled in the “MySQL Database” group?

yum groupinfo displays all the packages that are bundled in a group. This displays the mandatory, default and optional packages that are available in that particular group.

As shown below, “MySQL Database” group contains 1 mandatory package, 6 default packages, and 5 optional packages.

# yum groupinfo "MySQL Database"
Group: MySQL Database
Description: This package group contains packages useful for use with MySQL.
Mandatory Packages:
mysql
Default Packages:
MySQL-python
libdbi-dbd-mysql
mysql-connector-odbc
mysql-server
perl-DBD-MySQL
unixODBC
Optional Packages:
mod_auth_mysql
mysql-bench
mysql-devel
php-mysql
qt-MySQL

3. Install the “MySQL Database” group using yum groupinstall

yum groupinstall will install the “MySQL Database” group of packages as shown below.

# yum groupinstall "MySQL Database"

Resolving Dependencies
Dependencies Resolved

Transaction Summary
=========================
Install 12 Package(s)
Update 0 Package(s)
Remove 0 Package(s)

Installed:
MySQL-python.i386 0:1.2.1-1 libdbi-dbd-mysql.i386 0:0.8.1a-1.2.2
mysql.i386 0:5.0.77-4.el5_4.2 mysql-connector-odbc.i386 0:3.51.26r1127-1.el5
mysql-server.i386 0:5.0.77-4.el5_4.2 perl-DBD-MySQL.i386 0:3.0007-2.el5
unixODBC.i386 0:2.2.11-7.1

Dependency Installed:
libdbi.i386 0:0.8.1-2.1 libdbi-drivers.i386 0:0.8.1a-1.2.2
libtool-ltdl.i386 0:1.5.22-7.el5_4
mx.i386 0:2.0.6-2.2.2 perl-DBI.i386 0:1.52-2.el5

Complete!

Note: If you are having some issues during the installation, verify the full mysql install log to see what you are missing.
4. Verify MySQL Installation

Execute rpm -qa, to confirm that the mysql related packages are installed.

# rpm -qa | grep -i mysql
MySQL-python-1.2.1-1
mysql-5.0.77-4.el5_4.2
mysql-connector-odbc-3.51.26r1127-1.el5
mysql-server-5.0.77-4.el5_4.2
libdbi-dbd-mysql-0.8.1a-1.2.2
perl-DBD-MySQL-3.0007-2.el5

Check the /etc/passwd and /etc/group to make sure it has created a mysql username and group.

# grep mysql /etc/passwd
mysql:x:27:27:MySQL Server:/var/lib/mysql:/bin/bash

# grep mysql /etc/group
mysql:x:27:

5. MySQL Post installation – Execute mysql_install_db

mysql_install_db program will setup the necessary grant tables. The mysql_install_db program gets executed as part of the rpm installation. But, it doesn’t hurt to execute the mysql_install_db program again to make sure the grant tables are setup properly.

# /usr/bin/mysql_install_db --user=mysql
Installing MySQL system tables...OK
Filling help tables...OK
.....
The latest information about MySQL is available on the web at http://www.mysql.com

6. Start MySQL Server

# service mysqld status
mysqld is stopped

# service mysqld start
Starting MySQL: [ OK ]

7. Verify that the MySQL server is up and running.

# /usr/bin/mysqladmin version
/usr/bin/mysqladmin Ver 8.41 Distrib 5.0.77, for redhat-linux-gnu on i686
Copyright (C) 2000-2006 MySQL AB
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license

Server version 5.0.77
Protocol version 10
Connection Localhost via UNIX socket
UNIX socket /var/lib/mysql/mysql.sock
Uptime: 39 sec

Threads: 1 Questions: 2 Slow queries: 0 Opens: 12 Flush tables: 1
Open tables: 6 Queries per second avg: 0.051

# /usr/bin/mysqlshow
+--------------------+
| Databases |
+--------------------+
| information_schema |
| mysql |
| test |
+--------------------+

# /usr/bin/mysqlshow mysql
Database: mysql
+---------------------------+
| Tables |
+---------------------------+
| columns_priv |
| db |
| func |
| help_category |
| time_zone_transition |
| time_zone_transition_type |
| user |
+---------------------------+

Stop and start the mysql server again to make sure they are no issues.

# service mysqld stop
Stopping MySQL: [ OK ]

# service mysqld start
Starting MySQL: [ OK ]

8. Change the MySQL root account password

Change the MySQL root account password to something secure.

# mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.0.77 Source distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> select host, user from mysql.user;
+-----------+------+
| host | user |
+-----------+------+
| 127.0.0.1 | root |
| localhost | |
| localhost | root |
+-----------+------+
5 rows in set (0.00 sec)

mysql> set password for 'root'@'localhost' = PASSWORD('DoNotTell$AnyBody');
Query OK, 0 rows affected (0.00 sec)

mysql> set password for 'root'@'127.0.0.1' = PASSWORD('DoNotTell$AnyBody');
Query OK, 0 rows affected (0.00 sec)

Make sure you are able to login to MySQL using the new password as shown below.

# mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 7
Server version: 5.0.77 Source distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

Wednesday, April 28, 2010

File System use for Linux

Ext3
Ext3 is a journaling filesystem developed by Stephen Tweedie. It is compatible to ext2 filesystems; actually you can look at it as an ext2 filesystem with a journal file. The journaling capability means no more waiting for fsck’s or worrying about metadata corruption. What is most noticeable is that you can switch back and forth between ext2 and ext3 on a partition without any problem: it is just a matter of giving the mount command the right filesystem type.

Ext3 FAQ

JFS
The Journaled File System (JFS) provides a log-based, byte-level file system that was developed for transaction-oriented, high performance systems. Scalable and robust, its advantage over non-journaled file systems is its quick restart capability: JFS can restore a file system to a consistent state in a matter of seconds or minutes.

While tailored primarily for the high throughput and reliability requirements of servers ( from single processor systems to advanced multi-processor and clustered systems), JFS is also applicable to client configurations where performance and reliability are desired.

JFS is IBM software.

JFS Overview at IBM Developer Works

ZFS
ZFS is a new kind of file system that provides simple administration, transactional semantics, end-to-end data integrity, and immense scalability.
ZFS includes a pooled storage model, is always consistent on disk, offers protection from data corruption, does live data scrubbing, makes instantaneous snapshots and clones, has fast native backup and restore capabilities, is highly scalable, has built in compression and a simplified administration model.

ZFS is shipped with OpenSolaris.

OpenSolaris Community: ZFS

XFS
XFS is a high-performance journaling filesystem. XFS combines advanced journaling technology with full 64-bit addressing and scalable structures and algorithms. This combination delivers the most scalable high-performance filesystem ever conceived.

XFS is SGI software.

XFS homepage at SGI Developer Central

VXFS
VXFS is the Veritas Filesystem and is distributed through Symantec, who bought Veritas quite a while ago.

Symantec Homepage

Remote
NFS
The Network Filesystem is available on every UNIX-like OS.

Wikipedia about NFS

Open AFS
AFS is a distributed filesystem product, pioneered at Carnegie Mellon University and supported and developed as a product by Transarc Corporation (now IBM Pittsburgh Labs). It offers a client-server architecture for file sharing, providing location independence, scalability, security, and transparent migration capabilities for data.

IBM branched the source of the AFS product, and made a copy of the source available for community development and maintenance. They called the release OpenAFS.

OpenAFS Homepage

CIFS/SAMBA
Samba is an Open Source implementation of Microsoft’s Common Internet Filesystem (CIFS).
CIFS itself is part of all Microsoft Windows versions.
Samba support for IRIX can be bought from SGI itself.

Samba Homepage
CIFS or Public SMB Information on Common Internet File System
Samba for IRIX FAQ

Distributed
Lustre
Lustre is a scalable, secure, robust, highly-available cluster file system. It is designed, developed and maintained by Cluster File Systems, Inc.

The central goal is the development of a next-generation cluster file system which can serve clusters with 10,000′s of nodes, petabytes of storage, move 100′s of GB/sec with state of the art security and management infrastructure.

Lustre runs today on many of the largest Linux clusters in the world, and is included by CFS’s partners as a core component of their cluster offering (examples include HP StorageWorks SFS, and the Cray XT3 and XD1 supercomputers). Today’s users have also demonstrated that Lustre scales down as well as it scales up, and run in production on clusters as small as 4 and as large as 15,000 nodes.

The latest version of Lustre is always available from Cluster File Systems, Inc. Public Open Source releases of Lustre are made under the GNU General Public License. These releases are found here, and are used in production supercomputing environments worldwide.

You may subscribe to the lustre-announce mailing list to be informed of releases.

Lustre development would not have been possible without funding and guidance from many organizations, including several US National Laboratories, early adopters, and product partners.

Lustre Homepage

GPFS
The IBM General Parallel File System (GPFS) is a high-performance shared-disk file system that can provide fast, reliable data access from all nodes in a homogenous or heterogenous cluster of IBM UNIX® servers running either the AIX 5L or the Linux operating system.

GPFS allows parallel applications simultaneous access to a set of files (or even a single file) from any node that has the GPFS file system mounted while providing a high level of control over all file system operations.

GPFS is IBM software.

GPFS Homepage at IBM

GFS
GFS (Global File System) is a cluster file system. It allows a cluster of computers to simultaneously use a block device that is shared between them (with FC, iSCSI, NBD, etc…). GFS reads and writes to the block device like a local filesystem, but also uses a lock module to allow the computers coordinate their I/O so filesystem consistency is maintained. One of the nifty features of GFS is perfect consistency — changes made to the filesystem on one machine show up immediately on all other machines in the cluster.

GFS Homepage at Red Hat

PVFS
The goal of the Parallel Virtual File System (PVFS) Project is to explore the design, implementation, and uses of parallel I/O. PVFS serves as both a platform for parallel I/O research as well as a production file system for the cluster computing community. PVFS is currently targeted at clusters of workstations, or Beowulfs.

PVFS supports the UNIX I/O interface and allows existing UNIX I/O programs to use PVFS files without recompiling. The familiar UNIX file tools (ls, cp, rm, etc.) will all operate on PVFS files and directories as well. This is accomplished via a Linux kernel module which is provided as a separate package.

PVFS stripes file data across multiple disks in different nodes in a cluster. By spreading out file data in this manner, larger files can be created, potential bandwidth is increased, and network bottlenecks are minimized. A 64-bit interface is implemented as well, allowing large (more than 2GB) files to be created and accessed.

The Parallel Virtual Filesystem Project
PVFS 2

Monday, April 26, 2010

How to *.tar/ *.tar.gz/ *.tgz/ *.tar.bz2

1. Creating an archive using tar command
Creating an uncompressed tar archive using option cvf
This is the basic command to create a tar archive.
$ tar cvf archive_name.tar dirname/
In the above command:
c – create a new archive
v – verbosely list files which are processed.
f – following is the archive file name
Creating a tar gzipped archive using option cvzf
The above tar cvf option, does not provide any compression. To use a gzip compression on the tar archive, use the z option as shown below.
$ tar cvzf archive_name.tar.gz dirname/
z – filter the archive through gzip
Note: .tgz is same as .tar.gz
Creating a bzipped tar archive using option cvjf
Create a bzip2 tar archive as shown below:
$ tar cvjf archive_name.tar.bz2 dirname/
j – filter the archive through bzip2
gzip vs bzip2: bzip2 takes more time to compress and decompress than gzip. bzip2 archival size is less than gzip.
Note: .tbz and .tb2 is same as .tar.bz2
Note: I like to keep the ‘cvf’ option unchanged for all archive creation, and add additional option at the end, which is easier to remember. i.e cvf for archive creation, cvzf for compressed gzip archive creation, cvjf for compressed bzip2 archive creation etc.,
2. Extracting (untar) an archive using tar command
Extract a *.tar file using option xvf
Extract a tar file using option x as shown below:
$ tar xvf archive_name.tar
x – extract files from archive
Extract a gzipped tar archive ( *.tar.gz ) using option xvzf
Use the option z for uncompressing a gzip tar archive.
$ tar xvzf archive_name.tar.gz
Extracting a bzipped tar archive ( *.tar.bz2 ) using option xvjf
Use the option j for uncompressing a bzip2 tar archive.
$ tar xvjf archive_name.tar.bz2
Note: In all the above commands v is optional, which lists the file being processed.
3. Listing an archive using tar command
View the tar archive file content without extracting using option tvf
You can view the *.tar file content before extracting as shown below.
$ tar tvf archive_name.tar
View the *.tar.gz file content without extracting using option tvzf
You can view the *.tar.gz file content before extracting as shown below.
$ tar tvzf archive_name.tar.gz
View the *.tar.bz2 file content without extracting using option tvjf
You can view the *.tar.bz2 file content before extracting as shown below.
$ tar tvjf archive_name.tar.bz2
4. Extract a single file from tar, tar.gz, tar.bz2 file
To extract a specific file from a tar archive, specify the file name at the end of the tar xvf command as shown below. The following command extracts only a specific file from a large tar file.
$ tar -xvf archive_file.tar /path/to/file
Use the relevant option z or j according to the compression method gzip or bzip2 respectively as shown below.
$ tar -xvzf archive_file.tar.gz /path/to/file

$ tar -xvjf archive_file.tar.bz2 /path/to/file
5. Extract a single directory from tar, tar.gz, tar.bz2 file
To extract a single directory (along with it’s subdirectory and files) from a tar archive, specify the directory name at the end of the tar xvf command as shown below. The following extracts only a specific directory from a large tar file.
$ tar -xvf archive_file.tar /path/to/dir/
To extract multiple directories from a tar archive, specify those individual directory names at the end of the tar xvf command as shown below.
$ tar -xvf archive_file.tar /path/to/dir1/ /path/to/dir2/
Use the relevant option z or j according to the compression method gzip or bzip2 respectively as shown below.
$ tar -xvzf archive_file.tar.gz /path/to/dir/

$ tar -xvjf archive_file.tar.bz2 /path/to/dir/
6. Extract group of files from tar, tar.gz, tar.bz2 archives using regular expression
You can specify a regex, to extract files matching a specified pattern. For example, following tar command extracts all the files with pl extension.
$ tar -xvf archive_file.tar --wildcards '*.pl'
Options explanation:
–wildcards *.pl – files with pl extension
7. Adding a file or directory to an existing archive using option -r
You can add additional files to an existing tar archive as shown below. For example, to append a file to *.tar file do the following:
$ tar rvf archive_name.tar newfile
This newfile will be added to the existing archive_name.tar. Adding a directory to the tar is also similar,
$ tar rvf archive_name.tar newdir/
Note: You cannot add file or directory to a compressed archive. If you try to do so, you will get “tar: Cannot update compressed archives” error as shown below.
$ tar -rvzf archive_name.tgz newfile
tar: Cannot update compressed archives
Try `tar --help' or `tar --usage' for more information.
8. Verify files available in tar using option -W
As part of creating a tar file, you can verify the archive file that got created using the option W as shown below.
$ tar cvfW file_name.tar dir/
If you are planning to remove a directory/file from an archive file or from the file system, you might want to verify the archive file before doing it as shown below.
$ tar tvfW file_name.tar
Verify 1/file1
1/file1: Mod time differs
1/file1: Size differs
Verify 1/file2
Verify 1/file3
If an output line starts with Verify, and there is no differs line then the file/directory is Ok. If not, you should investigate the issue.
Note: for a compressed archive file ( *.tar.gz, *.tar.bz2 ) you cannot do the verification.
Finding the difference between an archive and file system can be done even for a compressed archive. It also shows the same output as above excluding the lines with Verify.
Finding the difference between gzip archive file and file system
$ tar dfz file_name.tgz
Finding the difference between bzip2 archive file and file system
$ tar dfj file_name.tar.bz2
9. Estimate the tar archive size
The following command, estimates the tar file size ( in KB ) before you create the tar file.
$ tar -cf - /directory/to/archive/ | wc -c
20480
The following command, estimates the compressed tar file size ( in KB ) before you create the tar.gz, tar.bz2 files.
$ tar -czf - /directory/to/archive/ | wc -c
508

$ tar -cjf - /directory/to/archive/ | wc -c
428

Saturday, April 17, 2010

Netstat Command Fedora/Centos/RedHat/

1. List All Ports (both listening and non listening ports)

List all ports using netstat -a
# netstat -a | more
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 localhost:30037 *:* LISTEN
udp 0 0 *:bootpc *:*

Active UNIX domain sockets (servers and established)
Proto RefCnt Flags Type State I-Node Path
unix 2 [ ACC ] STREAM LISTENING 6135 /tmp/.X11-unix/X0
unix 2 [ ACC ] STREAM LISTENING 5140 /var/run/acpid.socket
List all tcp ports using netstat -at
# netstat -at
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 localhost:30037 *:* LISTEN
tcp 0 0 localhost:ipp *:* LISTEN
tcp 0 0 *:smtp *:* LISTEN
tcp6 0 0 localhost:ipp [::]:* LISTEN
List all udp ports using netstat -au
# netstat -au
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State
udp 0 0 *:bootpc *:*
udp 0 0 *:49119 *:*
udp 0 0 *:mdns *:*
2. List Sockets which are in Listening State

List only listening ports using netstat -l
# netstat -l
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 localhost:ipp *:* LISTEN
tcp6 0 0 localhost:ipp [::]:* LISTEN
udp 0 0 *:49119 *:*
List only listening TCP Ports using netstat -lt
# netstat -lt
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 localhost:30037 *:* LISTEN
tcp 0 0 *:smtp *:* LISTEN
tcp6 0 0 localhost:ipp [::]:* LISTEN
List only listening UDP Ports using netstat -lu
# netstat -lu
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
udp 0 0 *:49119 *:*
udp 0 0 *:mdns *:*
List only the listening UNIX Ports using netstat -lx
# netstat -lx
Active UNIX domain sockets (only servers)
Proto RefCnt Flags Type State I-Node Path
unix 2 [ ACC ] STREAM LISTENING 6294 private/maildrop
unix 2 [ ACC ] STREAM LISTENING 6203 public/cleanup
unix 2 [ ACC ] STREAM LISTENING 6302 private/ifmail
unix 2 [ ACC ] STREAM LISTENING 6306 private/bsmtp
3. Show the statistics for each protocol

Show statistics for all ports using netstat -s
# netstat -s
Ip:
11150 total packets received
1 with invalid addresses
0 forwarded
0 incoming packets discarded
11149 incoming packets delivered
11635 requests sent out
Icmp:
0 ICMP messages received
0 input ICMP message failed.
Tcp:
582 active connections openings
2 failed connection attempts
25 connection resets received
Udp:
1183 packets received
4 packets to unknown port received.
.....
Show statistics for TCP (or) UDP ports using netstat -st (or) -su
# netstat -st

# netstat -su
4. Display PID and program names in netstat output using netstat -p

netstat -p option can be combined with any other netstat option. This will add the “PID/Program Name” to the netstat output. This is very useful while debugging to identify which program is running on a particular port.

# netstat -pt
Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 1 0 ramesh-laptop.loc:47212 192.168.185.75:www CLOSE_WAIT 2109/firefox
tcp 0 0 ramesh-laptop.loc:52750 lax:www ESTABLISHED 2109/firefox
5. Don’t resolve host, port and user name in netstat output

When you don’t want the name of the host, port or user to be displayed, use netstat -n option. This will display in numbers, instead of resolving the host name, port name, user name.

This also speeds up the output, as netstat is not performing any look-up.

# netstat -an
If you don’t want only any one of those three items ( ports, or hosts, or users ) to be resolved, use following commands.

# netsat -a --numeric-ports

# netsat -a --numeric-hosts

# netsat -a --numeric-users
6. Print netstat information continuously

netstat will print information continuously every few seconds.

# netstat -c
Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 ramesh-laptop.loc:36130 101-101-181-225.ama:www ESTABLISHED
tcp 1 1 ramesh-laptop.loc:52564 101.11.169.230:www CLOSING
tcp 0 0 ramesh-laptop.loc:43758 server-101-101-43-2:www ESTABLISHED
tcp 1 1 ramesh-laptop.loc:42367 101.101.34.101:www CLOSING
^C
7. Find the non supportive Address families in your system

netstat --verbose
At the end, you will have something like this.

netstat: no support for `AF IPX' on this system.
netstat: no support for `AF AX25' on this system.
netstat: no support for `AF X25' on this system.
netstat: no support for `AF NETROM' on this system.
8. Display the kernel routing information using netstat -r

# netstat -r
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.1.0 * 255.255.255.0 U 0 0 0 eth2
link-local * 255.255.0.0 U 0 0 0 eth2
default 192.168.1.1 0.0.0.0 UG 0 0 0 eth2
Note: Use netstat -rn to display routes in numeric format without resolving for host-names.

9. Find out on which port a program is running

# netstat -ap | grep ssh
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 1 0 dev-db:ssh 101.174.100.22:39213 CLOSE_WAIT -
tcp 1 0 dev-db:ssh 101.174.100.22:57643 CLOSE_WAIT -
Find out which process is using a particular port:

# netstat -an | grep ':80'
10. Show the list of network interfaces

# netstat -i
Kernel Interface table
Iface MTU Met RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg
eth0 1500 0 0 0 0 0 0 0 0 0 BMU
eth2 1500 0 26196 0 0 0 26883 6 0 0 BMRU
lo 16436 0 4 0 0 0 4 0 0 0 LRU
Display extended information on the interfaces (similar to ifconfig) using netstat -ie:

# netstat -ie
Kernel Interface table
eth0 Link encap:Ethernet HWaddr 00:10:40:11:11:11
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Memory:f6ae0000-f6b00000

Thursday, April 8, 2010

Using bridged networking with Virt-manager

To do this, we install the package bridge-utils...

yum install bridge-utils

... and configure a bridge. Create the file /etc/sysconfig/network-scripts/ifcfg-br0 (please use the BOOTPROTO, BROADCAST, IPADDR, NETMASK and NETWORK values from the /etc/sysconfig/network-scripts/ifcfg-eth0 file):

vi /etc/sysconfig/network-scripts/ifcfg-br0

DEVICE=br0
TYPE=Bridge
BOOTPROTO=static
BROADCAST=192.168.0.255
IPADDR=192.168.0.100
NETMASK=255.255.255.0
NETWORK=192.168.0.0
ONBOOT=yes

Modify /etc/sysconfig/network-scripts/ifcfg-eth0 as follows (comment out BOOTPROTO, BROADCAST, IPADDR, NETMASK, and NETWORK and add BRIDGE=br0):

vi /etc/sysconfig/network-scripts/ifcfg-eth0

# Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+
DEVICE=eth0
#BOOTPROTO=static
#BROADCAST=192.168.0.255
HWADDR=00:10:A7:05:AF:EB
#IPADDR=192.168.0.100
#NETMASK=255.255.255.0
#NETWORK=192.168.0.0
ONBOOT=yes
BRIDGE=br0

Restart the network...

/etc/init.d/network restart

... and run

ifconfig

It should now show the network bridge (br0):

[root@rajat1 ~]# ifconfig
br0 Link encap:Ethernet HWaddr 00:10:A7:05:AF:EB
inet addr:192.168.0.100 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::210:a7ff:fe05:afeb/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:17 errors:0 dropped:0 overruns:0 frame:0
TX packets:53 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1160 (1.1 KiB) TX bytes:14875 (14.5 KiB)

eth0 Link encap:Ethernet HWaddr 00:10:A7:05:AF:EB
inet6 addr: fe80::210:a7ff:fe05:afeb/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:13662 errors:7 dropped:160 overruns:4 frame:0
TX packets:11646 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:15144608 (14.4 MiB) TX bytes:1379942 (1.3 MiB)
Interrupt:74 Base address:0xcc00

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:38 errors:0 dropped:0 overruns:0 frame:0
TX packets:38 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:4308 (4.2 KiB) TX bytes:4308 (4.2 KiB)

virbr0 Link encap:Ethernet HWaddr 00:00:00:00:00:00
inet addr:192.168.122.1 Bcast:192.168.122.255 Mask:255.255.255.0
inet6 addr: fe80::200:ff:fe00:0/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:35 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:9987 (9.7 KiB)

[root@rajat1 ~]# brctl show

bridge name bridge id STP enabled interfaces
pan0 8000.000000000000 no
virbr0 8000.000000000000 yes
br0 8000.0019b97ec863 yes eth0

Tuesday, March 23, 2010

Free OS and Software

Debian, Kubuntu, Ubuntu, Xandros, SUSE, Red Hat, Fedora, CentOS, Linspire, Mandriva, Slackware, Open BSD, Gnome, KDE, MySQL, PostgreSQL, PostGIS, Slony, Zarafa, eGroupware, Kolab Groupware, Scalix, SugarCRM, vTiger, CITADEL, Mozilla-Firefox, Mozilla-Suite, OpenOffice, LibreOffice, Thunderbird, Wine, Apache, hadoop, Nginx Drupla, Joomla, Jboss, Wordpress, WebGUI,  Tomcat, TiKi WiKi, Wikimedia, Asterisk, OpenSER, FreePBX, OpenPBX, CallWeaver, SpamAssassin, ClamAV, OpenLDAP, OTRS, RT, Samba, Cyrus, Dovecot, Exim, Postfix, sendmail, Amanda, Bacula, DRBD, Heartbeat, Keepalived, Nagios, Zabbix, Zenoss, Open Security Filter, Ferm, FAI, Moodle, Squid, XEN, KVM, OpenVZ, Xenserver, Eucalyptus, OpenQRM, Opennebula, VirtualBox, Mondorescue, Spacewalk, Convirture, OpenVPN, VLC, PiTiVi, XBMC, dimdim, Puppet, osclass, Django, Affelio, AROUNDMe, BuddyPress, Elgg, iSocial, Mahara, Xoops, Magento, Jcow, Jinzora, OpenStack.

All Above product support available free of cost :D

Monday, March 8, 2010

Fedora Talking to you

# [root@rajat Rajat]# yum install espeak
Loaded plugins: presto, refresh-packagekit
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package espeak.x86_64 0:1.40.02-3.fc12 set to be updated
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
espeak x86_64 1.40.02-3.fc12 fedora 605 k

Transaction Summary
================================================================================
Install 1 Package(s)
Upgrade 0 Package(s)

Total download size: 605 k
Is this ok [y/N]: y
Downloading Packages:
Setting up and reading Presto delta metadata
Processing delta metadata
Package(s) data still to download: 605 k
espeak-1.40.02-3.fc12.x86_64.rpm | 605 kB 00:14
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : espeak-1.40.02-3.fc12.x86_64 1/1

Installed:
espeak.x86_64 0:1.40.02-3.fc12

Complete!

Example 1: Speak the words specified in command line

This is the default usage.

# espeak --stdout 'words to speak' | aplay

Note: The above may also display the following message: “Playing WAVE ’stdin’ : Signed 16 bit Little Endian, Rate 22050 Hz, Mono”
Example 2: Speak the words specified in stdin

This will take the words interactively from the standard input and convert it to speech.

# espeak --stdout | aplay

Example 3: Speak your document

This will convert the text from the mydocument.txt to speech.

# espeak --stdout -t mydocument.txt | aplay

Example 4: Generate voice file from text document

Convert your text file to an audio file as shown below.

# espeak -t mydocument.txt -w myaudio.wav

Customizing espeak

If you find the default speech synthesizing is not good, you can try to customize it as explained below.
Example 5: List all available voice languages

# espeak --voices
Pty Language Age/Gender VoiceName File Other Langs
5 af M afrikaans af
5 bs M bosnian bs
5 ca M catalan ca
5 cs M czech cs
5 cy M welsh-test cy
5 de M german de
5 el M greek el
5 en M default default
5 en-sc M en-scottish en/en-sc (en 4)
.......

Example 6: Choose a different voice language

The following will use “en-uk” – British english to translate the text to speech.

# espeak -v en-uk --stdout 'reading tips & tricks in TGS' | aplay

Example 7: Increase or Decrease the number of spoken words per minute.

The default is 160 words per minute. You can reduce it using option -s as shown below.

# espeak -s 140 -f mydocument.txt | aplay

Example 8: List the available espeak voices in specific language

The following example will display all possible english language variation that you can use for your text to speech conversion.

# espeak --voice=en
Pty Language Age/Gender VoiceName File Other Langs
2 en-uk M english en/en (en 2)
3 en-uk M english-mb-en1 mb/mb-en1 (en 2)
2 en-us M english-us en/en-us (en-r 5)(en 3)
5 en-sc M en-scottish en/en-sc (en 4)
5 en M default default
.....

Monday, February 15, 2010

Setting DNS Server with Bind

/etc/named.conf.

zone "chida.in" {
type master;
notify no;
allow-query { any; };
file "chida.zone";
};

zone "yeswedeal.com" {
type master;
notify no;
allow-query { any; };
file "yeswedeal.zone";
};

zone "0.168.192.in-addr.arpa" {
type master;
notify no;
file "192-168-0.zone";
};

chida.zone
# vi /var/named/chroot/var/named/chida.zone

$TTL 3D
@ IN SOA ns1.chida.in. hostmaster.chida.in. (
200211152 ; serial#
3600 ; refresh, seconds
3600 ; retry, seconds
3600 ; expire, seconds
3600 ) ; minimum, seconds

NS www ; Inet Address of nameserver
chida.in. MX 10 mail ; Primary Mail Exchanger

localhost A 127.0.0.1
server A 192.168.0.1
mail A 192.168.0.2
ns1 CNAME server
www CNAME server

yeswedeal.zone
# vi /var/named/chroot/var/named/yeswedeal.zone

$TTL 3D
@ IN SOA ns1.yeswedeal.com. hostmaster.yeswedeal.com. (
200211152 ; serial#
3600 ; refresh, seconds
3600 ; retry, seconds
3600 ; expire, seconds
3600 ) ; minimum, seconds

NS www ; Inet Address of nameserver
yeswedeal.com. MX 10 mail ; Primary Mail Exchanger

localhost A 127.0.0.1
server A 192.168.0.1
mail A 192.168.0.3
ns1 CNAME server
www CNAME server

192-168-0.zone
# vi /var/named/chroot/var/named/192-168-0.zone

$TTL 3D
@ IN SOA www.chida.in. hostmaster.chida.in. (
200303301 ; serial number
8H ; refresh, seconds
2H ; retry, seconds
4W ; expire, seconds
1D ) ; minimum, seconds

NS www ; Nameserver Address

$TTL 3D
@ IN SOA www.yeswedeal.com. hostmaster.yeswedeal.com. (
200303301 ; serial number
8H ; refresh, seconds
2H ; retry, seconds
4W ; expire, seconds
1D ) ; minimum, seconds

NS www ; Nameserver Address



# chkconfig named on


# /etc/init.d/named { start | stop | status | restart }


# dig www.chida.in


# nslookup www.yeswedeal.com

Saturday, February 13, 2010

RHEL-CentOS cluster.conf Schema Description

Tag:
Attributes:

* name (required): The name of the cluster you have configured.
* config_version (required): Specifies a revision number for the cluster.conf file.
In order to successfully propagate a new configuration file,
this parameter must be higher than current value, i.e. monotonically increasing order.
* Alias: Pretty name for cluster that is not parsed by cluster
tag software; only the gui uses this value.

Example: ==== ====
Tag: Fence_xvm daemon startup flag
Note: This tag is optional. fence_xvmd is an I/O Fencing host which resides on dom0 and is used in conjunction with the fence_xvm fencing agent. Together, these two programs can be used to fence can be used to fence Xen virtual machines which are part of a cluster. There is a requirement that the parent dom0s are also a part of their own CMAN/OpenAIS based cluster, and that the dom0 cluster does not share any members with the domU cluster. Furthermore, the dom0 cluster is required to have fencing if domU recovery is expected to be automatic.
Parent Tag:
Attributes:

* family (Optional): IP family to use (auto, ipv4, or ipv6; default = auto)
* multicast_address (Optional): Multicast address to listen on (default=225.0.0.12 for ipv4, ff02::3:1 for ipv6)
* port (Optional): Port to use (default=1229)
* auth (Optional): Authentication type (none, sha1, sha256, sha512; default=sha256). This controls the authentication mechanism used to authenticate clients. The three SHA hashes use a key which must be shared between both the Xen virtual machines and the host domain-0 cluster. The three SHA authentication mecha- nisms use a simple bidirectional challenge-response based on pseudo- random number generation and a shared private key.
* hash (Optional): Packet hash type (none, sha1, sha256, sha512; default=sha256). This controls the hashing mechanism used to authenticate fencing requests. The three SHA hashes use a key which must be shared between both the Xen virtual machines and the host domain-0 cluster.
* key_file (Optional): Use the specified key file for packet hashing / SHA authentication. When both the hash type and the authentication type are set to "none" (or not used), this parameter is ignored.
* use_uuid=1 (Optional): Fence by UUID instead of Xen Domain name.

Tag: OpenAIS msg transport protocol
Parent Tag:
Attributes:

* token (Optional): This timeout specifies in milliseconds until a token loss is declared after not receiving a token. This is the time spent detecting a failure of a processor in the current configuration. Reforming a new configuration takes about 50 milliseconds in addition to this timeout.

The default is 10000 milliseconds.
* token_retransmits_before_loss_const (Optional): This timeout specifies in milliseconds after how long before receiving a token the token is retransmitted. This will be automatically calculated if token is modified. It is not recommended to alter this value without guidance from the openais community.

The default is 20 milliseconds.
* join (Optional): This timeout specifies in milliseconds how long to wait for join messages in the membership protocol.

The default is 60 milliseconds.
* consensus (Optional): This timeout specifies in milliseconds how long to wait for consensus to be achieved before starting a new round of membership configuration.

The default is 4800 milliseconds.

Tag: CMAN service configuration
Parent Tag:
Attributes:

Tag:
Parent Tag:
Attributes:
o addr: Address for multicasting.
Cman can be configured to use multicast instead
of broadcast (broadcast is used by default if no
multicast parameters are given.) Example: ==== ====
Tag: Fence Daemon Configuration
Parent Tag:
Attributes:
o post_join_delay: The number of seconds the daemon will wait before
fencing any victims after a node joins the domain.
o post_fail_delay: The number of seconds the daemon will wait before
fencing any victims after a domain member fails.
o clean_start: Used to prevent any start up fencing the daemon might
do. It indicates that the daemon should assume all nodes
are in a clean state to start.
Example: ==== ====
A Note On Fencing
Fencing is specified within the cluster.conf file in two places. The first place is within the tag. Any device used for fencing a node must be defined here as a first. This applies to power switches (APC, WTI, etc.) with multiple ports that are able to fence multiple cluster nodes, as well as fabric switches and baseboard management fence strategies (iLO, RSA, IPMI, Drac, etc.) that are usually 1 to 1 in nature; that is, one specified fence device is able to fence only one node. After defining the fence devices to be used in the cluster, it is necessary to associate the fence device listings with specific cluster nodes. The second place that fencing is specified within cluster.conf is within the tag. Beneath the tag, is a tag. Beneath the tag is one or more tag sets. Within a tag set, is a tag set. This is where the actual association between and node takes place. A tag has a required "name" attribute that refers to the name of one of the 's specified in the section of cluster.conf. More about blocks: A method block is like a fence level. If a primary fence method is selected, yet the user wants to define a backup method in case the first fence method fails, this is done by defining two d blocks for a cluster node, each with a unique name parameter. The fence daemon will call each fence method in the order they are specified under the tag set. Fence specification within cluster.conf offers one other feature for customizing fence action. Within a block, it is allowable to list more than one . This is useful when fencing a node with redundant power supplies, for example. The fence daemon will run the agent for each device listed within a block before determining success or failure.
Tag: Contains all fencing device information.
Parent Tag:
Attributes: None
Tag: Information about one fence device in particular.
Parent Tag:
Attributes:
o name (required by ALL fence devices): Name of the fence device.
o agent (required by ALL fence devices): Specifies fence agent to be used. See
agent list in Table 1 below.
o The following tables list attributes depending on which fence agent is used (all of these attributes listed below are attributes):
Type: APC Power Switch
attributes
name reference name for this device within the conf file
agent fence_apc
ipaddr IP address of the device.
login login name for device.
passwd password.
attributes
name reference to the fence device name attribute above
port switch outlet port
switch Optional: switch number when ganging Masterswitch Plus switches
option Action required. 'Reboot' (default action if this attr is not present)
'Off' or 'On'

Type: Brocade Fabric Switch
attributes
name reference name for this device within the conf file
agent fence_brocade
ipaddr IP address of the device.
login login name for device.
passwd password.
attributes
name reference to the fence device name attribute above
port switch port
option Action required. 'disable' (default action if this attr is not present)
or 'enable'

Type: McData SAN Switch
attributes
name reference name for this device within the conf file
agent fence_mcdata
ipaddr IP address of the device.
login login name for device.
passwd password.
attributes
name reference to the fence device name attribute above
port switch port
option Action required. 'disable' (default action if this attr is not present)
or 'enable'

Type: QLogic SANBox2
attributes
name reference name for this device within the conf file
agent fence_sanbox2
ipaddr IP address of the device.
login login name for device.
passwd password.
attributes
name reference to the fence device name attribute above
port switch port
option Action required. 'disable' (default action if this attr is not present)
or 'enable'

Type: IBM Blade Center
attributes
name reference name for this device within the conf file
agent fence_bladecenter
ipaddr IP address of the device.
login login name for device.
passwd password.
attributes
name reference to the fence device name attribute above
blade the blade to operate on
option Action required. 'disable' (default action if this attr is not present)
or 'enable'

Type: Bull PAP
attributes
name reference name for this device within the conf file
agent fence_bullpap
ipaddr IP address of the device.
login login name for device.
passwd password.
attributes
name reference to the fence device name attribute above
domain Domain of the BullPAP system to power cycle
option Action required. 'reboot' (default action if this attr is not present)
'on' or 'off'

Type: IPMI Lan
attributes
name reference name for this device within the conf file
agent fence_ipmilan
ipaddr IP address of the device.
login login name for device.
passwd password.
auth Authentication Type: none, 'password', 'md2', or 'md5'
lanplus Use lanplus: 'True' or '1'; leave
out for false (only in RHEL4.5 CS and later)
attributes
name reference to the fence device name attribute above
option Action required. 'reboot' (default action if this attr is not present)
'on' or 'off'

Type: WTI Power Switch
attributes
name reference name for this device within the conf file
agent fence_wti
ipaddr IP address of the device.
passwd password.
attributes
name reference to the fence device name attribute above
port The switch outlet port to power cycle

Type: Vixel SAN Switch
attributes
name reference name for this device within the conf file
agent fence_vixel
ipaddr IP address of the device.
passwd password.
attributes
name reference to the fence device name attribute above
port The switch port to remove zoning from

Type: HP ilo (Integrated Lights Out)
attributes
name reference name for this device within the conf file
agent fence_ilo
hostname Hostname or IP Address of the device.
login Login for the device.
passwd password for the device.
ribcl RIBCL protocol version to use. Default action
if this attr is not present is to autodetect
attributes
name reference to the fence device name attribute above
action Action required. 'reboot' (default action if this attr is not present)
'on' or 'off'
force Optional parameter. If set to '1' (force='1'), status will not be initially checked before fencing. The use of this
attribute significantly speeds up fencing on this device type.

Type: Global Network Block Device (GNBD)
attributes
name reference name for this device within the conf file
agent fence_gnbd
servers A whitespace separated list of servers
attributes
name reference to the fence device name attribute above

Type: Egenera SAN Controller
attributes
name reference name for this device within the conf file
agent fence_egenera
cserver The cserver to ssh to...the cserver can
be of the form user@hostname to log in as a particular user
esh The path to the esh command on the cserver
(default is /opt/pan-mgr/bin/esh if this attr is not present)
attributes
name reference to the fence device name attribute above
lpan The lpan to use
pserver The pserver to fence for this node
action Action required. 'reboot' (default action if this attr is not present)
'on' or 'off'

Type: IBM RSA II
attributes
name reference name for this device within the conf file
agent fence_rsa
ipaddr IP Address or Hostname of the device.
login Login for the device.
passwd password for the device.
attributes
name reference to the fence device name attribute above
option Action required. 'Reboot' (default action if this attr is not present)
'On' or 'Off'

Type: RPS10 Serial Switch
attributes
name reference name for this device within the conf file
agent fence_rps10
device Device name.
port Port to fence.
attributes
name reference to the fence device name attribute above

Type: Dell DRAC
attributes
name reference name for this device within the conf file
agent fence_drac
ipaddr Hostname or IP Address of the device.
login Login for the device.
passwd password for the device.
drac_version Force fence agent to use a particular version of DRAC
firmware. The default action when not including this
attr is to auto-detect
cmd_prompt Optional: Force fence_drac to use this value as the command prompt.
attributes
name reference to the fence device name attribute above
action Action required. 'reboot' (default action if this attr is not present)
'on' or 'off'
modulename Optional: used when employing DRAC/MC multi-chassis version

Type: Manual Fencing
attributes
name reference name for this device within the conf file
agent fence_manual
attributes
name reference to the fence device name attribute above

Example: ==== ====
Tag: Cluster Nodes Configuration: contains 1 or more tags.>br/> Parent Tag:
Attributes: None
Tag: Per Node configuration
Parent Tag:
Attributes:
+ name(Required): The hostname or IP Address of the node
+ votes(Optional - default is 1): number of votes node can cast
+ nodeid (Required): Each node must have a unique integer value node ID. A node’s application to join the cluster
may be rejected if you try to set the nodeid to one that
is already used.
Example: ==== ====
Tag: fencing information for the node.
Parent Tag:
Attributes: None
#
Tag: defines a method for fencing the machine.
Parent Tag:
Attributes:
* name (required): name for the fencing method, if GUI generated, it is a number.
*
Tag: The device used to fence the node
Parent Tag:
Attributes: See section of this document for agent specific attributes for the tag.
Example: ==== ====
====
Tag: The RM block holds resources, failover domains and any number of 'group' (\= resourcegroup) blocks
Parent Tag:
Attributes:
o log_level (Optional): An integer 0-7, inclusive for all
levels less than the selected. 0, system is unusable, emergency;
1 action must be taken immediately;
2, critical conditions;
3, error conditions;
4, warning conditions;
5, normal but significant condition;
6, informational;
7, debug-level messages.
o log_facility The facility is one of the following keywords:
auth, authpriv, cron, daemon, kern, lpr, mail, news, syslog,
user, uucp and local0 through local7.
o Example: ==== ====
Tag: All the tags go under here. Parent Tag: Attributes: None
Tag: Specify properties of specific failover domains Parent Tag: Attributes:
o name (Required): the name of the failover domain
o ordered: Set value to '1' if the failover domain is ordered, '0' if not - default is unordered.
o restricted: Set value to '1' if failover domain is restricted, '0' if not - default is unrestricted.
Tag: An individual node within a failover domain. Parent Tag: Attributes:
o name (Required): name of the node.
o priority (Required): a number representing the priority, with lower numbers having higher priority.
Example: ==== ====

Tuesday, February 2, 2010

Darwin Streaming Server On RHEL/Fedora for Mobile Phones

Step 1

yum -y install vlc

yum -y install perl-Net-SSLeay

wget http://www.abrahamsson.com/DarwinStreamingServer-6.0.3-1.i386.rpm

wget http://www.abrahamsson.com/DarwinStreamingServer-Samples-6.0.3-1.i386.rpm

wget http://www.abrahamsson.com/DarwinStreamingServer-6.0.3-1.src.rpm # if you got .rpm

wget http://www.abrahamsson.com/DarwinStreamingServer-Utils-6.0.3-1.i386.rpm

wget http://www.abrahamsson.com/DarwinStreamingServer-debuginfo-6.0.3-1.i386.rpm

wget http://www.abrahamsson.com/dss-6.0.3.patch #patch for Linux x86-64 platform

Disabling MP3 streaming

You may choose to run a different server, such as Icecast or Shoutcast for MP3 streaming. If you do that, you may like to disable MP3 streaming in Darwin Streaming Server. Do this by changing the option for mp3_streaming_enabled under the MODULE section for QTSSMP3StreamingModule from true to false. E.g.:



...
false
..




Disabling all authentication

You can disable all authentication for the whole of Darwin Streaming Server by editing the file /etc/streaming/streamingserver.xml and by changing the option for Authenticate under the MODULE section for QTSSAdminModule from true to false. E.g.:



...
false
...




options if require patch -p0 < dss-6.0.3.patchkillall -9 DarwinStreamingServerTo change the administrator account from the default password of “password” use the following command:qtpasswd administratorSo DSS starts at boot up run the following:chkconfig --level 345 dss on Configuring Darwin Streaming ServerNow open a browser and point the address to http://:1220 and log in with the username administrator and the password you choose when running qtpasswd.

You can now test your install by opening QuickTime on a client (either Windows or the Mac) and using one of the sample files installed by Darwin.

File > Open URL and type rtsp:///sample_300kbit.mov

Save the file and upload the file to server. Move the file to /var/dss/movies; open QuickTime and select File > Open URL and type rtsp:///movie.mov and the file should stream.

http://wiki.videolan.org/Documentation:Streaming_HowTo/Streaming_a_live_video_feed_to_Darwin_Streaming_Server_for_Mobile_Phones

#vlc -vvv v4l2:///dev/video0:input=1:width=128:height=96:adev=hw.1,0:samplerate=32000 --sout '#transcode{venc=ffmpeg{keyint=1},vcodec=mp4v,vb=100k,acodec=mp4a,fps=10,ab=8k,channels=1,samplerate=16000}:rtp{mp4a-latm,dst=127.0.0.1,port-audio=20000,port-video=20002,ttl=127,name=CHANNEL,sdp=file:///usr/local/movies/channel.sdp}'

where:

* v4l2:///dev/video0 is the video device you want you want to stream,
* input=1 is the input channel of the video device (0 - tv tuner, 1 - composite),
* width=128:height=96 is the width and height of the input video signal to fetch by VLC,
* adev=hw.1,0 is the alsa audio device to capture audio from,
* samplerate=32000 is the input sample rate of the audio live feed,
* venc=ffmpeg is the encoder used (in this case it's ffmpeg, but you can use x264),
* {keyint=1} is the advanced ffmpeg encoder switches,
* vcodec=mp4v is video codec used to encode this live video feed (in this case it's MPEG4),
* vb=100k is the video bitrate (100 kbits/s is this case),
* acodec=mp4a is the audio codec used (is this case it's AAC),
* fps=10 is the frame rate of the video feed,
* ab=8k is the audio bitrate (is this case 8 kbits/s),
* mp4a-latm is only used for aac audio, it activates a different payload format for aac,
* dst=127.0.0.1 is the destination IP, where Darwin Streaming Server is hosted,
* ttl=127 is the value of the TTL (Time To Live) of your IP packets (which means that the stream will be able to cross 126 routers),
* sdp=file:///usr/local/movies/channel.sdp is where to create the SDP file for live streaming with Darwin Streaming Server (it should be inside of the DSS movies folder),
* name=CHANNEL is the name of the live video feed.

Tested on Nokia N73 and SE K800.


There is a small problem with some Nokia phones and Darwin Streaming Servers, that need a line to be edited in the created SDP file (for example):

* from b=RR:0 to b=RR:800

After running this command from console, you can access it from your mobile phone or VLC or any player that supports RTSP protocol

* rtsp://192.168.1.2/channel.sdp

where

* 192.168.1.2 is the IP address of the machine where DSS is running.

 
 
 
 
Posted by Picasa

 
 
 
 
Posted by Picasa

 
 
 
 
Posted by Picasa



Step 2

#!/bin/bash

sudo yum install build-essential wget
sudo addgroup --system qtss
sudo adduser --system --no-create-home --ingroup qtss qtss

wget http://static.macosforge.org/dss/downloads/DarwinStreamingSrvr6.0.3-Source.tar
tar -xvf DarwinStreamingSrvr6.0.3-Source.tar
mv DarwinStreamingSrvr6.0.3-Source DarwinStreamingSrvr6.0.3-Source.orig
wget http://dss.macosforge.org/trac/raw-attachment/ticket/6/dss-6.0.3.patch
patch -p0 < dss-6.0.3.patch
mv DarwinStreamingSrvr6.0.3-Source.orig DarwinStreamingSrvr6.0.3-Source
wget http://dss.macosforge.org/trac/raw-attachment/ticket/6/dss-hh-20080728-1.patch
patch -p0 < dss-hh-20080728-1.patch
#need to answer n then y
cd DarwinStreamingSrvr6.0.3-Source
mv Install Install.orig
wget http://dss.macosforge.org/trac/raw-attachment/ticket/6/Install
chmod +x Install
./Buildit
sudo ./Install