-
Aug 1 |
LAMP |
Noman |
2107 Views |
with No Comments
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...
-
Jul 30 |
SCRIPTING |
Noman |
2332 Views |
with No Comments
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....
-
Jul 30 |
SCRIPTING |
Noman |
2192 Views |
with No Comments
How to kill all process of particular user. pgrep -u username | xargs kill -9...
-
Jul 28 |
LAMP |
Noman |
2022 Views |
with No Comments
With Below command you can take mysql database backup. mysqldump -u root -p userdb > userdb.sql...
-
Jul 28 |
SCRIPTING |
Noman |
2206 Views |
with No Comments
Below script will do five iterations. #!/bin/bash i=1 while $i -le 5 ...