GoDaddy Uses Standard Tactics To Warehouse Domains

News, Oddly Enough, Thoughts
I found this really great article that I am about to share here. Robin Wauters TechCrunch.com Wednesday, December 3, 2008; 8:52 PM Having working in the domain name industry myself for a couple of years, I've always been intrigued by the fact that there's such a big business formed around something as trivial as a bunch of letters and numbers used to 'translate' IP addresses. And when there's a big business in something, you just know there will be a grey area as well where ethics are left at the door sometimes. Andrew Allemann over at Domain Name Wire has been doing an excellent job researching the hoops The Go Daddy Group jumps through to keep its shady tactics outside of the public view, resulting in this great blog post.…
Read More

How to create a tar file using SSH on Linux

Linux, Tips and Tricks, Tutorials
To create a tar from a directory using SSH on Linux punch in the following command [code lang="plain"]tar -vcf backup.tar mystuff/[/code] Where "mystuff" is a directory and backup.tar is the target compressed file. You can also create a file called archive.tar of all the files and subdirectories in the current directory with the following command [code lang="plain"]tar -vcf backup.tar *[/code] Note: "v" flag is for verbose mode.
Read More