Archive for the software category

Computer Breakthrough

Share on TwitterSubmit to StumbleUponDigg This
See below Sponsored Links

At any given time, a supercomputer likely has hundreds of computational tasks running on it. So there are never enough teraflops to go around. A teraflop is a trillion operations per second. As of last November, Blue Gene/L topped out at 600 teraflops and ran at a sustained rate of 478 teraflops. By contrast, a Core 2 Duo E6700 processor performs around 12-13 gigaflops, or billions of operations per second. See the whole story at http://www.internetnews.com/hardware/article.php/3745856.
Share on TwitterSubmit to StumbleUponDigg This

Backup your Linux Server Apps

Share on TwitterSubmit to StumbleUponDigg This
So you have your linux server up and running. A lot of time and effort went into this so lets get it backed up. You don't need to invest in any fancy backup system. A bit of shell script and some use of crontab will do the trick. Here are the two scripts I use...
    Email backup
Create an executable file e.g. mailserver_backup.sh containing the following
cd /
dt=`date +%Y%m%d_%s`
/bin/tar -czf mailserver_$dt.tar.gz etc/postfix etc/dovecot.conf usr/bin/null.sh usr/local/bin/safilter.sh usr/local/bin/backup_mailprogs.sh etc/mail/spamassassin home/mailfilt/.spamassassin var/spool/mail
    Web backup
Create an executable file e.g. web_sql_backup.sh containing the following
cd /
dt=`date +%Y%m%d_%s`
rm -f mysqlall.sql
mysqldump -uroot -ppassword --all-databases > /mysqlall.sql
/bin/tar -czf mailserver_web_sql_$dt.tar.gz etc/httpd var/www/html mysqlall.sql usr/local/bin/backup_web_sql.sh
Now use crontab to schedule the running of the scripts... crontab -e and enter the following See below Sponsored Links

15	3	*	*	*	/usr/local/bin/mailserver_backup.sh
45	3	*	*	*	/usr/local/bin/web_sql_backup.sh
This will backup mail server apps at 3:15am and web backup at 3:45am. I would also suggest you copy the backed up files to other media in case your server completely crumbles.
Share on TwitterSubmit to StumbleUponDigg This

Email server software

Share on TwitterSubmit to StumbleUponDigg This
Zimbra Collaboration Suite (ZCS) Open Source Edition. When I first attempted to install it, things got sticky. The main issue for me was that it needs a DNS server present which needs to point to itself (internal IP address) for all domains you add to your Zimbra system. When I eventually figured out how to install and configure BIND on my email server, everything started to flow. Zimbra does complain here and there but, after your third or fourth install attempt you will find it works with very little extra effort. Go ahead and try it. Once you figure out the requirements, I promise you'll be impressed.
Share on TwitterSubmit to StumbleUponDigg This