Tuesday, August 21st, 2007
If you are running a dedicated server or vps without control panel or a control panel which doesnt provide an interface to change time zones (like HSPComplete VPS), you can easily change your timezone from ssh command prompt.
First browse to /usr/share/zoneinfo to find your city.
You can use SFTP to easily browse your server files.
Here we find time zone for Dhaka to be located at /usr/share/zoneinfo/Asia/Dhaka
Now you need to SSH into your server and link /etc/localtime to your desired time zone file.
To set the server timezone to Dhaka we use the command:
ln -sf /usr/share/zoneinfo/Asia/Dhaka /etc/localtime
We can check if it got properly ...
(read more)
Tuesday, August 21st, 2007
Mostly big files are shared by splitting them into multiple parts. This usually makes things easier to both upload and download them. And allows the uploader to earn more premium points too ;)
But sometimes a single file of the archive might get deleted from the system. Imagine a case when you are downloading 20 100mb splitted files and after downloading 18 files, you find the 19th file is no longer available. Now your 18x100mb downlod is of no use!
To save users from this problem RapidShare.com provides a great tool called "Link Checker". With RapidShare Link Checker you can check the ...
(read more)