ROUTE Command Windows Posted on February 17, 2011 by admin ROUTE ADD 192.168.1.0 MASK 255.255.255.0 192.168.5.1 -p 192.168.5.1 – gateway 192.168.1.0 – routed subnet Posted in Uncategorized Leave a comment
Sharing Internet Connection in Ubuntu Posted on August 14, 2011 by admin Start by configuring the network card that interfaces to the other computers on you network # ifconfig ethX ip where ethX is the network card and ip is your desired server ip address (Usually 192.168.0.1 is used) Then configure the NAT as followsRead More Posted in Uncategorized Leave a comment
Win 7/2008 connecting to Win 2000 problem Posted on August 14, 2011 by admin 1. Run regedit. 2. Navigate to:Read More Posted in Uncategorized Leave a comment
Backup Linux System using TAR Posted on October 26, 2010 by admin NEED MORE WORK! sudo tar -cpjf /var/backup/system-backup.tar.bz2 --exclude={/dev/*,/proc/*,/sys/*,/srv/*,/distr/*,/tmp/*,/home/xbmc/Downloads/*,/var/backup/*,/media/*,/mnt/*} / Posted in Uncategorized Leave a comment
Find changed files Posted on July 27, 2010 by admin find /var/www/vhosts -name “*” -type d ( -name statistics -o -name cache* ) -prune -o -mtime -0 -print this will find all files changes within the past 24 hours excluding statistics and cache folders Posted in PLESK Leave a comment