<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2292316312608514812</id><updated>2012-02-09T11:07:07.171-08:00</updated><category term='cron jobs'/><category term='domain protection'/><category term='domain management'/><category term='openvpn installation script openvz'/><category term='3 tips to choose cpanel hosting'/><category term='web hosting'/><category term='password recovery'/><category term='web servers'/><category term='window 2008'/><category term='webhosting ratings'/><category term='cheap web hosting'/><category term='web hosting mistakes'/><category term='web hosting tips'/><category term='website hosting'/><category term='web host review'/><category term='cheap php web host'/><category term='commands'/><category term='reasons for web hosting'/><category term='domain'/><category term='cpanel hosting'/><category term='mysql recovery'/><category term='cpanel web host'/><category term='packet loss'/><category term='cheap linux host'/><category term='mysql'/><category term='reasons to choose shopaserver'/><category term='cheap shared web hosting'/><category term='web hosting reviews'/><category term='best web host'/><category term='linux tricks'/><category term='popular webmaster forums'/><category term='how to make website'/><category term='mtr'/><category term='dedicated servers'/><category term='top 10 web hosting'/><category term='make a website'/><category term='Forums'/><category term='free forum'/><category term='bash'/><category term='dos vs linux'/><category term='data center'/><category term='server management'/><category term='mysql backup'/><category term='window tutorials'/><category term='useful commands'/><category term='backup tips'/><category term='cpanel mysql backup'/><category term='website how to'/><category term='how to install phpbb'/><category term='database recovery'/><category term='how to make forum for free'/><category term='command line'/><title type='text'>dedicate servers, web hosting, cheap web hosting tips</title><subtitle type='html'>have fun in system administration,tips and tricks,story all about web servers and web hosting</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>40</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-5123863028409536131</id><published>2012-02-09T11:06:00.000-08:00</published><updated>2012-02-09T11:07:07.182-08:00</updated><title type='text'>exim commands</title><content type='html'>Exim Commands&lt;br /&gt;&lt;br /&gt;exim -bpc    - Print a count of the messages in the queue&lt;br /&gt;exim -bp                       - Print a listing of the messages in the queue (time queued, size, message-id,  &lt;br /&gt;sender, recipient):&lt;br /&gt;exim -M emailID   - force delivery of one message&lt;br /&gt;exim -Mvl messageID   - View Log for message&lt;br /&gt;exim -Mvb messageID   - View Body for message&lt;br /&gt;exim -Mvh messageID   - View Header for message&lt;br /&gt;exim -Mrm messageID   - ReMove message (no errors sent)&lt;br /&gt;exiqgrep -zi | xargs exim -Mrm  - Remove all frozen mails in q&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;REMOVE MAILS BY ID&lt;br /&gt;&lt;br /&gt;exim -v -Mrm (MAIL ID HERE)&lt;br /&gt;&lt;br /&gt;LIST QUEDED MAILS&lt;br /&gt;&lt;br /&gt;exim -bp&lt;br /&gt;&lt;br /&gt;OUTPUT NUMBER OF QUEDED MAILS&lt;br /&gt;&lt;br /&gt;exim -bpc&lt;br /&gt;&lt;br /&gt;DELETE FROZEN MAILS&lt;br /&gt;&lt;br /&gt;exim -bp | awk '$6~"frozen" { print $3 }' | xargs exim -Mrm&lt;br /&gt;&lt;br /&gt;DELIVER FORCEFULLY EMAILS&lt;br /&gt;&lt;br /&gt;exim -qff -v -C /etc/exim.conf &amp;&lt;br /&gt;&lt;br /&gt;FREEZE MAILS FROM SENDER&lt;br /&gt;&lt;br /&gt;exiqgrep -i -f (MAIL ADDRESS HERE) | xargs exim -Mf&lt;br /&gt;&lt;br /&gt;REMOVE MAILS FROM SENDER&lt;br /&gt;&lt;br /&gt;exiqgrep -i -f (MAIL ADDRESS HERE) | xargs exim -Mrm&lt;br /&gt;&lt;br /&gt;Remove root mails&lt;br /&gt;&lt;br /&gt;exim -bp |grep "hostname" |awk '{print $3}' |xargs exim -Mrm&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Forcefully sending mails from a domain&lt;br /&gt;&lt;br /&gt;exim -v -Rff domainname.com&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Remove all frozen messages:&lt;br /&gt;&lt;br /&gt;root@localhost# exiqgrep -z -i | xargs exim -Mrm&lt;br /&gt;&lt;br /&gt;Remove all messages older than five days (86400 * 5 = 432000 seconds):&lt;br /&gt;&lt;br /&gt;root@localhost# exiqgrep -o 432000 -i | xargs exim -Mrm&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Start a queue run:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -q -v&lt;br /&gt;&lt;br /&gt;Start a queue run for just local deliveries:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -ql -v&lt;br /&gt;&lt;br /&gt;Remove a message from the queue:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -Mrm &lt;message-id&gt; [ &lt;message-id&gt; ... ]&lt;br /&gt;&lt;br /&gt;Freeze a message:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -Mf &lt;message-id&gt; [ &lt;message-id&gt; ... ]&lt;br /&gt;&lt;br /&gt;Thaw a message:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -Mt &lt;message-id&gt; [ &lt;message-id&gt; ... ]&lt;br /&gt;&lt;br /&gt;Deliver a message, whether it's frozen or not, whether the retry time has been reached or not:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -M &lt;message-id&gt; [ &lt;message-id&gt; ... ]&lt;br /&gt;&lt;br /&gt;Deliver a message, but only if the retry time has been reached:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -Mc &lt;message-id&gt; [ &lt;message-id&gt; ... ]&lt;br /&gt;&lt;br /&gt;Force a message to fail and bounce as "cancelled by administrator":&lt;br /&gt;&lt;br /&gt;root@localhost# exim -Mg &lt;message-id&gt; [ &lt;message-id&gt; ... ]&lt;br /&gt;&lt;br /&gt;Remove all frozen messages:&lt;br /&gt;&lt;br /&gt;root@localhost# exiqgrep -z -i | xargs exim -Mrm&lt;br /&gt;&lt;br /&gt;Remove all messages older than five days (86400 * 5 = 432000 seconds):&lt;br /&gt;&lt;br /&gt;root@localhost# exiqgrep -o 432000 -i | xargs exim -Mrm&lt;br /&gt;&lt;br /&gt;Freeze all queued mail from a given sender:&lt;br /&gt;&lt;br /&gt;root@localhost# exiqgrep -i -f luser@example.tld | xargs exim -Mf&lt;br /&gt;&lt;br /&gt;View a message's headers:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -Mvh &lt;message-id&gt;&lt;br /&gt;&lt;br /&gt;View a message's body:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -Mvb &lt;message-id&gt;&lt;br /&gt;&lt;br /&gt;View a message's logs:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -Mvl &lt;message-id&gt;&lt;br /&gt;&lt;br /&gt;Add a recipient to a message:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -Mar &lt;message-id&gt; &lt;address&gt; [ &lt;address&gt; ... ]&lt;br /&gt;&lt;br /&gt;Edit the sender of a message:&lt;br /&gt;&lt;br /&gt;root@localhost# exim -Mes &lt;message-id&gt; &lt;address&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Retrieved from "http://mycutelife.net/wiki/index.php?title=Exim_Commands"&lt;br /&gt;Views&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-5123863028409536131?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/5123863028409536131/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2012/02/exim-commands.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5123863028409536131'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5123863028409536131'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2012/02/exim-commands.html' title='exim commands'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-7552413530185850847</id><published>2012-02-09T11:01:00.000-08:00</published><updated>2012-02-09T11:03:57.885-08:00</updated><title type='text'>mail game</title><content type='html'>1] Removing Bad Mail&lt;br /&gt;&lt;br /&gt;for i in `exiqgrep -i -f nobody`; do exim -Mrm $i; done &gt;&gt; Removes Nobody Mail&lt;br /&gt;&lt;br /&gt;for i in `exiqgrep -i -o 259200`; do exim -Mrm $i; done &gt;&gt; Removes Mail Older than 3 Days&lt;br /&gt;&lt;br /&gt;for i in `exiqgrep -i -f "^&lt;&gt;$"`; do exim -Mrm $i; done &gt;&gt; Removes Mail with Weird Characters (Spam)&lt;br /&gt;&lt;br /&gt;[2] Delete Mail by a Domain&lt;br /&gt;&lt;br /&gt;for i in `exiqgrep -i -f domain.com`; do exim -Mrm $i; done&lt;br /&gt;&lt;br /&gt;[3] Delete Mail for a Domain&lt;br /&gt;&lt;br /&gt;for i in `exiqgrep -i -r domain.com`; do exim -Mrm $i; done&lt;br /&gt;&lt;br /&gt;[4] Remove Whole Mail Queue&lt;br /&gt;&lt;br /&gt;for i in `exiqgrep -i -f `; do exim -Mrm $i; done&lt;br /&gt;&lt;br /&gt;[5] Run Mail Queue&lt;br /&gt;&lt;br /&gt;runq -qqff&amp;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To find the connections to HTTP&lt;br /&gt;&lt;br /&gt;netstat -pan | sort +4 | grep TIME_WAIT | awk '{print $5}' | sed -e s/':.*'//g | sort | uniq -c | sort -k 1 -nr |  &lt;br /&gt;head -n 20&lt;br /&gt;&lt;br /&gt;To find ddos attack&lt;br /&gt;&lt;br /&gt;netstat -an |grep 80&lt;br /&gt;netstat -plan|grep :80|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -nk 1&lt;br /&gt;netstat -plan|grep :25|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -nk 1&lt;br /&gt;watch -n 5 'w; ls -alS /usr/local/apache/domlogs/ '&lt;br /&gt;&lt;br /&gt;EXIM&lt;br /&gt;&lt;br /&gt;tail -3000 /var/log/exim_mainlog |grep 'rejected RCPT' |awk '{print$4}'|awk -F\[ '{print $2} '|awk -F\] '{print $1} &lt;br /&gt;'|sort | uniq -c | sort -k 1 -nr | head -n 5&lt;br /&gt;&lt;br /&gt;Script to find which process are taking too much resources on a server&lt;br /&gt;&lt;br /&gt;cd /proc &amp;&amp; ls -l */cwd|grep /home|sed -e \ "s#.*/home\(.*\)#/home\1#"|sort&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Find out spammers home directory in cpanel server&lt;br /&gt;&lt;br /&gt;grep cwd /var/log/exim_mainlog|grep -v spool&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;pop attack&lt;br /&gt;&lt;br /&gt;tail -1000 /var/log/maillog | grep host= | cut -d= -f2| cut -d" " -f1|sort -n |uniq -c |sort -n&lt;br /&gt;&lt;br /&gt;To display last 5 lines of different logs in a single window&lt;br /&gt;&lt;br /&gt;watch -n 5 "tail -10 /var/log/secure ; echo "==============================" ; cat /proc/loadavg ; echo  &lt;br /&gt;"==============================" ;  tail -10 /var/log/messages"&lt;br /&gt;&lt;br /&gt;To kill Zombie process&lt;br /&gt;&lt;br /&gt;for i in `ps ax | grep Z | awk {'print $1'}`;do kill -9 $(cat /proc/${i}/status | grep PPid | awk {'print &lt;br /&gt;$2'});done&lt;br /&gt;&lt;br /&gt;To kill Dead process&lt;br /&gt;&lt;br /&gt;for i in `ps ax | grep D | awk {'print $1'}`;do kill -9 $(cat /proc/${i}/status | grep PPid | awk {'print &lt;br /&gt;$2'});done&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To Delete frozen mails&lt;br /&gt;&lt;br /&gt;exim -bp | awk '$6~"frozen" {print $3 }' | xargs exim -Mrm&lt;br /&gt;&lt;br /&gt;Following script will delete the mails in queue which consist of "yahoo.co.in"&lt;br /&gt;&lt;br /&gt;grep -rl yahoo.co.in /var/spool/exim/input/ | xargs rm&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This will show the number of mails for each domain&lt;br /&gt;&lt;br /&gt;exim -bp | exiqsumm | awk '{if ($1 &gt;100)print  $0 }'  | sort -n&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For taking the backup of accounts. Copy the usernames to a file named hi. (Cpanel Server)&lt;br /&gt;&lt;br /&gt;for i in `cat hi` ; do /scripts/pkgacct $i ;  done&lt;br /&gt;&lt;br /&gt;For enabling spamassassin (Cpanel Server)&lt;br /&gt;&lt;br /&gt;for i in `cat hi` ; do touch  /home/$i/.spamassassinenable ;  done&lt;br /&gt;&lt;br /&gt;For enabling spambox (Cpanel Server)&lt;br /&gt;&lt;br /&gt;for i in `cat hi` ; do touch  /home/$i/.spamassassinboxenable  ;  done&lt;br /&gt;&lt;br /&gt;For printing first column in a file test&lt;br /&gt;&lt;br /&gt;cat test | awk '{print $1 }'&lt;br /&gt;&lt;br /&gt;script to find the disk usage of each reseller accounts and the sub accounts (Cpanel Server)&lt;br /&gt;&lt;br /&gt;for i in `grep Reseller_Name /etc/trueuserowners | cut -d: -f 1` ; do du -s /home/$i ; done | awk {'print $1'} &gt; df&lt;br /&gt;&lt;br /&gt;total=0 ; for i in `cat df`;  do total=$[total+i]; done ; echo $total&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Script to restart apache if it is not working&lt;br /&gt;&lt;br /&gt;#!/bin/sh&lt;br /&gt; if ps auxc | grep httpd ; then&lt;br /&gt;exit 0&lt;br /&gt;else&lt;br /&gt;echo "HTTP service crash"&lt;br /&gt;/etc/init.d/httpd stop&lt;br /&gt;sleep 3&lt;br /&gt;/etc/init.d/httpd start&lt;br /&gt;echo "httpd restarted on server." | mail -s "httpd (`uname -n`) restarted @ `date`"  &lt;br /&gt;sanju@mycutelife.net&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Script to check the function "file_get_contents"&lt;br /&gt;&lt;br /&gt;&lt;?php&lt;br /&gt;$x="google.com";&lt;br /&gt;$cd=file_get_contents($x);&lt;br /&gt;echo $cd;&lt;br /&gt;?&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Following script can crop the domlogs when its size reach 100mb .&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;#!/bin/bash&lt;br /&gt;for domain in /usr/local/apache/domlogs/*;&lt;br /&gt;do&lt;br /&gt;# Find the domain having more than 100 Mb log file size&lt;br /&gt;if [ 100000 -lt `du $domain | awk {'print $1'} 2&gt; /dev/null` ]&lt;br /&gt;then&lt;br /&gt;{&lt;br /&gt;echo $domain;&lt;br /&gt;echo "splitting the file into sizes of 50 Mb each...";&lt;br /&gt;/usr/local/cpanel/bin/cpuwatch 5.0 split -b 50m $domain ${domain};&lt;br /&gt;echo "Appending the last two sets of files generated";&lt;br /&gt;for i in `ls ${domain}a*| tail -n 2`;&lt;br /&gt;do&lt;br /&gt;tail -n 2 $i;echo $i;&lt;br /&gt;cat $i &gt;&gt; ${domain}.test;&lt;br /&gt;done&lt;br /&gt;}&lt;br /&gt;cp -f ${domain}.test ${domain};&lt;br /&gt;rm -f ${domain}a* ${domain}.test;&lt;br /&gt;echo "done";&lt;br /&gt;fi&lt;br /&gt;done&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Script to delete iframe entries of an account&lt;br /&gt;&lt;br /&gt;find /home/test/public_html/  \( -name "*.php" -o -name "*.html" -o -iname "*.htm" \) -exec grep -l "pattern" {} \; -exec sed -i "/"pattern"/d" {} \;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Deleting particular line from a file&lt;br /&gt;&lt;br /&gt;http://sed.sourceforge.net/sed1line.txt&lt;br /&gt;&lt;br /&gt;# delete the last 10 lines of a file&lt;br /&gt;sed -e :a -e '$d;N;2,10ba' -e 'P;D'   # method 1&lt;br /&gt;&lt;br /&gt;sed -n -e :a -e '1,10!{P;N;D;};N;ba' # method 2&lt;br /&gt;&lt;br /&gt;The above will only list the output. The following will delete the entries&lt;br /&gt;&lt;br /&gt;sed -i".bak" -e :a -e '$d;N;2,4ba' -e 'P;D' fileName.txt&lt;br /&gt;&lt;br /&gt;Here a file with fileName.txt.bak will be created&lt;br /&gt;&lt;br /&gt;http://en.kioskea.net/faq/1451-sed-delete-one-or-more-lines-from-a-file&lt;br /&gt;&lt;br /&gt;Script to take backup of a single account in daily basis&lt;br /&gt;&lt;br /&gt;/scripts/pkgacct user;&lt;br /&gt;mv /home/cpmove-user.tar.gz /home/user/public_html/backup/cpmove-user_$(date +%Y%m%d).tar.gz;&lt;br /&gt;chmod -R 644 /home/user/public_html/backup/*;&lt;br /&gt;chown -R user.user /home//scripts/pkgacct user;&lt;br /&gt;&lt;br /&gt;The output should be as follows&lt;br /&gt;&lt;br /&gt;cpmove-user_20091026.tar.gz&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Check server status remotely with a perl script&lt;br /&gt;&lt;br /&gt;http://www.macosxhints.com/article.php?story=20060221135557761&lt;br /&gt;http://www.macosxhints.com/dlfiles/is_tcp_port_listening_pl.txt ----&gt; Script&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Shell Script To Monitor Services Such As Web / Http, Ssh, Mail Server&lt;br /&gt;&lt;br /&gt;http://bash.cyberciti.biz/monitoring/monitor-unix-linux-network-services/&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;PHP script to monitor Service Status from local or remotely&lt;br /&gt;&lt;br /&gt;http://www.developertutorials.com/tutorials/php/port-scanning-and-service-status-checking-in-php-870/&lt;br /&gt;&lt;br /&gt;&lt;?php&lt;br /&gt;function check_port($port) {&lt;br /&gt;   $conn = @fsockopen("127.0.0.1", $port, $errno, $errstr, 0.2);&lt;br /&gt;   if ($conn) {&lt;br /&gt;       fclose($conn);&lt;br /&gt;       return true;&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;function server_report() {&lt;br /&gt;   $report = array();&lt;br /&gt;   $svcs = array('21'=&gt;'FTP',&lt;br /&gt;                 '22'=&gt;'SSH',&lt;br /&gt;                 '25'=&gt;'SMTP',&lt;br /&gt;                 '80'=&gt;'HTTP',&lt;br /&gt;                 '110'=&gt;'POP3',&lt;br /&gt;                 '143'=&gt;'IMAP',&lt;br /&gt;                 '3306'=&gt;'MySQL');&lt;br /&gt;   foreach ($svcs as $port=&gt;$service) {&lt;br /&gt;       $report[$service] = check_port($port);&lt;br /&gt;   }&lt;br /&gt;   return $report;&lt;br /&gt;}&lt;br /&gt;$report = server_report();&lt;br /&gt;?&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Script to delete a line from a file if it have a particular pattern&lt;br /&gt;&lt;br /&gt;sed -i "/"pattern"/d" filename&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Retrieved from "http://mycutelife.net/wiki/index.php?title=Script"&lt;br /&gt;Views&lt;br /&gt;&lt;br /&gt;    * Page&lt;br /&gt;    * Discussion&lt;br /&gt;    * View source&lt;br /&gt;    * History&lt;br /&gt;&lt;br /&gt;Personal tools&lt;br /&gt;&lt;br /&gt;    * Log in&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-7552413530185850847?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/7552413530185850847/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2012/02/mail-game.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/7552413530185850847'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/7552413530185850847'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2012/02/mail-game.html' title='mail game'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-8015234655103584124</id><published>2012-01-31T02:09:00.000-08:00</published><updated>2012-01-31T02:10:41.956-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='openvpn installation script openvz'/><title type='text'>100% openvz openvpn installation script</title><content type='html'>The scripts works perfectly fine on centos. &lt;br /&gt;&lt;br /&gt;#!/bin/bash&lt;br /&gt;# Interactive OpenVPN install script on a OpenVZ VPS&lt;br /&gt;# Tested on CentOS versions 5 to 5.5&lt;br /&gt;# 2011 v1.2&lt;br /&gt;# Author Denis D.&lt;br /&gt;# http://bluemodule.com/software/openvpn-install-script-for-openvz-vps/&lt;br /&gt; &lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Interactive OpenVPN Install Script for OpenVZ VPS Machines v1.2"&lt;br /&gt;echo "by Denis D. http://www.bluemodule.com"&lt;br /&gt;echo "Should work on various rpm-based Linux distos."&lt;br /&gt;echo "Tested on CentOS ditros version 5 to 5.5"&lt;br /&gt;echo&lt;br /&gt;echo "Make sure to message your provider and have them enable"&lt;br /&gt;echo "TUN, PPP, IPtables, and NAT modules prior to setting up OpenVPN."&lt;br /&gt;echo&lt;br /&gt;echo "You need to set up the server before creating more client keys."&lt;br /&gt;echo "A separate client keyset is required per connection or machine."&lt;br /&gt;echo "When creating certificated you can put \".\" to skip a field for all fields" &lt;br /&gt;echo "except for \"Common Name\" and password fields."&lt;br /&gt;echo "################################################"&lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Select on option:"&lt;br /&gt;echo "1) Set up new OpenVPN server AND create one client"&lt;br /&gt;echo "2) Create additional clients"&lt;br /&gt;echo "################################################"&lt;br /&gt;read x&lt;br /&gt;if test $x -eq 1; then&lt;br /&gt; echo "Specify server port number that you want the server to use (eg. 54):"&lt;br /&gt; read p&lt;br /&gt; echo "Enter client username that you want to create (eg. client1):"&lt;br /&gt; read c&lt;br /&gt; &lt;br /&gt;# get the venet0:0 IP&lt;br /&gt;ip=`grep IPADDR /etc/sysconfig/network-scripts/ifcfg-venet0:0 | awk -F= '{print $2}'`&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Downloading OpenVPN 2.0.9 and LZO compression library"&lt;br /&gt;echo "################################################"&lt;br /&gt;mkdir /etc/ovpn_install&lt;br /&gt;cd /etc/ovpn_install&lt;br /&gt;wget http://openvpn.net/release/openvpn-2.0.9.tar.gz&lt;br /&gt;wget http://openvpn.net/release/lzo-1.08-4.rf.src.rpm&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Downloading and Installing Dependencies"&lt;br /&gt;echo "################################################"&lt;br /&gt;yum -y install rpm-build autoconf.noarch zlib-devel pam-devel openssl-devel make gcc&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Building From Source"&lt;br /&gt;echo "################################################"&lt;br /&gt;rpmbuild --rebuild lzo-1.08-4.rf.src.rpm&lt;br /&gt;rpm -Uvh /usr/src/redhat/RPMS/i386/lzo-*.rpm&lt;br /&gt;rpmbuild -tb openvpn-2.0.9.tar.gz&lt;br /&gt;rpm -Uvh /usr/src/redhat/RPMS/i386/openvpn-2.0.9-1.i386.rpm&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Creating Server Config"&lt;br /&gt;echo "\"Common Name\" must be filled."&lt;br /&gt;echo "Please insert : server"&lt;br /&gt;echo "################################################"&lt;br /&gt;cp -r /usr/share/doc/openvpn-2.0.9/easy-rsa/ /etc/openvpn/&lt;br /&gt; &lt;br /&gt;# creating server.conf file&lt;br /&gt;echo "local $ip" &gt; /etc/openvpn/server.conf&lt;br /&gt;echo "port $p" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "proto udp" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "dev tun" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "ca /etc/openvpn/keys/ca.crt" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "cert /etc/openvpn/keys/server.crt" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "key /etc/openvpn/keys/server.key" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "dh /etc/openvpn/keys/dh1024.pem" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "server 10.9.0.0 255.255.255.0" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "ifconfig-pool-persist ipp.txt" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "push \"redirect-gateway def1\" " &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "push \"dhcp-option DNS 208.67.222.222\" " &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "push \"dhcp-option DNS 208.67.220.220\" " &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "keepalive 5 30" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "comp-lzo" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "persist-key" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "persist-tun" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "status server-tcp.log" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt;echo "verb 3" &gt;&gt; /etc/openvpn/server.conf&lt;br /&gt; &lt;br /&gt;cd /etc/openvpn/easy-rsa/2.0/&lt;br /&gt;source ./vars&lt;br /&gt;./vars&lt;br /&gt;./clean-all&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Building Certifcate Authority"&lt;br /&gt;echo "\"Common Name\" must be filled."&lt;br /&gt;echo "################################################"&lt;br /&gt;./build-ca&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Building Server Certificate"&lt;br /&gt;echo "\"Common Name\" must be filled."&lt;br /&gt;echo "Please insert : server"&lt;br /&gt;echo "################################################"&lt;br /&gt;./build-key-server server&lt;br /&gt;./build-dh&lt;br /&gt; &lt;br /&gt;cp /etc/openvpn/easy-rsa/2.0/keys /etc/openvpn/keys -R&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Starting Server"&lt;br /&gt;echo "################################################"&lt;br /&gt;service openvpn start&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Forwarding IPv4 and Enabling It On-boot"&lt;br /&gt;echo "################################################"&lt;br /&gt;echo 1 &gt; /proc/sys/net/ipv4/ip_forward&lt;br /&gt;# saves ipv4 forwarding and and enables it on-boot&lt;br /&gt;sed -e 's/\(net.ipv4.ip_forward =\) 0/\1 1/g' /etc/sysctl.conf &gt; /etc/tempsysclt&lt;br /&gt;cat /etc/tempsysclt &gt; /etc/sysctl.conf&lt;br /&gt;rm -f /etc/tempsysclt&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Updating IPtables Routing and Enabling It On-boot"&lt;br /&gt;echo "################################################"&lt;br /&gt;tunip=`/sbin/ifconfig tun0 | grep 'inet addr:' | cut -d: -f2| cut -d' ' -f1`&lt;br /&gt;iptables -t nat -A POSTROUTING -s $tunip/24 -j SNAT --to $ip&lt;br /&gt;# saves iptables routing rules and enables them on-boot&lt;br /&gt;/sbin/service iptables save&lt;br /&gt;chkconfig iptables on&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Building certificate for client $c"&lt;br /&gt;echo "\"Common Name\" must be filled."&lt;br /&gt;echo "Please insert like same cert : $c"&lt;br /&gt;echo "################################################"&lt;br /&gt;./build-key $c&lt;br /&gt; &lt;br /&gt;echo "client " &gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "dev tun " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "proto udp " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "remote $ip $p " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "resolv-retry infinite " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "nobind " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "persist-key " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "persist-tun " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "ca ca.crt " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "cert $c.crt " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "key $c.key " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "comp-lzo " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "verb 3 " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt; &lt;br /&gt;cp /etc/openvpn/easy-rsa/2.0/keys/$c.crt /etc/openvpn/keys&lt;br /&gt;cp /etc/openvpn/easy-rsa/2.0/keys/$c.key /etc/openvpn/keys&lt;br /&gt; &lt;br /&gt;cd /etc/openvpn/keys/&lt;br /&gt;tar czf clientkeys.tgz ca.crt $c.crt $c.key $c.ovpn&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "OpenVPN server successfully installed."&lt;br /&gt;echo "One client keyset for $c generated."&lt;br /&gt;echo "To connect:"&lt;br /&gt;echo "1) Download /etc/openvpn/keys/clientkeys.tgz using SCP client such as WinSCP."&lt;br /&gt;echo "2) Create a folder named VPN in C:\Program Files\OpenVPN\config directory"&lt;br /&gt;echo "3) Extract the contents of clientkeys.tgz to the VPN folder."&lt;br /&gt;echo "4) Start openvpn-gui, right click the tray icon and click Connect."&lt;br /&gt;echo&lt;br /&gt;echo "To generate additonal client keysets, run the script again with option #2."&lt;br /&gt;echo "################################################"&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;# runs this if option 2 is selected&lt;br /&gt;elif test $x -eq 2; then&lt;br /&gt; echo "Enter client username that you want to create (eg. client2):"&lt;br /&gt; read c&lt;br /&gt; &lt;br /&gt;ip=`grep IPADDR /etc/sysconfig/network-scripts/ifcfg-venet0:0 | awk -F= '{print $2}'`&lt;br /&gt;p=`grep -n 'port' /etc/openvpn/server.conf | cut -d' ' -f2`&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "Building certificate for client $c"&lt;br /&gt;echo "\"Common Name\" must be filled."&lt;br /&gt;echo "Please insert like same cert : $c"&lt;br /&gt;echo "################################################"&lt;br /&gt;cd /etc/openvpn/easy-rsa/2.0&lt;br /&gt;source ./vars&lt;br /&gt;./vars&lt;br /&gt;./build-key $c&lt;br /&gt; &lt;br /&gt;echo "client " &gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "dev tun " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "proto udp " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "remote $ip $p " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "resolv-retry infinite " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "nobind " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "persist-key " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "persist-tun " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "ca ca.crt " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "cert $c.crt " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "key $c.key " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "comp-lzo " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt;echo "verb 3 " &gt;&gt; /etc/openvpn/keys/$c.ovpn&lt;br /&gt; &lt;br /&gt;cp /etc/openvpn/easy-rsa/2.0/keys/$c.crt /etc/openvpn/keys&lt;br /&gt;cp /etc/openvpn/easy-rsa/2.0/keys/$c.key /etc/openvpn/keys&lt;br /&gt; &lt;br /&gt;cd /etc/openvpn/keys/&lt;br /&gt;tar czf clientkeys.tgz ca.crt $c.crt $c.key $c.ovpn&lt;br /&gt; &lt;br /&gt;echo&lt;br /&gt;echo&lt;br /&gt;echo "################################################"&lt;br /&gt;echo "One client keyset for $c generated."&lt;br /&gt;echo "To connect:"&lt;br /&gt;echo "1) Download /etc/openvpn/keys/clientkeys.tgz using SCP client such as WinSCP."&lt;br /&gt;echo "2) Create a folder named VPN in C:\Program Files\OpenVPN\config directory "&lt;br /&gt;echo "3) Extract the contents of clientkeys.tgz to the VPN folder."&lt;br /&gt;echo "4) Start openvpn-gui, right click the tray icon and click Connect."&lt;br /&gt;echo "################################################"&lt;br /&gt; &lt;br /&gt;else&lt;br /&gt;echo "Invalid selection, quitting."&lt;br /&gt;exit&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;copy paste it.&lt;br /&gt;&lt;br /&gt;thanks to bluemodule.com &lt;br /&gt;&lt;br /&gt;original source: http://bluemodule.com/software/openvpn-install-script-for-openvz-vps/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-8015234655103584124?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/8015234655103584124/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2012/01/100-openvz-openvpn-installation-script.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/8015234655103584124'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/8015234655103584124'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2012/01/100-openvz-openvpn-installation-script.html' title='100% openvz openvpn installation script'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-874436214664501983</id><published>2012-01-29T21:18:00.001-08:00</published><updated>2012-01-29T21:18:56.713-08:00</updated><title type='text'>Subnet applications</title><content type='html'>addrs bits pref   mask             &lt;br /&gt;&lt;br /&gt;     1   0  /32    255.255.255.255&lt;br /&gt;     2   1  /31    255.255.255.254&lt;br /&gt;     4   2  /30    255.255.255.252&lt;br /&gt;     8   3  /29    255.255.255.248&lt;br /&gt;    16   4  /28    255.255.255.240&lt;br /&gt;    32   5  /27    255.255.255.224&lt;br /&gt;    64   6  /26    255.255.255.192&lt;br /&gt;   128   7  /25    255.255.255.128&lt;br /&gt;   256   8  /24    255.255.255    &lt;br /&gt;   512   9  /23    255.255.254    &lt;br /&gt;   1 K  10  /22    255.255.252    &lt;br /&gt;   2 K  11  /21    255.255.248    &lt;br /&gt;   4 K  12  /20    255.255.240    &lt;br /&gt;   8 K  13  /19    255.255.224    &lt;br /&gt;  16 K  14  /18    255.255.192    &lt;br /&gt;  32 K  15  /17    255.255.128    &lt;br /&gt;  64 K  16  /16    255.255        &lt;br /&gt; 128 K  17  /15    255.254        &lt;br /&gt; 256 K  18  /14    255.252        &lt;br /&gt; 512 K  19  /13    255.248        &lt;br /&gt;   1 M  20  /12    255.240        &lt;br /&gt;   2 M  21  /11    255.224        &lt;br /&gt;   4 M  22  /10    255.192        &lt;br /&gt;   8 M  23  /9     255.128        &lt;br /&gt;  16 M  24  /8     255            &lt;br /&gt;  32 M  25  /7     254            &lt;br /&gt;  64 M  26  /6     252            &lt;br /&gt; 128 M  27  /5     248            &lt;br /&gt; 256 M  28  /4     240            &lt;br /&gt; 512 M  29  /3     224            &lt;br /&gt;1024 M  30  /2     192            &lt;br /&gt;&lt;br /&gt;hosts   subn/c  subn/c  subn/b  subn/b  bits hex-mask dec-mask&lt;br /&gt;                strict          strict&lt;br /&gt;&lt;br /&gt;    2     64      62    16384   16382     2  fffffffc 255.255.255.252&lt;br /&gt;    6     32      30     8192    8190     3  fffffff8 255.255.255.248&lt;br /&gt;   14     16      14     4096    4094     4  fffffff0 255.255.255.240&lt;br /&gt;   30      8       6     2048    2046     5  ffffffe0 255.255.255.224&lt;br /&gt;   62      4       2     1024    1022     6  ffffffc0 255.255.255.192&lt;br /&gt;  126      2       0      512     510     7  ffffff80 255.255.255.128&lt;br /&gt;  254                     256     254     8  ffffff00 255.255.255.0&lt;br /&gt;  510                     128     126     9  fffffe00 255.255.254.0&lt;br /&gt; 1022                      64      62    10  fffffc00 255.255.252.0&lt;br /&gt; 2046                      32      30    11  fffff800 255.255.248.0&lt;br /&gt; 4094                      16      14    12  fffff000 255.255.240.0&lt;br /&gt; 8190                       8       6    13  ffffe000 255.255.224.0&lt;br /&gt;16382                       4       2    14  ffffc000 255.255.192.0&lt;br /&gt;32766                       2       0    15  ffff8000 255.255.128.0&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-874436214664501983?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/874436214664501983/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2012/01/subnet-applications.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/874436214664501983'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/874436214664501983'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2012/01/subnet-applications.html' title='Subnet applications'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-5248555331049831598</id><published>2012-01-22T23:32:00.000-08:00</published><updated>2012-01-22T23:33:36.532-08:00</updated><title type='text'>Fix SolusVM Time Zone Issue with VMS</title><content type='html'>1- Go to your virtual machine (CTID in solusvm lets say it's 101)&lt;br /&gt;2- rm /etc//localtime&lt;br /&gt;3- ln -s /usr/share/zoneinfo/EST /etc/localtime&lt;br /&gt;&lt;br /&gt;Now ssh to you solusvm machine main machine:&lt;br /&gt;&lt;br /&gt; rm /etc//localtime&lt;br /&gt;ln -s /usr/share/zoneinfo/EST /etc/localtime&lt;br /&gt;&lt;br /&gt;ntpdate us.pool.ntp.org&lt;br /&gt;&lt;br /&gt;This will sync the time&lt;br /&gt;&lt;br /&gt;now run the cron every night to sync time&lt;br /&gt;crontab -e&lt;br /&gt;&lt;br /&gt;0 0 * * * ntpdate us.pool.ntp.org&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-5248555331049831598?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/5248555331049831598/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2012/01/fix-solusvm-time-zone-issue-with-vms.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5248555331049831598'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5248555331049831598'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2012/01/fix-solusvm-time-zone-issue-with-vms.html' title='Fix SolusVM Time Zone Issue with VMS'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-5691067597503896773</id><published>2012-01-20T22:58:00.000-08:00</published><updated>2012-01-20T22:59:22.827-08:00</updated><title type='text'>lost kloxo admin password, how to reset it?</title><content type='html'>Use ssh to login to shell:&lt;br /&gt;&lt;br /&gt;/script/update --class=client --name=admin --subaction=password --v-password=XXX&lt;br /&gt;&lt;br /&gt;XXX is your new password.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-5691067597503896773?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/5691067597503896773/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2012/01/lost-kloxo-admin-password-how-to-reset.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5691067597503896773'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5691067597503896773'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2012/01/lost-kloxo-admin-password-how-to-reset.html' title='lost kloxo admin password, how to reset it?'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-2762388567927700112</id><published>2012-01-05T09:35:00.001-08:00</published><updated>2012-01-21T10:16:22.693-08:00</updated><title type='text'>remove vps optimized logo</title><content type='html'>How-To Change the logo to just say WHM...&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;cd /usr/local/cpanel/whostmgr/docroot/themes/x&lt;br /&gt;cp logo_vps.jpg logo_vps.jpg.bak&lt;br /&gt;rm -f logo_vps.jpg&lt;br /&gt;wget http://img84.imageshack.us/img84/6808/logovpsxg9.jpg&lt;br /&gt;mv logovpsxg9.jpg logo_vps.jpg&lt;br /&gt;&lt;br /&gt;To prevent it from being changed:&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;br /&gt;chattr +i /usr/local/cpanel/whostmgr/docroot/themes/x/logo_vps.jpg&lt;br /&gt;&lt;br /&gt;Now for cpanel&lt;br /&gt;&lt;br /&gt;cd /usr/local/cpanel/base/frontend/x3/branding&lt;br /&gt;rm top-logo_vps2.png &lt;br /&gt;rm: remove regular file `top-logo_vps2.png'? y  &lt;br /&gt;rm top-logo_vps.png -rf&lt;br /&gt; cp top-logo_opt.png top-logo_vps2.png&lt;br /&gt; cp top-logo_opt.png top-logo_vps.png&lt;br /&gt;&lt;br /&gt;Prevent Cpanel Update to Alter the logo:&lt;br /&gt;&lt;br /&gt;chattr +i /usr/local/cpanel/base/frontend/x3/branding/top-logo_vps2.png&lt;br /&gt;&lt;br /&gt;chattr +i /usr/local/cpanel/base/frontend/x3/branding/top-logo_vps.png&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-2762388567927700112?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/2762388567927700112/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2012/01/remove-vps-optimized-logo.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/2762388567927700112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/2762388567927700112'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2012/01/remove-vps-optimized-logo.html' title='remove vps optimized logo'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-2429109356840669501</id><published>2011-12-26T01:37:00.001-08:00</published><updated>2011-12-26T01:41:29.478-08:00</updated><title type='text'>Transfer a cpanel Reseller account along With its Websites to another</title><content type='html'>Here is the way to transfer a full reseller account to another cpanel server&lt;br /&gt;&lt;br /&gt;if you are root you can do that by selecting the account owned by that user.&lt;br /&gt;&lt;br /&gt;here is the manual way.&lt;br /&gt;&lt;br /&gt;SSH to old server:&lt;br /&gt;&lt;br /&gt;Print the names of all account under reseller account and save it to file.&lt;br /&gt;&lt;br /&gt;cat /etc/reselleraccountname | grep reseller-main-user-name | awk ‘{print$1}’ | cut -d : -f 1 &gt; backup-user.txt&lt;br /&gt;&lt;br /&gt;3) Create backup of these users:&lt;br /&gt;&lt;br /&gt;for i in `cat /backup/backup-user.txt`; do /scripts/pkgacct $i; mv /home/cpmove-$i.tar.gz /backup/ ; done&lt;br /&gt;&lt;br /&gt;Now copy all these backups to next server where you want the transfer. &lt;br /&gt;&lt;br /&gt;SSH server as root server2 .&lt;br /&gt;&lt;br /&gt;for i in `cat backup-user.txt `;do /scripts/restorepkg $i;done&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-2429109356840669501?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/2429109356840669501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2011/12/transfer-cpanel-reseller-account-along.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/2429109356840669501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/2429109356840669501'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2011/12/transfer-cpanel-reseller-account-along.html' title='Transfer a cpanel Reseller account along With its Websites to another'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-4183931582222729194</id><published>2011-11-16T22:31:00.000-08:00</published><updated>2011-11-16T22:33:16.938-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='packet loss'/><category scheme='http://www.blogger.com/atom/ns#' term='mtr'/><title type='text'>check packet loss</title><content type='html'>If your website is slow or server acts wierdly, have a look at packet with below command.&lt;br /&gt;&lt;br /&gt;mtr -s 1500 -r -c 1000 -i 0.1 server . com&lt;br /&gt;&lt;br /&gt;If you find the loss report to your host for a possible fix.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;mtr is a utility could be installed on linux and windows.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-4183931582222729194?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/4183931582222729194/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2011/11/check-packet-loss.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/4183931582222729194'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/4183931582222729194'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2011/11/check-packet-loss.html' title='check packet loss'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-5779712396486802636</id><published>2011-04-01T00:11:00.000-07:00</published><updated>2011-09-06T23:25:18.193-07:00</updated><title type='text'>my favorite commands as a sys admin</title><content type='html'>For manual sync of mysql replication&lt;br /&gt;&lt;br /&gt; rsync -av --progress --inplace /data/mysql/ to slave:/data/mysql&lt;br /&gt;&lt;br /&gt;To find and delete certain files&lt;br /&gt;&lt;br /&gt;find . -name "FILE-TO-FIND"-exec rm -rf {} \;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To fix internal server error due to wrong permissions&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;find /home*/*/public_html -type d -perm 0777 -exec chmod 755 {} \;&lt;br /&gt;find /home*/*/public_html -type f -perm 0666 -exec chmod 644 {} \;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;find /some/pathto/directory -type f -path '*abcdir/*.php' | xargs -i bash -c " rm –f -v {}"&lt;br /&gt;&lt;br /&gt;chmod -R 644 * ; sudo chmod -R uga+X *&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;top 10 memory usage&lt;br /&gt;&lt;br /&gt;ps -auxf | sort -nr -k 4 | head -10&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;top 10 cpu usage&lt;br /&gt;&lt;br /&gt;ps -auxf | sort -nr -k 3 | head -10&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ps -e -orss=,args= | sort -b -k1,1n | pr -TW$COLUMNS&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Sort Unix processes on ps by highest memory usage&lt;br /&gt;&lt;br /&gt;just a snippet, –sort is not good for me..try&lt;br /&gt;ps -eo pmem,pcpu,rss,vsize,args | sort -k 1 -r | more&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To see only the memory resources occupied by each category of processes, such as Apache httpd, MySQL mysqld or Java, use the following command:&lt;br /&gt;&lt;br /&gt;ps aux | awk '{print $4"\t"$11}' | sort | uniq -c | awk '{print $2" "$1" "$3}' | sort -nr&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To limit CPU usage of the process called firefox to 30%, enter:&lt;br /&gt;# cpulimit -e firefox -l 30&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-5779712396486802636?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/5779712396486802636/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2011/04/my-favorite-commands-as-sys-admin.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5779712396486802636'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5779712396486802636'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2011/04/my-favorite-commands-as-sys-admin.html' title='my favorite commands as a sys admin'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-669007379568526504</id><published>2010-09-17T10:48:00.000-07:00</published><updated>2010-09-17T10:57:09.345-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='how to make forum for free'/><category scheme='http://www.blogger.com/atom/ns#' term='free forum'/><category scheme='http://www.blogger.com/atom/ns#' term='how to install phpbb'/><title type='text'>How to make a forum free</title><content type='html'>Forums are places to share knowledge and earn online. Many webmasters are making niche forums to try their luck. Forums can get easy traffic from search engine as most of content shared on forums is genuine human content posted by different users.&lt;br /&gt;&lt;br /&gt;Let’s find out how to make a forum free and easily. &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Purchase Hosting with Fantastico:&lt;/span&gt;&lt;br /&gt;For any forum to come online you need a web hosting. Purchase a domain from domain registrar for your forum. Domain name is a unique identity or address of your website.&lt;br /&gt;Purchase an &lt;a href="http://www.shopaserver.com"&gt;affordable web hosting&lt;/a&gt; plan that offers cPanel and Fantastico DE Luxe. Fantastico allows easy installation of many soft wares including forum software.&lt;br /&gt;Below are some open source and free forum software&lt;br /&gt;phpBB&lt;br /&gt;MyBB&lt;br /&gt;SMF&lt;br /&gt;I would suggest you to choose Shopaserver.com as best and &lt;a href="http://www.shopaserver.com"&gt;cheap cpanel hosting&lt;/a&gt;, moreover their support is extremely helpful, you can ask help or even request for forum installation. Voilla! Their support betrayed many customers :)&lt;br /&gt;Installation:&lt;br /&gt;Once you are finished with domain name and hosting account, now is the time to install forum application. I would use phpbb as it is widely used by webmaster because of various benefits.&lt;br /&gt;Login to cPanel and find Fantastico icon with a smiley icon. Go to forum section and click phpbb. Follow the installation steps, which will ask for installation directory, forum admin user name and password.&lt;br /&gt;Before this create a database from cPanel using database wizard, also create a user and assign rights to this user on newly created database. Note down user name and database name. You will need this information while phpbb-seo installation.&lt;br /&gt;Forum Administration:&lt;br /&gt;Once phpbb-seo is installed, now is the time to add categories to your forum. Go to administration control panel, find forum section and start adding categories.&lt;br /&gt;After adding categories, you have to add permissions from permission section to make categories accessible online. The best way is to assign default permission to all categories i.e bot access to abc category.&lt;br /&gt;Start promoting your forum and add useful plugins, styles and themes to make it attractive.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-669007379568526504?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/669007379568526504/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/09/how-to-make-forum-free.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/669007379568526504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/669007379568526504'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/09/how-to-make-forum-free.html' title='How to make a forum free'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-6594911425312366987</id><published>2010-09-17T04:33:00.000-07:00</published><updated>2010-09-17T04:45:55.962-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web hosting tips'/><title type='text'>Top 3 Tips To Choose Web Hosting</title><content type='html'>It is difficult to choose perfect web hosting from over crowded market with various offers to attract customers. You need to be wise to differentiate a good hosting company from bad ones. &lt;br /&gt;Here are easy tips to help you to decide the perfect web hosting for your website.&lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;List Down Your Needs:&lt;br /&gt;&lt;br&gt;&lt;br /&gt;Before getting ready to purchase a hosting account, the first step is to list down all your hosting needs. Estimate the size of code and future growth, number of visits per month etc. Hosting platform required for your website, do your math before purchasing a hosting package. &lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;Hosting Plan:&lt;br&gt;&lt;br /&gt;Verify &lt;a href="http://www.shopaserver.com"&gt;hosting&lt;/a&gt; plan and important features required for your website. Do not purchase a poor plan lacking quality features and benefits. &lt;br /&gt;Some valuable features are cPanel, Fantastico, Add-on domains, Money Back Guarantee, 99% network up-time guarantee etc.&lt;br /&gt;cPanel and Fantastico is best combination to manage websites, take backups, create databases and perform daily maintenance tasks. Add-on domains allow you to host multiple website using single hosting account. Money back guarantee ensure quality and delivery of performance.&lt;br&gt;&lt;br&gt;&lt;br /&gt;Users Opinions:&lt;br&gt;&lt;br /&gt;Before signing up verify the credibility of your hosting provider. How people think about it. A bad host has many angry customers. These angry customers submit negative reviews online. Search for good and bad reviews to judge a quality host.&lt;br /&gt;&lt;br /&gt;Recommende hosts: Shopaserver, wiredtree, Softlayer&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-6594911425312366987?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/6594911425312366987/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/09/top-3-tips-to-choose-web-hosting.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/6594911425312366987'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/6594911425312366987'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/09/top-3-tips-to-choose-web-hosting.html' title='Top 3 Tips To Choose Web Hosting'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-2525015818866649038</id><published>2010-08-23T08:07:00.000-07:00</published><updated>2010-08-23T08:11:31.937-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='3 tips to choose cpanel hosting'/><category scheme='http://www.blogger.com/atom/ns#' term='website hosting'/><category scheme='http://www.blogger.com/atom/ns#' term='cpanel hosting'/><title type='text'>3 tips to choose Word Press hosting</title><content type='html'>Word Press is very popular these days. Word Press provide single and power interface to blog and host business websites. Word Press is free with hundreds of valuable plugins available online. You can also find quality templates from internet totally free.&lt;br /&gt; &lt;br /&gt;Here are 3 easy tips to choose Word Press hosing.&lt;br /&gt; &lt;br /&gt;1- Cheap web hosting&lt;br /&gt; &lt;br /&gt;Do not opt for free hosting unless you are experimenting or learning your online venture. You can save money by selecting cheap web hosting provider with good features and services. A cheap hosting plan ranges from $3 to $9 per month.&lt;br /&gt;High price is not necessarily equal to best performance. There are many good hosting companies with cheap packages and good performance.&lt;br /&gt; &lt;br /&gt;2- Features and Benefits:&lt;br /&gt; &lt;br /&gt;Inspect the features and benefits carefully. Choose a rich featured web hosting provider with good quality. Do not miss golden features like cPanel and Fantastico De Luxe for your websites.&lt;br /&gt; &lt;br /&gt;Some other important features are add-on domains to host multiple websites using single account. Multiple email and ftp accounts for better website management.&lt;br /&gt; &lt;br /&gt;Consider money back guarantee to ensure quality of services and satisfaction. A good host offers money back guarantee to ensure their dedication and honesty with their services.&lt;br /&gt; &lt;br /&gt;99% network up-time is necessary for online presence. Poor up-time can ruin your website in search engine ranking.&lt;br /&gt; &lt;br /&gt;Technical support is another important feature to look while choosing a hosting company for your website. Usually companies offer 24/7 technical support to their customers.&lt;br /&gt; &lt;br /&gt;3- Online Reviews:&lt;br /&gt; &lt;br /&gt;Always search for good and bad customer reviews available online. Do not purchase a hosting account from a host with many bad reviews. Also be wise to analyze online reviews. There are many affiliate websites promoting specific hosting companies with biased reviews.&lt;br /&gt; &lt;br /&gt;Be wise to judge online reviews, as there are very few quality review websites available online.&lt;br /&gt;&lt;br /&gt;For best price hosting I would suggest you to choose &lt;a href="http://www.shopaserver.com"&gt;cpanel hosting&lt;/a&gt; and &lt;a href="http://www.shopaserver.com/reseller-hosting.htm"&gt;reseller hosting&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-2525015818866649038?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/2525015818866649038/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/08/3-tips-to-choose-word-press-hosting.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/2525015818866649038'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/2525015818866649038'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/08/3-tips-to-choose-word-press-hosting.html' title='3 tips to choose Word Press hosting'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-1503936379235553507</id><published>2010-08-10T11:32:00.000-07:00</published><updated>2010-08-10T11:44:16.512-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='reasons to choose shopaserver'/><category scheme='http://www.blogger.com/atom/ns#' term='reasons for web hosting'/><title type='text'>Top 3 reasons to choose shopaserver as web hosting</title><content type='html'>Shopaserver is popular for affordability and performance. Below are top 3 reasons to choose shopaserver.com as your web host.&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;&lt;br /&gt;Unbeatable Price:&lt;span style="font-style:italic;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Shopaserver has unbeatable price. Their basic plan starts from $2.5 per month with no yearly contracts. Unlikely to other hosts they offer straight price which is extremely affordable with big performance. You can also  host multiple websites and subdomains using this plan.&lt;br /&gt;&lt;br /&gt;Shopaserver offers ecommerce plans in $5/month only, and reseller plan in $9.5/month only. No big hosts are offering this price with amazing features.&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;&lt;br /&gt;Rich Features:&lt;span style="font-style:italic;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Regardless of tiny price, they have amazing features lists, there is no restrictions on databases, number of domains or email accounts. You can enjoy cPanel as your control panel along with other rich features.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Friendly Support:&lt;span style="font-style:italic;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;They have extremely friendly support. Many beginners choose shopaserver as web host because of extremely friendly technical support.&lt;br /&gt;&lt;br /&gt;Shopaserver is industry leading &lt;a href="http://www.shopaserver.com"&gt;cpanel hosting&lt;/a&gt; and &lt;a href="http://www.shopaserver.com/reseller-hosting.htm"&gt;reseller hosting&lt;/a&gt; provider in tiny price bundled with rich features.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-1503936379235553507?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/1503936379235553507/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/08/top-3-reasons-to-choose-shopaserver-as.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1503936379235553507'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1503936379235553507'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/08/top-3-reasons-to-choose-shopaserver-as.html' title='Top 3 reasons to choose shopaserver as web hosting'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-7415965063440786706</id><published>2010-08-09T04:47:00.000-07:00</published><updated>2010-08-09T04:58:12.941-07:00</updated><title type='text'>How to choose web hosting</title><content type='html'>It's pretty confusing to choose the right web host from hundreds of various webhosts with variable packages and plans.&lt;br /&gt;&lt;br /&gt;Some tips to evaluate hosting provider.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Price and Features:&lt;br /&gt;&lt;br /&gt;Check carefully price and features in offered hosting plan. Some necessary features are cPanel, email accounts, add-on domains, ftp and backup system. &lt;a href="http://www.shopaserver.com"&gt;cpanel hosting&lt;/a&gt; is any easy hosting which makes the website management tasks easier.&lt;br /&gt;&lt;br /&gt;Affordable price ranges from $3 to $11 per month. Do not spend high amount in shared hosting unless you have VPS or dedicated server.&lt;br /&gt;&lt;br /&gt;Support:&lt;br /&gt;&lt;br /&gt;Verify the response of support. A good web host responds to ticket fast and any problem do not takes more than 24 hours to resolve.&lt;br /&gt;&lt;br /&gt;Suggested web hosts:&lt;br /&gt;&lt;br /&gt;Shopaserver , Hostgator, Site5 , Dreamhost&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-7415965063440786706?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/7415965063440786706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/08/how-to-choose-web-hosting.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/7415965063440786706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/7415965063440786706'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/08/how-to-choose-web-hosting.html' title='How to choose web hosting'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-4593595188897539701</id><published>2010-08-06T12:10:00.000-07:00</published><updated>2010-08-06T12:20:47.623-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='popular webmaster forums'/><category scheme='http://www.blogger.com/atom/ns#' term='Forums'/><title type='text'>High traffic webmaster forums to help you out!</title><content type='html'>Forums are best places to learn and earn altogether.&lt;br /&gt;&lt;br /&gt;Below are some top forums to help you out in webmaster stuff.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Every thing Cheap:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you are looking to buy any thing cheap like articles, seo service ,&lt;a href="http://www.shopaserver.com"&gt;web hosting&lt;/a&gt;&lt;br /&gt;or customized job. the digitalpoint is the right place for you.&lt;br /&gt;forums.digitalpoint.com&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;&lt;br /&gt;Sell it expensive:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you are looking to sell webmaster stuff at high price or want quality customers, than go to warriorforum, thats the right place to sell the things at higher price.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Gain Webmaster Knowlege:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;You can gain and share knowlege at v7n.com , one of the bes forum to learn online stuff.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Cheap Web Hosting:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you are looking for &lt;a href="http://www.shopaserver.com"&gt;cheap cpanel web hostig&lt;/a&gt;, than freewebspace.net is the right place for you to buy cheap and free hosting &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Web Hosting:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If you are looking to buy or sell any thing relevant to web hosting, than webhostingtalk.com is the best options for you. You will find all types of hosting i.e cpanel hosting , reseller hositng, dedicated or vps. Very good stuff there!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-4593595188897539701?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/4593595188897539701/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/08/high-traffic-webmaster-forums-to-help.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/4593595188897539701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/4593595188897539701'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/08/high-traffic-webmaster-forums-to-help.html' title='High traffic webmaster forums to help you out!'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-3638600510899393965</id><published>2010-08-04T01:04:00.000-07:00</published><updated>2010-08-04T01:08:07.060-07:00</updated><title type='text'>coupon codes to cut hosting cost</title><content type='html'>Web hosting companies regularly announce coupon codes to promote their services. These prices are lower than their regular prices.&lt;br /&gt;&lt;br /&gt;You can find these coupons on coupon code websites. These coupons are also available at web master forums in weekly hosting offer section.&lt;br /&gt;&lt;br /&gt;Be clever to cash this opportunity to save your hosting cost.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Today I would like to share one coupon of best &lt;a href="http://www.shopaserver.com"&gt;cheap cpanel hosting&lt;/a&gt; (shopaserver.com)&lt;br /&gt;&lt;br /&gt;20off for 20% off.&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-3638600510899393965?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/3638600510899393965/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/08/coupon-codes-to-cut-hosting-cost.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/3638600510899393965'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/3638600510899393965'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/08/coupon-codes-to-cut-hosting-cost.html' title='coupon codes to cut hosting cost'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-2323648113040921424</id><published>2010-08-03T08:05:00.000-07:00</published><updated>2010-08-03T08:16:14.944-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='webhosting ratings'/><category scheme='http://www.blogger.com/atom/ns#' term='top 10 web hosting'/><category scheme='http://www.blogger.com/atom/ns#' term='web hosting reviews'/><title type='text'>Be aware of web hosting review sites</title><content type='html'>There are many &lt;a href="http://www.shopaserver.com"&gt;web hosting&lt;/a&gt; reviews and rating sites out there. These sites show the chart of top 10 hosting with good and bad reviews.&lt;br /&gt;&lt;br /&gt;Many beginners are fooled by these websites. In reality most of these websites are running web hosting affiliate programs. They get paid by referring the clients to web hosting companies. &lt;br /&gt;&lt;br /&gt;They have fake and biased reviews. Do not trust such web site blindly. Be wise while checking the online reviews. Always search for bad reviews before signing up to any web host. If number of bad review out weigh the good one than its alarming. Stay away from hosts having too many bad reviews. Few bad reviews are pretty normal, as it is very hard to make every one happy.&lt;br /&gt;&lt;br /&gt;Choose affordable &lt;a href="http://www.shopaserver.com"&gt;cpanel web hosting&lt;/a&gt; for your websites. Check the price and features carefully. Do not pay for a year unless you are fully confident.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-2323648113040921424?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/2323648113040921424/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/08/be-aware-of-web-hosting-review-sites.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/2323648113040921424'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/2323648113040921424'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/08/be-aware-of-web-hosting-review-sites.html' title='Be aware of web hosting review sites'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-6116482005531870627</id><published>2010-07-31T11:34:00.000-07:00</published><updated>2010-07-31T11:47:04.988-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='how to make website'/><category scheme='http://www.blogger.com/atom/ns#' term='website how to'/><category scheme='http://www.blogger.com/atom/ns#' term='make a website'/><title type='text'>How to make a website</title><content type='html'>Are you interested in making a website. Website is a way to reach billions. &lt;br /&gt;You can express your thoughts via blog, earn money from business website or share quality stuff with personal website.&lt;br /&gt;&lt;br /&gt;Let's find out how easy is to make a website.&lt;br /&gt;&lt;br /&gt;First of all buy a domain name, a domain is unique identity of your website, or in simple word it is your website address. Buy a domain from some domain registrar i.e Godaddy, name.com , internet.bs, this will cost you round about $7 to $9 per year.&lt;br /&gt;&lt;br /&gt;Buy a hosting account with cpanel and fantastico from any good web hosting company, i.e Shopaserver.com. You will be given login information to upload your website.&lt;br /&gt;&lt;br /&gt;Install WordPress using fantastico or tell your host to install wordpress for you. WordPress is free content management system that allows you to update daily contents.&lt;br /&gt;You can make web pages or posts by logging into wordpress. Wordpress provides you platform to have a free website, there are many free themes, plugins available online.&lt;br /&gt;&lt;br /&gt;I would suggest to buy &lt;a href="http://www.shopaserver.com"&gt;cheap cpanel hosting&lt;/a&gt; or &lt;a href="http://www.shopaserver.com/reseller-hosting.htm"&gt;reseller hosting&lt;/a&gt; if you have many websites.&lt;br /&gt;have fun!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-6116482005531870627?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/6116482005531870627/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/07/how-to-make-website.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/6116482005531870627'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/6116482005531870627'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/07/how-to-make-website.html' title='How to make a website'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-5107700881908694793</id><published>2010-07-30T23:58:00.000-07:00</published><updated>2010-07-30T23:59:36.982-07:00</updated><title type='text'>Why cpanel hosting</title><content type='html'>cpanel hosting is most popular hosting these days. cPanel provides flexibility and easy manageability to your websites.&lt;br /&gt;&lt;br /&gt;Some of the prominent features are :&lt;br /&gt;&lt;br /&gt;Add-on domains:&lt;br /&gt;&lt;br /&gt; You can easily host multiple websites using add-on domains, you also create subdomains, multiple domains and park them using cpanel.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Backup:&lt;br /&gt;&lt;br /&gt;In cPanel hosting you get daily backups of your home directory and databases to save your code and website.&lt;br /&gt;&lt;br /&gt;Database Wizards:&lt;br /&gt;&lt;br /&gt;With database wizards you can create, edit and delete mysql databases. Perform day to day tasks using cpanel , and phpMyadmin.&lt;br /&gt;&lt;br /&gt;Email accounts:&lt;br /&gt;&lt;br /&gt;cPanel offers single interface to perform many complex tasks easily. You can create, edit , forward and delete email account using cpanel.&lt;br /&gt;&lt;br /&gt; Ftp:&lt;br /&gt;&lt;br /&gt;You can upload and download your code, update files using ftp and File Manager provided within cpanel&lt;br /&gt;&lt;br /&gt;Always choose an affordable &lt;a href="http://www.shopaserver.com"&gt;cpanel hosting&lt;/a&gt; and &lt;a href="http://www.shopaserver.com/reseller-hosting.htm"&gt;cpanel reseller hosting&lt;/a&gt; for stability and easy manageability&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-5107700881908694793?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/5107700881908694793/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/07/why-cpanel-hosting.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5107700881908694793'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5107700881908694793'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/07/why-cpanel-hosting.html' title='Why cpanel hosting'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-1608423849523982234</id><published>2010-07-30T08:29:00.000-07:00</published><updated>2010-07-30T08:37:29.653-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web hosting mistakes'/><category scheme='http://www.blogger.com/atom/ns#' term='web hosting'/><title type='text'>Mistakes to avoid while choosing a web host</title><content type='html'>It's pretty confusing to select right web hosting provider as a newbie. Below are some common mistakes to void while choosing a hosting company.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Stay away from Reviews sites:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Mostly review websites are affiliates of hosting companies, they reffer the clients to most paying host. Do not follow reviews and rating blindly.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Unlimited Offers:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Many web hosts try to attract customers with unlimited offers. Unlimited everything is just a marketing gimmick. Stay away from such fool offers or be wise to understand the limits of such host.&lt;br /&gt;&lt;br /&gt;Such hosts usually have limits in their terms and condition.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Buying domain and hosting from single place:&lt;/span&gt;&lt;br /&gt;Do not buy domains and hosting package from single host. Avoid putting all eggs in one basket.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Limited Features:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Do not miss important features like cPanel, Fantastico, Email account etc.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Try to buy an affordable &lt;a href="http://www.shopaserver.com"&gt;cpanel hosting&lt;/a&gt; with rich features. &lt;br /&gt;&lt;br /&gt;Recommended Hosts: Shopaserever, Hostgator, Site5, Bluehost&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-1608423849523982234?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/1608423849523982234/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/07/mistakes-to-avoid-while-choosing-web.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1608423849523982234'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1608423849523982234'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/07/mistakes-to-avoid-while-choosing-web.html' title='Mistakes to avoid while choosing a web host'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-749626794007940785</id><published>2010-07-28T04:02:00.001-07:00</published><updated>2010-07-28T04:12:36.143-07:00</updated><title type='text'>Which type of web hosting do you need?</title><content type='html'>There are many web hosts offering different types of web hosting in industry. It's pretty confusing to choose right web hosting as a beginner.&lt;br /&gt;&lt;br /&gt;Let's see what type of hosting is required to your website.&lt;br /&gt;&lt;br /&gt;Some major types of web hosting:&lt;br /&gt;&lt;br /&gt;a- Shared&lt;br /&gt;b- VPS&lt;br /&gt;c- Dedicated&lt;br /&gt;d- Email&lt;br /&gt;e- Ftp&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.shopaserver.com"&gt;Shared hosting&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;In this type of web hosting many websites are shared on single server. This is the cheapest and popular type of web-hosting.&lt;br /&gt;&lt;br /&gt;If you are a beginner and you don't have thousands of visitors than this is the right kind of web hosting for you.&lt;br /&gt;&lt;br /&gt;VPS hosting:&lt;br /&gt;&lt;br /&gt;This type of web hosting is good for bigger website having couple of thousands users per day or if your website code is heavy i.e image or video website.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Dedicated hosting&lt;br /&gt;&lt;br /&gt;This type of hosting is for high traffic and heavy websites, where number of dedicated machines are used to support millions of users a day. This is the most expensive type of web hosting&lt;br /&gt;&lt;br /&gt;Email and Ftp hosting&lt;br /&gt;&lt;br /&gt;At time you need on-line storage or backup of your code, or your company needs to send emails. &lt;br /&gt;&lt;br /&gt;Choose web hosting carefully, evaluating the features like &lt;a href="http://www.shopaserver.com"&gt;cpanel hosting&lt;/a&gt;, fantastico, add-on domains etc.&lt;br /&gt;&lt;br /&gt;have fun!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-749626794007940785?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/749626794007940785/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/07/which-type-of-web-hosting-you-need.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/749626794007940785'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/749626794007940785'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/07/which-type-of-web-hosting-you-need.html' title='Which type of web hosting do you need?'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-7980858210384037523</id><published>2010-07-27T01:50:00.000-07:00</published><updated>2010-07-27T01:55:45.567-07:00</updated><title type='text'>Mistakes to avoid while choosing cpanel hosting</title><content type='html'>Avoid below mistakes while choosing a web hosting provider&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1- Putting all eggs in one basket:&lt;br /&gt;&lt;br /&gt;Do not buy domain and &lt;a href="http://www.shopaserver.com"&gt;hosting&lt;/a&gt; from single provider, unless you are 200% fully confident on them&lt;br /&gt;Try to buy domain and hosting accounts from two different companies.&lt;br /&gt;&lt;br /&gt;2- Unlimited hosting&lt;br /&gt;&lt;br /&gt;Do not blindly believe on unlimited offers. Unlimited offers are not true in real sense. Do not get over excited with such offers.&lt;br /&gt;&lt;br /&gt;3- Backup process&lt;br /&gt;&lt;br /&gt;Many webmaster avoid backup process which is one of the important process for any website existence.&lt;br /&gt;Take daily or weekly backups to ensure your website safety.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Always choose quality &lt;a href="http://www.shopaserver.com"&gt;cpanel hosting&lt;/a&gt; having rich features to help you in long run.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-7980858210384037523?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/7980858210384037523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/07/mistakes-to-avoid-while-choosing-cpanel.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/7980858210384037523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/7980858210384037523'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/07/mistakes-to-avoid-while-choosing-cpanel.html' title='Mistakes to avoid while choosing cpanel hosting'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-9017092157735733688</id><published>2010-06-26T10:11:00.001-07:00</published><updated>2010-06-26T10:20:27.139-07:00</updated><title type='text'>free vs paid hosting</title><content type='html'>Are you going to launch your own website then the first thing you will need is good web hosting service. Finding a reliable web hosting service has become very convenient with the presence of myriads of web hosting companies online. These companies can be divided into a couple of groups; one is offering free web hosting while other is offering paid web hosting service. Being novice in this field you will be confused about what to choose and what to leave. Therefore here we have discussed few aspects of free and paid web hosting to make your decision easier.&lt;br /&gt;&lt;br /&gt;    Let’s take free web hosting first. The word ‘free’ always seems attractive linked with anything. Same is the case with web hosting. Though free web hosting will be an attractive offer for those who have little amount in hand to make their website run properly but such free offers do not give guarantee for performance and reliability. These free offers actually serves for service promotion not for earning money therefore web hosting companies offer free services to become more and more popular.&lt;br /&gt;&lt;br /&gt;    While on the other hand paid web hosting not only gives you reliability and stability in their performance but also offer additional features including email account, user control panels, site statistics check and complete control over your website file.&lt;br /&gt;&lt;br /&gt;    So you have to ponder over these important things while choosing the appropriate web hosting service for your newly developed website and then take the final decision according to your financial capacity and expected outcome.&lt;br /&gt;&lt;br /&gt;Our recommendation is cheap web hosting instead of free hosting , There are many good web hosts with excellent price and features, check out shopaserver for &lt;a href="http://www.shopaserver.com"&gt;cpanel hosting&lt;/a&gt; they have nice plans. you can also check out web hosting directories here for &lt;a href="http://www.bestwebhostings.net"&gt;best web hosting&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-9017092157735733688?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/9017092157735733688/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/06/free-vs-paid-hosting.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/9017092157735733688'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/9017092157735733688'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/06/free-vs-paid-hosting.html' title='free vs paid hosting'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-2095565376614268506</id><published>2010-05-18T05:19:00.001-07:00</published><updated>2010-05-18T05:19:37.750-07:00</updated><title type='text'>web hosting</title><content type='html'>One of the most important decisions that most online businesses have to make is choosing the right kind of web hosting service. With a reliable Hosting provider, you won't face many problems, however poor web hosting service can be a nightmare.&lt;br /&gt;Choosing the right kind of web hosting service can be a very complex task at times as there are some very important features that you need to make sure before purchasing a hosting account. Below are few tips to look while choosing the hosting service for your website.&lt;br /&gt;Hosting space &lt;br /&gt;A web hosting service provider usually assign you a certain amount of space for your websites.&lt;br /&gt;Don’t go for hosts offering unlimited disk space, unlimited hosting is a marketing gimmick to attract customers. Usually website don’t occupy much disk space, unless they have huge images or videos in code. Estimate the size of your code and database (for dynamic websites) , also consider some extra space for future needs.  Your web hosting company should be able to provide you enough space, especially if your website is rich in graphics or multimedia. &lt;br /&gt;Bandwidth or data transfer&lt;br /&gt; You also need to see if the hosting company provides you with sufficient bandwidth for efficient data transfer. After all it's your website and you need to ensure that you are getting the best services for the money you invest. &lt;br /&gt;Control Panel&lt;br /&gt;You need a control panel for daily maitenace tasks or taking backups. Cpanel is one of the most popular and stable control panel in market. Always choose a hosting that offers you Cpanel or some other popular control panel like Directadmin etc.&lt;br /&gt;FTP access is very crucial since it provides the ability to upload new pages. Some web hosting service providers allow you to just design your web pages with their own personal web builder. This may be useful for beginners however you need to ensure if they provide you the facility to expand later when you enhance your online business capabilities. &lt;br /&gt;Customer care&lt;br /&gt; Does the web hosting service provide you  supports? Do they respond rapidly to your online tickets or emails? Can you depend on them?&lt;br /&gt;Try to email your web host for differen queries or contact them on live chat, this will give you idea of support department. How quick and helpful they are.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Price&lt;br /&gt; Price is also one factor that you should look out for when choosing the best web hosting service. It's not necessarily true that the most expensive hosts are the best. Simply compare prices and services before you finalize one. There are many cheap web host offering excellent services in tiny price.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-2095565376614268506?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/2095565376614268506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/05/web-hosting.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/2095565376614268506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/2095565376614268506'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/05/web-hosting.html' title='web hosting'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-1983445304637820293</id><published>2010-04-20T04:49:00.001-07:00</published><updated>2010-04-20T04:49:59.942-07:00</updated><title type='text'>Linux Hosting Server Advantages</title><content type='html'>Linux AND Windows hosting server hosting server is a constant yield huge competitive Miester overalls ALUSTAR stop. Offer Each individual strengths and weaknesses. Kunin select-service web hosting service provider first, it is usually the opportunity for either or files in Windows-Linux server. This selection is based on the individual client, since I need both excellent solutions are.&lt;br /&gt;&lt;br /&gt;Benefits&lt;br /&gt;&lt;br /&gt;Provides Many Benefits of using the Linux server software ALUSTAR selection Thanx. Among other things, advantages include:&lt;br /&gt;&lt;br /&gt;    * Open source Software&lt;br /&gt;    * Linux Convert&lt;br /&gt;    * ECONOMIC&lt;br /&gt;    * Scripting language compatibility&lt;br /&gt;    * Access to the database&lt;br /&gt;    * Safety / Stability&lt;br /&gt;&lt;br /&gt;Open Source Software&lt;br /&gt;&lt;br /&gt;Key advantage of Linux with other open-source server software ALUSTAR. This simply means that the license fees as related software. Therefore, any KUKA can be used and the platform is located on the server free of charge, any mileage. This also means open source software users add improved continuously, and CODE. This is a costly Nahda considerable benefit to the server software.&lt;br /&gt;&lt;br /&gt;Linux Conversion&lt;br /&gt;&lt;br /&gt;Napper feature is the ability to easily convert Windows to Linux-based web site. IF NOT satisfied Linux user programs I have the opportunity to host the website files to Windows with little effort. In addition, trained the Site page Can TRANSFORM fits easily migrate a user's requirements. This is the perfect extension of the growing web and.&lt;br /&gt;&lt;br /&gt;ECONOMIC&lt;br /&gt;&lt;br /&gt;Because it, and that the free Linux open-source software, therefore, is a popular choice. Associated distribution of the costs are only enforced against the owner or the host. Is less than the cost of a translator to pay the full price of the server software Other.&lt;br /&gt;&lt;br /&gt;Scripting Language Compatibility&lt;br /&gt;&lt;br /&gt;Linux more compatible programming languages such as MySQL, Perl, PHP and other platforms for hosting. NIIT's website if the claim can hold Linux. Compatibility is a highly reliable and efficient effort in vain Vahan.&lt;br /&gt;&lt;br /&gt;Access to the database&lt;br /&gt;&lt;br /&gt;Linux hosting offers a number of EMI's most popular databases, Lukie, mSQL, MySQL, and PostgreSQL. Nama databases Communicate Effective websites fast information retrieval. Since these are built in relation to each other, together they collectively with each other website AND leavers Maksimir.&lt;br /&gt;&lt;br /&gt;Security / stability&lt;br /&gt;&lt;br /&gt;Linux olev said better security and stability of server platforms Muut Thanx. Since the open-source software, Linux software is less attacks as a translator and more stable. Since the security and stability, Linux has become a popular choice for professionals and web programmers.&lt;br /&gt;&lt;br /&gt;Av Linux popularity, mainly due to the open source. As a result, null and void is affordable, safe AND Vaka, who have ALL the characteristics of relying on NIIT, Web development, which are in the world. Since Linux is expanding and growing Prev, Lavoisier become a server hosting a woman ALUSTAR selection reasons.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-1983445304637820293?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/1983445304637820293/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/04/linux-hosting-server-advantages.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1983445304637820293'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1983445304637820293'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/04/linux-hosting-server-advantages.html' title='Linux Hosting Server Advantages'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-1084605835538996052</id><published>2010-04-15T00:25:00.000-07:00</published><updated>2010-04-15T00:31:41.735-07:00</updated><title type='text'>smart hosting</title><content type='html'>There are 3 ways to be smart with accommodation. If you follow the tips mentioned in this article is easier for you to choose a web host that suits your needs.&lt;br /&gt;&lt;br /&gt;Way # 1 - Be careful when you are looking for accommodation reviews&lt;br /&gt;&lt;br /&gt;If you type in google phrases like hotel room or a similar one is a large number of websites with the top 10 companies. The site tries to act as an independent review sites, but most of them are affiliates only pay high commissions for each sale. The honest can be found in the forums. There are several specialized forums on shared hosting and many other webmaster forums, where you can find independent studies.&lt;br /&gt;&lt;br /&gt;Way # 2 - Evidence of the company before ordering hosting plans&lt;br /&gt;&lt;br /&gt;Web hosting providers claim to have fast customer service works 24 hours a day, 7 days a week? Try - I send a message with your questions and see how fast you respond. Take into account not only the response time, but also the quality of the response.&lt;br /&gt;&lt;br /&gt;Way # 3 - Check availability of web hosting&lt;br /&gt;&lt;br /&gt;Good availability is one of the most important factors for choosing a web hosting provider. Be smart and certain services of third parties which measures the uptime. Reliable web hosting service must be monitored by the 3rd party and not only for himself. Better than 99.5% uptime is considered excellent, especially availability of 99.75% effective.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-1084605835538996052?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/1084605835538996052/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2010/04/smart-hosting.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1084605835538996052'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1084605835538996052'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2010/04/smart-hosting.html' title='smart hosting'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-9121710560314284749</id><published>2009-09-18T03:12:00.000-07:00</published><updated>2009-09-18T03:17:29.948-07:00</updated><title type='text'>cut webhosting regular price with coupons</title><content type='html'>there are number of webhosts offering coupons and code to cut there regular price.&lt;br /&gt;for example I bought two domains each having regular price approx. $12 but with&lt;br /&gt;coupon I was able to reduce it to $7.49  each.&lt;br /&gt;&lt;br /&gt;here are godaddy coupons to cut there regular price.&lt;br /&gt;&lt;br /&gt;please post more coupons in comment section if you have any&lt;br /&gt;&lt;br /&gt;cjc749fat - $7.49 .COMs (exp 9/30/09)&lt;br /&gt;&lt;br /&gt;cjcfat30 - $5 Off w/ $30 Purchase (exp 9/30/09)&lt;br /&gt;&lt;br /&gt;cjcfat50 - $10 Off w/ $50 Purchase (exp 9/30/09)&lt;br /&gt;&lt;br /&gt;cjcfat75 - 15% Off w/ $75 Purchase (exp 9/30/09)&lt;br /&gt;&lt;br /&gt;cjcfat10 - 10% off any purchase (exp 9/30/09)&lt;br /&gt;&lt;br /&gt;cjcfat20h - 20% off Shared Hosting (exp 9/30/09)&lt;br /&gt;&lt;br /&gt;Edit by Moderator- The coupons above have been extended through September, the expiration dates have been edited to reflect that&lt;br /&gt;&lt;br /&gt;OYH7 - $2.50 off / $7.49 any .COM (renewals too... just used it)&lt;br /&gt;&lt;br /&gt;BTPS101 - 20% any order of $50 or more&lt;br /&gt;&lt;br /&gt;BTPS111 - 10% off anything&lt;br /&gt;&lt;br /&gt;BTPS255 - 25% off $100 or more&lt;br /&gt;&lt;br /&gt;OYH5 - 10% off whatever&lt;br /&gt;&lt;br /&gt;OYH6 - $5 off a $30 purchase&lt;br /&gt;&lt;br /&gt;chill5 - 10% off&lt;br /&gt;&lt;br /&gt;chill6 - $5 off $30&lt;br /&gt;&lt;br /&gt;chill7 - $7.49 .coms&lt;br /&gt;&lt;br /&gt;hash5 - 10% off&lt;br /&gt;&lt;br /&gt;hash6 - $5 off $30&lt;br /&gt;&lt;br /&gt;hash7 - $7.49 .com registration&lt;br /&gt;&lt;br /&gt;gdd1101c - 10% off any order of $40 or more&lt;br /&gt;&lt;br /&gt;I will post more for other hosting companies too&lt;br /&gt;just keep in touch!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-9121710560314284749?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/9121710560314284749/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/09/cut-webhosting-regular-price-with.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/9121710560314284749'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/9121710560314284749'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/09/cut-webhosting-regular-price-with.html' title='cut webhosting regular price with coupons'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-1217693978789260088</id><published>2009-09-12T03:06:00.003-07:00</published><updated>2009-09-12T03:40:29.303-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='cpanel mysql backup'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql backup'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><title type='text'>Mysql backups tips</title><content type='html'>&lt;span style="color: rgb(51, 102, 255);font-family:courier new;font-size:100%;"  &gt;you need mysql backup? you are doing critical work :) strictly talking about live web server environment.&lt;br /&gt;you need to migrate your database or your website.&lt;br /&gt;you need some edition in database&lt;br /&gt;need to restore corrupted mysql database.&lt;br /&gt;&lt;br /&gt;whatever your need is here are few methods to take backups&lt;br /&gt;&lt;br /&gt;by command line:&lt;br /&gt;&lt;br /&gt;method1:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:arial;"&gt;mysqldump -u &lt;/span&gt;&lt;/span&gt;&lt;user&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:arial;"&gt;(user) -p(password without space) &lt;/span&gt;&lt;/span&gt;&lt;password without="" space=""&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:arial;"&gt; (databasename) &lt;/span&gt;&lt;/span&gt;&lt;databasename-you-want-to-backup&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:arial;"&gt; &gt; /path/to-save/database.sql&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;example: mysqldump -u john -pjohn123 mydb &gt; /home/john/mydbtodaydate.sql&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Restore easy&lt;br /&gt;------------&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;mysql -u &lt;/span&gt;&lt;user&gt;&lt;span style="font-size:85%;"&gt; -p&lt;/span&gt;&lt;password without="" password=""&gt;&lt;databasename&gt;&lt;span style="font-size:85%;"&gt;(password)  (databasename)  &lt; /path/to/backedup file    &lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;example: mysql -u john -pjohn123 mydb &lt; /var/olddb.sql   &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;these are&lt;br /&gt;easy, reliable common methods to backups and restore  window guys can use sqlyog for them if they are unhappy with command line   some more examples   MySql Dump without data (only structure)   mysqldump -u dbuser -p[pwd] --no-data database &gt; database_backup.sql&lt;br /&gt;&lt;br /&gt;this will backup the structure of database without data&lt;br /&gt;it is useful when you need make a copy of database but don't want to download huge volume of database&lt;br /&gt;&lt;br /&gt;For cpanel guys, in cpanel you have limitation of size to restore data, anyway you can restore data from your PC to server using cpanel&lt;br /&gt;but if you have large database size than situation becomes hard, you cannot restore it from your PC as well as from server, but nothing is last you can restore it using ssh and command line&lt;br /&gt;&lt;br /&gt;so command line wins :) sorry to GUI guys&lt;br /&gt;&lt;/databasename&gt;&lt;/password&gt;&lt;/user&gt;&lt;/databasename-you-want-to-backup&gt;&lt;/password&gt;&lt;/user&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-1217693978789260088?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/1217693978789260088/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/09/mysql-backups-tips-and-trips_12.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1217693978789260088'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1217693978789260088'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/09/mysql-backups-tips-and-trips_12.html' title='Mysql backups tips'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-4386195626842976088</id><published>2009-09-07T09:03:00.000-07:00</published><updated>2009-09-13T00:07:54.468-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='cheap linux host'/><category scheme='http://www.blogger.com/atom/ns#' term='cpanel web host'/><category scheme='http://www.blogger.com/atom/ns#' term='cheap php web host'/><category scheme='http://www.blogger.com/atom/ns#' term='cheap web hosting'/><title type='text'>shopaserver.com an excellent web host for small/startup and freelancers</title><content type='html'>There are hundreds and thousands of hosts claiming best and cheaper packages but rarely suit to newbie small/startups and freelancers. most of such hosting companies have hidden cost in their packages.&lt;br /&gt;today market is filled up with freelancers, small/startups delivering quality work to market.&lt;br /&gt;For newbie and freelancers it is hard to pay allot of money to host for there websites and portfolios.&lt;br /&gt;I found shopaserver.com as best choice for such startups and freelancers. they offer excellent affordable packages.shopaserver offer special portfolio and personal plans with excellent website features including php rich features, blogs, wordpress and much more. on top of all price is awesome you can have a portfolio or small website in $2.5 /month plus performance is key feature of this host. servers hardware brand is DEll which I use to love allot. there datacenter is in Texas and one of the most popular and reputed data center.&lt;br /&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");&lt;br /&gt;document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;try {&lt;br /&gt;var pageTracker = _gat._getTracker("UA-9109462-4");&lt;br /&gt;pageTracker._trackPageview();&lt;br /&gt;} catch(err) {}&lt;/script&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");&lt;br /&gt;document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;try {&lt;br /&gt;var pageTracker = _gat._getTracker("UA-10642765-1");&lt;br /&gt;pageTracker._trackPageview();&lt;br /&gt;} catch(err) {}&lt;/script&gt;&lt;br /&gt;I would love to recommend freelancers to benefit from portfolio plan and small startups to have personal and business plan. small startups can have bulk website&lt;br /&gt;at reasonable margin so they can earn allot.&lt;br /&gt;&lt;br /&gt;So get ready to start saving by paying less and start earning by your websites&lt;br /&gt;&lt;br /&gt;have fun with websites :)&lt;input id="gwProxy" type="hidden"&gt;&lt;!--Session data--&gt;&lt;input onclick="jsCall();" id="jsProxy" type="hidden"&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-4386195626842976088?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/4386195626842976088/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/09/shopaservercom-excellent-web-host-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/4386195626842976088'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/4386195626842976088'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/09/shopaservercom-excellent-web-host-for.html' title='shopaserver.com an excellent web host for small/startup and freelancers'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-690169875152556102</id><published>2009-08-22T23:09:00.000-07:00</published><updated>2009-09-12T03:33:11.726-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='best web host'/><category scheme='http://www.blogger.com/atom/ns#' term='cheap shared web hosting'/><category scheme='http://www.blogger.com/atom/ns#' term='cheap web hosting'/><title type='text'>Find a better web host</title><content type='html'>you can see thousands of web host offering cheaper packages. it is difficult to decide&lt;br /&gt;web host. here few tips that will help you to decide.&lt;br /&gt;&lt;br /&gt;read review google webhost review&lt;br /&gt;unfortunately there are review sites which are not showing genuine ratting but still&lt;br /&gt;not every thing is lost&lt;br /&gt;&lt;br /&gt;be careful some big host also have paid review so you need to be intelligent in it&lt;br /&gt;&lt;br /&gt;check the agreement what a web host actually providing you and where he is limiting you&lt;br /&gt;&lt;br /&gt;go to forums and ask for some one who already experiencing web host services&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;some quality web host I would recommend are&lt;br /&gt;&lt;br /&gt;www.theplanet.com for dedicated servers I am really fan of them&lt;br /&gt;&lt;br /&gt;www.shopaserver.com for shared and small sites this host is fair, simple and best&lt;br /&gt;in price plans and performance&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;stay away hosts&lt;br /&gt;&lt;br /&gt;justhost.com dont get victim by there high marketing just stay away&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;wish you better host )&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");&lt;br /&gt;document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;try {&lt;br /&gt;var pageTracker = _gat._getTracker("UA-9109462-1");&lt;br /&gt;pageTracker._trackPageview();&lt;br /&gt;} catch(err) {}&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-690169875152556102?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/690169875152556102/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/08/find-better-web-host.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/690169875152556102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/690169875152556102'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/08/find-better-web-host.html' title='Find a better web host'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-3884106502311251352</id><published>2009-06-07T22:37:00.000-07:00</published><updated>2009-09-12T03:33:53.209-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='domain'/><category scheme='http://www.blogger.com/atom/ns#' term='domain protection'/><category scheme='http://www.blogger.com/atom/ns#' term='domain management'/><title type='text'>how to prevent your domain from getting black listed</title><content type='html'>people want there site get propogated in days, some may be in mins.&lt;br /&gt;&lt;br /&gt;for this purpose they send allot of mails to public without taking precautions&lt;br /&gt;and ultimately get black or grey listed.&lt;br /&gt;here are few tips to avoid such situation.&lt;br /&gt;&lt;br /&gt;First of verify dns is resolving properly forward and reverse record of you mail&lt;br /&gt;server.&lt;br /&gt;it should not be garbled name for example abclts90909.webhost.com&lt;br /&gt;proper name is something like mymail.myserver.com&lt;br /&gt;this will save you allot&lt;br /&gt;&lt;br /&gt;Next thing is to check content your email. Usually emails are filtered before&lt;br /&gt;delivery by various servers software filters for certain keywords.&lt;br /&gt;you need to avoid these words in your email else your mail will land to spam or junk folder&lt;br /&gt;you can google for list of such words.&lt;br /&gt;There are also many softwares available to check spam words.&lt;br /&gt;&lt;br /&gt;well you can test your domain here: &lt;br /&gt;dnsstuff.com&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;well folks! enough for now.  any query please comment&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-3884106502311251352?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/3884106502311251352/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/06/how-to-prevent-your-domain-from-getting.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/3884106502311251352'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/3884106502311251352'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/06/how-to-prevent-your-domain-from-getting.html' title='how to prevent your domain from getting black listed'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-1921315798554607185</id><published>2009-06-03T02:53:00.000-07:00</published><updated>2009-09-12T03:34:23.134-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='window 2008'/><category scheme='http://www.blogger.com/atom/ns#' term='window tutorials'/><title type='text'>hard link in windows 2008 server</title><content type='html'>I have configured ftp server for my developers team. they were in need of some directories which were not in ftp root. As I am linux guy so&lt;br /&gt;I decided to put hard link in ftp document root so they can access folder even if it is in different location.&lt;br /&gt;&lt;br /&gt;note: making shortcut or soft hyperlink will not work in ftp&lt;br /&gt;&lt;br /&gt;so how we make hard link that can be accessible in ftp server&lt;br /&gt;&lt;br /&gt;Here we go!&lt;br /&gt;&lt;br /&gt;Goto command line&lt;br /&gt;&lt;br /&gt;mklink /d nameofyourlink pathofdir&lt;br /&gt;&lt;br /&gt;so real example will be :&lt;br /&gt;&lt;br /&gt;mklink /d mylink c:\windows&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-1921315798554607185?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/1921315798554607185/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/06/hard-link-in-windows-2008-server.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1921315798554607185'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1921315798554607185'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/06/hard-link-in-windows-2008-server.html' title='hard link in windows 2008 server'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-8392751758932227137</id><published>2009-06-02T23:37:00.000-07:00</published><updated>2009-09-12T03:35:05.003-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='password recovery'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql recovery'/><category scheme='http://www.blogger.com/atom/ns#' term='database recovery'/><title type='text'>how to recover mysql root password</title><content type='html'>Forgot root password?&lt;br /&gt;never mind&lt;br /&gt;&lt;br /&gt;follow 3 easy steps and recover mysql root password&lt;br /&gt;&lt;br /&gt;first of all stop mysqld service&lt;br /&gt;&lt;br /&gt;#service mysqld stop  or /etc/init.d/mysqld stop&lt;br /&gt;&lt;br /&gt;start with skip grant table option&lt;br /&gt;&lt;br /&gt;#mysqld_safe --skip-grant-tables &amp;amp;&lt;br /&gt;&lt;br /&gt;now login with root without any password&lt;br /&gt;&lt;br /&gt;# mysql -u root&lt;br /&gt;&lt;br /&gt;here  you got it!&lt;br /&gt;now for own safety change mysql root password&lt;br /&gt;&lt;br /&gt;mysql&gt; set password=PASSWORD('yourpasswd');&lt;br /&gt;mysql&gt; flush privileges;&lt;br /&gt;&lt;br /&gt;now stop mysql service and start it again&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-8392751758932227137?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/8392751758932227137/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/06/how-to-recover-mysql-root-password.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/8392751758932227137'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/8392751758932227137'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/06/how-to-recover-mysql-root-password.html' title='how to recover mysql root password'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-1161282652034457486</id><published>2009-06-02T08:30:00.000-07:00</published><updated>2009-09-12T03:35:41.855-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web host review'/><category scheme='http://www.blogger.com/atom/ns#' term='cheap shared web hosting'/><title type='text'>how to choose best web host</title><content type='html'>choosing the best web host is confusing. Allot of &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_0"&gt;web hosts&lt;/span&gt; attracting audience with different tricks.&lt;br /&gt;&lt;br /&gt;here are few tips to choose best Web Host&lt;br /&gt;&lt;br /&gt;1- check different &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_1"&gt;review&lt;/span&gt; sites for top 10 , top 20 best web hosts, now! your 60 % work is done&lt;br /&gt;&lt;br /&gt;2- Best know your needs&lt;br /&gt;&lt;br /&gt;3- see features in details&lt;br /&gt;&lt;br /&gt;4- compare cost with features&lt;br /&gt;&lt;br /&gt;5- &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_2"&gt;don't&lt;/span&gt; compromise on reliability&lt;br /&gt;&lt;br /&gt;6- try to get 100 % network time&lt;br /&gt;&lt;br /&gt;7-check what security you are given at least basic dos protection is your right :)&lt;br /&gt;&lt;br /&gt;8- &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_3"&gt;Don't&lt;/span&gt; get lost in general term like &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_4"&gt;Pentium&lt;/span&gt; 4 , ask for hardware brand, Dell, HP, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;Supermicro&lt;/span&gt;    well my choice is Dell :)&lt;br /&gt;&lt;br /&gt;9-have a plan for scalability and choose right host which gives you minimum down time in any case&lt;br /&gt;&lt;br /&gt;Good luck guys!&lt;br /&gt;&lt;br /&gt;any question? comments are at bottom :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-1161282652034457486?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/1161282652034457486/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/06/how-to-choose-best-web-host.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1161282652034457486'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/1161282652034457486'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/06/how-to-choose-best-web-host.html' title='how to choose best web host'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-8196520011389139416</id><published>2009-06-02T02:54:00.000-07:00</published><updated>2009-09-12T03:36:24.764-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='cron jobs'/><category scheme='http://www.blogger.com/atom/ns#' term='backup tips'/><title type='text'>easy full backup</title><content type='html'>&lt;span style="font-family:verdana;"&gt;Backup is very important task in system administration.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Never ever! underestimate the importance of backup.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;its your survival.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;make some cool and simple scripts for backup&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;you can use &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;amanda&lt;/span&gt;, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;Backula&lt;/span&gt; for backups management&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;There are many scripts and methods available for backup,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;any way here is a simple way to take full backup by &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;cron&lt;/span&gt; job&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;crontab&lt;/span&gt; -e&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;press i for insert&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;0 0 * * * &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;cp&lt;/span&gt; -&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;rf&lt;/span&gt; /path/to/&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;mysql&lt;/span&gt; /&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;pathyouwant&lt;/span&gt; to copy&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;for example&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;0 0 * * *  &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;cp&lt;/span&gt; -&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_9"&gt;rf&lt;/span&gt; /var/lib/&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_10"&gt;mysql&lt;/span&gt; /backup&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;this will copy &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;mysql&lt;/span&gt; folder including all databases to /backup folder&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;at midnight&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-8196520011389139416?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/8196520011389139416/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/06/easy-full-backup.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/8196520011389139416'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/8196520011389139416'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/06/easy-full-backup.html' title='easy full backup'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-7576713348265782071</id><published>2009-06-01T21:04:00.000-07:00</published><updated>2009-06-02T02:22:53.485-07:00</updated><title type='text'>how to check if your processor is 64-bit or 32-bit in linux</title><content type='html'>you can check with a simple command :&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;grep ' lm ' /proc/cpuinfo&lt;br /&gt;&lt;br /&gt;output must be like:&lt;br /&gt;&lt;br /&gt;flags        : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc pni monitor ds_cpl est cid cx16 xtpr lahf_lm&lt;br /&gt;&lt;br /&gt;If blank output nothing gets printed it means its not 64 bit.&lt;br /&gt;lm= long mode&lt;br /&gt;&lt;br /&gt;How to check if your linux version is 32 bit or 64 bit&lt;br /&gt;======================================================&lt;br /&gt;uname -m&lt;br /&gt;&lt;br /&gt;for 64 bit output= &lt;/span&gt;&lt;span style="font-family:courier new,courier;"&gt;x86_64&lt;br /&gt;for 32 bit output= i686&lt;br /&gt;&lt;br /&gt;hmm.. so check your machines now :)&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:courier new,courier;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-7576713348265782071?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/7576713348265782071/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/06/how-to-check-if-your-process-is-64-bit.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/7576713348265782071'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/7576713348265782071'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/06/how-to-check-if-your-process-is-64-bit.html' title='how to check if your processor is 64-bit or 32-bit in linux'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-5241819049353881685</id><published>2009-06-01T03:02:00.000-07:00</published><updated>2009-09-12T03:36:57.904-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='dos vs linux'/><category scheme='http://www.blogger.com/atom/ns#' term='commands'/><title type='text'>dos vs linux commands</title><content type='html'>Dos guys in linux&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;table class="CALSTABLE" bgcolor="#e0e0e0" border="1" cellpadding="4" cellspacing="0"&gt;&lt;thead&gt;&lt;tr&gt;&lt;th align="left" valign="top" width="24%"&gt;Command's Purpose&lt;/th&gt;&lt;th align="left" valign="top" width="15%"&gt;MS-DOS&lt;/th&gt;&lt;th align="left" valign="top" width="12%"&gt;Linux&lt;/th&gt;&lt;th align="left" valign="top" width="49%"&gt;Basic Linux Example&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Copies files&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;copy&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;cp&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;cp &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;thisfile.txt&lt;/i&gt;&lt;/tt&gt; /home/&lt;tt class="REPLACEABLE"&gt;&lt;i&gt;thisdirectory&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Moves the files&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;move&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;mv&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;mv &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;thisfile.txt&lt;/i&gt;&lt;/tt&gt;    /home/&lt;tt class="REPLACEABLE"&gt;&lt;i&gt;thisdirectory&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Lists of files&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;dir&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;ls&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;ls&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Clears the screen&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;cls&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;clear&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;clear&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Closes prompt windows&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;exit&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;exit&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;exit&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Displays or set date&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;date&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;date&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;date&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Delete files&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;del&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;rm&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;rm &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;thisfile.txt&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;"Echoes" output on  screen&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;echo&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;echo&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;echo &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;this message&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Edits files simple text editor&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;edit&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;pico&lt;/tt&gt;&lt;a name="AEN9041" href="http://www.redhat.com/docs/manuals/linux/RHL-6.2-Manual/getting-started-guide/ch-doslinux.html#FTN.AEN9041"&gt;[a]&lt;/a&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;pico &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;thisfile.txt&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Compares the contents of files in between&lt;br /&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;fc&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;diff&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;diff &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;file1&lt;/i&gt;&lt;/tt&gt;      &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;file2&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Finds a string of text in  file&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;find&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;grep&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;grep                 &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;this word or phrase&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;                 &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;thisfile.txt&lt;/i&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Formats  floppy&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;format                 a:&lt;/tt&gt; (if floppy's in &lt;tt class="FILENAME"&gt;A:&lt;/tt&gt;)&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;mke2fs&lt;/tt&gt; (or                 &lt;tt class="COMMAND"&gt;mformat&lt;/tt&gt;&lt;a name="AEN9077" href="http://www.redhat.com/docs/manuals/linux/RHL-6.2-Manual/getting-started-guide/ch-doslinux.html#FTN.AEN9077"&gt;[b]&lt;/a&gt;)&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;/sbin/mke2fs                 /dev/fd0&lt;/tt&gt; (&lt;tt class="FILENAME"&gt;/dev/fd0&lt;/tt&gt; is the Linux                 equivalent of &lt;tt class="FILENAME"&gt;A:&lt;/tt&gt;)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Displays command line help&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;&lt;tt class="REPLACEABLE"&gt;&lt;i&gt;command&lt;/i&gt;&lt;/tt&gt;         /?&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;man&lt;/tt&gt;&lt;a name="AEN9090" href="http://www.redhat.com/docs/manuals/linux/RHL-6.2-Manual/getting-started-guide/ch-doslinux.html#FTN.AEN9090"&gt;[c]&lt;/a&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;man         &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;command&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Creates directory&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;mkdir&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;mkdir&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;mkdir &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;directory&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Screens through file&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;more&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;less&lt;/tt&gt;&lt;a name="AEN9111" href="http://www.redhat.com/docs/manuals/linux/RHL-6.2-Manual/getting-started-guide/ch-doslinux.html#FTN.AEN9111"&gt;[d]&lt;/a&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;less                 &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;thisfile.txt&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Renames file&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;ren&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;mv&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;mv &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;thisfile.txt&lt;/i&gt;&lt;/tt&gt;      &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;thatfile.txt&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;a name="AEN9128" href="http://www.redhat.com/docs/manuals/linux/RHL-6.2-Manual/getting-started-guide/ch-doslinux.html#FTN.AEN9128"&gt;[e]&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Shows your location in FS&lt;br /&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;chdir&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;pwd&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;pwd&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Changes dir.s with a specified path                 (&lt;i class="FIRSTTERM"&gt;absolute path&lt;/i&gt;)&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;cd &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;pathname&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;cd &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;pathname&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;cd &lt;tt class="REPLACEABLE"&gt;&lt;i&gt;/directory/directory&lt;/i&gt;&lt;/tt&gt;&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Change dir.s with a &lt;i class="FIRSTTERM"&gt;relative paths&lt;/i&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;cd ..&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;cd ..&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;cd ..&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Displays the time&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;time&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;date&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;date&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align="left" valign="top" width="24%"&gt;Shows amount of RAM and usage&lt;/td&gt;&lt;td align="left" valign="top" width="15%"&gt;&lt;tt class="COMMAND"&gt;mem&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="12%"&gt;&lt;tt class="COMMAND"&gt;free&lt;/tt&gt;&lt;/td&gt;&lt;td align="left" valign="top" width="49%"&gt;&lt;tt class="COMMAND"&gt;procinfo&lt;/tt&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-5241819049353881685?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/5241819049353881685/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/06/dos-vs-linux-commands.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5241819049353881685'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/5241819049353881685'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/06/dos-vs-linux-commands.html' title='dos vs linux commands'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-6382674024861390388</id><published>2009-06-01T01:16:00.002-07:00</published><updated>2009-09-12T03:37:39.786-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bash'/><category scheme='http://www.blogger.com/atom/ns#' term='command line'/><category scheme='http://www.blogger.com/atom/ns#' term='useful commands'/><title type='text'>some use ful commands for linux guys</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_i8zDspQyQhw/SiOUyYNrTqI/AAAAAAAAAAc/UDiRkMZscmw/s1600-h/servers.jpeg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 113px; height: 124px;" src="http://2.bp.blogspot.com/_i8zDspQyQhw/SiOUyYNrTqI/AAAAAAAAAAc/UDiRkMZscmw/s400/servers.jpeg" alt="" id="BLOGGER_PHOTO_ID_5342277176205725346" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;netstat -a -e&lt;br /&gt;&lt;br /&gt;displays network connection&lt;br /&gt;&lt;br /&gt;du * -sh&lt;br /&gt;&lt;br /&gt;display directory size disk usage use it to track which dir is taking more size&lt;br /&gt;&lt;br /&gt;free -m&lt;br /&gt;&lt;br /&gt;tells you free memory and used memory details&lt;br /&gt;&lt;br /&gt;last reboot&lt;br /&gt;&lt;br /&gt;tracks your system reboot&lt;br /&gt;&lt;br /&gt;grep xyz /etc/squid/squid.conf xyz=text   /etc/squid/squid.conf= path to file which you want search&lt;br /&gt;&lt;br /&gt;search some text within file&lt;br /&gt;&lt;br /&gt;df -h&lt;br /&gt;&lt;br /&gt;list partitions with disk usage&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-6382674024861390388?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/6382674024861390388/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/06/some-user-ful-commands-for-linux-guys_01.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/6382674024861390388'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/6382674024861390388'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/06/some-user-ful-commands-for-linux-guys_01.html' title='some use ful commands for linux guys'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_i8zDspQyQhw/SiOUyYNrTqI/AAAAAAAAAAc/UDiRkMZscmw/s72-c/servers.jpeg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2292316312608514812.post-8037844144927938618</id><published>2009-05-28T21:20:00.000-07:00</published><updated>2009-09-12T03:38:31.307-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='dedicated servers'/><category scheme='http://www.blogger.com/atom/ns#' term='data center'/><category scheme='http://www.blogger.com/atom/ns#' term='web servers'/><category scheme='http://www.blogger.com/atom/ns#' term='server management'/><title type='text'>tips and trick , enjoy system administration</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_i8zDspQyQhw/SiOUT7VHePI/AAAAAAAAAAM/9mLt1SgVf-c/s1600-h/srv2.jpeg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 128px; height: 87px;" src="http://4.bp.blogspot.com/_i8zDspQyQhw/SiOUT7VHePI/AAAAAAAAAAM/9mLt1SgVf-c/s320/srv2.jpeg" alt="" id="BLOGGER_PHOTO_ID_5342276653056227570" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;why my email is not working?urgent! our site is down!&lt;br /&gt;quick! our server is down!&lt;br /&gt;"IT deparment are Cost centers"&lt;br /&gt;we need cheapest and reliable server&lt;br /&gt;our site get hacked !!!! what to do&lt;br /&gt;partition is 100% full!&lt;br /&gt;CPU usage is alarming!&lt;br /&gt;site response is very very slow!&lt;br /&gt;&lt;br /&gt;sys admins have to face such situations daily. I will discuss some tips to ease&lt;br /&gt;your daily life and relax. in fact sys admin is the guy who can realy relax in office just monitor servers and services health. get alert before most of the things go wrong and get enough time to fix them.&lt;br /&gt;so guys are you ready for you server?doesn't matter if it is dedicated server , or your local area network server, after all server is a server :)&lt;br /&gt;&lt;br /&gt;First thing is to prepare best deployment plan, if you want servers dont disturb you, getting a call after midnight telling you that your server is in critical situation than do some work on plan and sleep tight.&lt;br /&gt;&lt;br /&gt;Planning will help you allot. what should be covered in your plan:&lt;br /&gt;&lt;br /&gt;Things to be planned:&lt;br /&gt;&lt;br /&gt;Application needs&lt;br /&gt;&lt;br /&gt;what your application needs from you?&lt;br /&gt;what are some hardware needs?&lt;br /&gt;what is your budget, what to do for cost effective solution?&lt;br /&gt;&lt;br /&gt;Capacity management&lt;br /&gt;&lt;br /&gt;how important is your application, website or code whatever you wana say :)&lt;br /&gt;do you need a failover, redundancy , hot backups, offsite backups?&lt;br /&gt;&lt;br /&gt;Security&lt;br /&gt;&lt;br /&gt;Firewalls, intrusion detection how to safe your server from attacks&lt;br /&gt;Some kind of monitoring system which send you an alert before any thing goes wrong.&lt;br /&gt;&lt;br /&gt;Scalability&lt;br /&gt;&lt;br /&gt;when will you need to add another server what your maximum limits&lt;br /&gt;where is bottleneck most of the time is memory :)&lt;br /&gt;do you need to upgrade existing hardware or need to add one more server&lt;br /&gt;&lt;br /&gt;Disaster recovery plan&lt;br /&gt;&lt;br /&gt;how to handle situation if any thing goes wrong for example you hard disk crashes, data deleted mistakenly, worst scenerio if your site is hacked , you have to prepare a plan to recover this scenrio.&lt;br /&gt;&lt;br /&gt;Business Continuity Plan&lt;br /&gt;&lt;br /&gt;For mission critical servers, in fact this is a task which management has to do but sys admin play an important role in it.&lt;br /&gt;how to continue you business in worst scenario, earth quick, fire threat, flooding etc.&lt;br /&gt;how to stay up and satisfy you customers.&lt;br /&gt;&lt;br /&gt;To Be Continued...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2292316312608514812-8037844144927938618?l=serversguy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://serversguy.blogspot.com/feeds/8037844144927938618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://serversguy.blogspot.com/2009/05/server-guy-tips-and-trick-with-little.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/8037844144927938618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2292316312608514812/posts/default/8037844144927938618'/><link rel='alternate' type='text/html' href='http://serversguy.blogspot.com/2009/05/server-guy-tips-and-trick-with-little.html' title='tips and trick , enjoy system administration'/><author><name>admin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_i8zDspQyQhw/SiOUT7VHePI/AAAAAAAAAAM/9mLt1SgVf-c/s72-c/srv2.jpeg' height='72' width='72'/><thr:total>2</thr:total></entry></feed>
