This guide will explain you how to upgrade Fedora 19 to Fedora 20.
Note: I have followed below way to upgrade Fedora 17 to Fedora 19 directly. Though face some challenges but able to resolve all.
Before Upgrade:
Better to take Backup of all important directories because if anything goes wrong and you need to install Fedora 20 from scratch so you have backup everything.
Continue Reading
How to verify zip file in linux.
# unzip -t filename.zip | grep -v OK
Archive: filename.zip
No errors detected in compressed data of filename.zip.
How to kill all process of particular user.
pgrep -u username | xargs kill -9
Read More »
With Below command you can take mysql database backup.
mysqldump -u root -p userdb > userdb.sql Continue ReadingRead More »
Below script will do five iterations.
#!/bin/bash
i=1
while [ $i -le 5 ] Continue Reading