March 9, 2010 - 2:06 pm
Tags: 2 ways, backup log, default mail, file, log, mail, mail log, output, stdout, tail
Posted in log, mail, pipe, stdout, tee | No comments
If you have a binary that is outputting information to standard output, you can save the information 2 ways. You can direct the output to a file using >> or you can use a pipe with a tee. When you use >> you will not see the output, it will directly get dumped into the [...]
February 21, 2010 - 12:46 pm
Tags: attempts, domain, domain owners, email, harvesters, Honey, honey pot, implementation, Pot, website
Posted in Honey, Pot, Project, spam, trap | No comments
Project Honey Pot is a bridge that provides domain owners the ability to share email harvesting attempts with the community. On the website you can download a pre-made and customized script for implementation on your website. Go to:
http://www.projecthoneypot.org
Register yourself. Then click “install new honey pot”. Place it in a directory on your domain. Traverse to [...]
February 17, 2010 - 9:40 am
Tags: cable, cable company, cable modem, caption, email services, external ip address, house, line, months service, problem, Wikipedia
Posted in Server, Uncategorized, cable, internet, mail, main, website | No comments
After rewiring my entire house the ultimate way to isolate the problem is to put the cable modem directly on the main line. Replace all splitters, and ask the cable company to drop a new main line, and you can feel confident that the problem is no longer in your house. I rewired my entire [...]
February 10, 2010 - 9:02 am
Tags: default sendmail, email, external mail server, forward works, local ip, mail, relay mail, Sendmail, System, user
Posted in .forward, Sendmail, access, alert, aliases, home, user | No comments
Image via Wikipedia
The core of Linux is designed to mail, at minimum, the root user of various system alerts. With sendmail installed these alerts are mailed to the respective user directory. If you have an external mail server you can configure your local user mail to be forwarded to any email address. The easiest method [...]
January 31, 2010 - 9:33 am
Tags: cable, cable modems, external ip address, maximum signal strength, modem, network switch, sending signals, signal, splitter, strength
Posted in Cablevision, Optimum, external, ip, network | No comments
Image via Wikipedia
Cable modems need a strong signal in order to operate properly. The more splitters you pass through successively degrades the signal strength (-3.5dB/splitter). For a while internet service was working fine, but then I would loose the external ip address every no and then. I then investigated the wiring in the house, and [...]
January 30, 2010 - 9:56 am
Tags: caption, ClamAV, command, cron job, cronjob, level directories, linux, linux machine, malware, root crontab
Posted in ClamAV, anti, linux, malware, virus | 3 comments
Just because you run linux does not mean you completely forgo anti virus. Your website can be broadcasting Windows viruses or malware. Clamav, run from the command line, will scan your web directories recursively to identify various concerns. Install Clamav:
sudo apt-get install clamav
Then you can run Clam manually or you can install a cron job [...]
January 27, 2010 - 1:25 pm
Tags: backup, backup drive, caption, cronjob, desktop machine, directory, hardware failure, media directory, rsync, user
Posted in backup, crontab, network, rsync | No comments
You should have backups of all your files all the time. For a desktop machine always have a backup of your entire /home partition. Use a cronjob and rsync. Mount a usb drive to the /media directory. Use a cronjob as follows:
1 1 0 0 0 rsync -r /home/user /media/backup/user
The above rsync will recursively transfer [...]
December 26, 2009 - 9:06 am
Tags: cronjob, folder, free space, gigs, global path, home folder, scrub, shred, space, sudo
Posted in free, linux, scrub, shred, space | No comments
With this handy little app you can shred files and folders, but more conveniently you can shred your entire free space. Just make sure you’ve erased all the files you want to shred. Empty the trans, issue:
sudo apt-get autoclean && localepurge
Download scrub from Sourceforge:
http://sourceforge.net/projects/diskscrub
Its a simply source so configure, make and install. It will install [...]
December 10, 2009 - 5:57 pm
Tags: comparable features, default, default mail client, gnome, kde, kmail, mail, mail clients, Thunderbird
Posted in Thunderbird, gnome, kde, kmail | 1 comment
I like kmail. It is the default mail client for KDE desktops. I have used Thunderbird for a long time now, but kmail is equivalent. So is evolution, which I use as well. Ultimately they all do the same thing; they are mail clients. Each one has comparable features, although they all look slightly different. [...]
December 6, 2009 - 11:43 pm
Tags: file, gnu nano, graphical application, home mail, mail, mail directory, mailer, procmail, random system, Sendmail, swap
Posted in Server, filter, procmail, spam | No comments
I tried for a long time to get sieve to work with sendmail. I could not get it to work. I would try and create a custom .m4 mailer, as per the sieve pages on the dovecot website, but nothing would work. Ultimately I gave up and used client side mail filtering built into Thunderbird. [...]