Forgot your password?
typodupeerror

Comment Recover deleted data (Score 1) 208

After about 4 weeks into my first programming job (~15 years ago), I lost all the source files in my cwd by mistakingly typing "rm *>o" instead of "rm *.o".
Of course at that time there were no tape no backups and my last commit was about a week or two earlier. I went to see the sysadmin and explained my situation.

In about 2 minutes he wrote a C program that opened and read from /dev/hda in blocks, looking for some variable/function names that I had provided him. This
yielded a big text file, and it took me about a day to untangle and reconstruct the various source files. I remember that had impressed the hell out of me.

Security

OpenSSL 1.0.0 Released 105

hardaker writes "After over 11 years of development since the start of the OpenSSL Project (1998-12-23), OpenSSL version 1.0.0 has finally hit the shelves of the free-for-all store."

Comment Linux Vserver (Score 2, Informative) 264

Here's how we do it:

- Run your services in a few vservers on the same physical server:
    * DNS + DHCP
    * mail
    * ftp
    * www
- Have a backup server where your stuff is rsynced daily. This allows for quick restores in case of disaster.

Vservers are great because they isolate you from the hardware. Server becomes too small? Buy another one, move your vservers to it and you're done. Need to upgrade a service? Copy the vserver, upgrade, test, swap it with the old one when you are set. It's a great advantage to be able to move stuff easily from one box to another.

Security

First Pwn2Own 2009 Contest Winners Emerge 98

mellowdonkey writes "Last year's CanSecWest hacking contest winner, Charlie Miller, does it again this year in the 2009 Pwn2Own contest. Charlie was the first to compromise Safari this year to win a brand spankin new Macbook. Nils, the other winner, was able to use three separate zero day exploits to whack IE8, Firefox, and Safari as well. Full detail and pictures are available from the sponsor, TippingPoint, who acquired all of the exploits through their Zero Day Initiative program."
Programming

Journal Journal: Quicky: Seven Step Svn (subversion) Setup 6

HOWTO: Getting subversion (svn) to run under SUSE linux in 5 minutes (3 minutes or less with practice and a fast machine :-)

You can apply these instructions to redhat/slackware distros by substituting /var/svn in place of /srv/svn. You can even set it up in your home directory: /home/username/whatever/svn

Slashdot Top Deals

Happiness is twin floppies.

Working...