package updates – ktorrent and libktorrent

Ktorrent updated to 4.1.3 and libktorrent updated to 1.1.3

ktorrent-4.1.3-x86_64-1rp.txz

libktorrent-1.1.3-x86_64-1rp.txz

Speeding up an old pc

I found a neat trick to speed up old machines. Don’t dump them! At least anything above an athlon xp 2400+ (i have done this experiment on this one). For long I have been using this desktop of mine which has the following configuration – proc as mentioned above, a7n8xvm/400 ram, onboard gforce4m, 512+256 ddr1 ram 333mhz, ide hdd pata 120gigs. And then suddenly one fine day after taking lots of virtual abuse my hard disk died. It had served me well, though, taking the beating of torrent writes and simultaneous songs / movie playbacks. And not to mention the unholy windows fragmentation curse.

It was time now I decided to run to the market and buy another hdd. So my quest began and after many phone calls and searching online on estores I realised that the dear old PATA hdds were really a rare entity. The stores which had them priced them above the bigger brother – SATA I and II.

And then lightning struck my ear and few of my brain cells got electrified -  why not put the sata drive in my pc. How?? So after searching I found two solutions – put in a pata to sata adapter, and the other a sata/pci card. The latter was interesting since the former would give me no advantage of speed. And we went on and added the card and the sata hdd, did a win7 installation and the speed was amazing.

Why should it not be? Cause imho, the ide bus is the biggest bottleneck in a pc. And with SATA this was removed. So even with an not-so-old configuration, things can run smoothly. Just make sure you have the pci-sata dos drivers at hand when installing win7.

Knights 2.4.0 – Slackware package added

Slackware64 package knights updated to version 2.4.0. Package can be downloaded here.

Kdroid – kde android sync manager package for slackware

Package created for slackware-current-x64. Download here

Package update – wicd-client

Package updated to 0.2.3, download here.

Package update – lmsensors

LM Sensors upgraded to 3.3.1. Slackware64 package can be found here.

Multiple source downloading of single file in linux

I wanted to download the linux kernel from the so many mirrors available and was searching for a good downloader which would do this. Firstly I know axel can do it, but for some  reason, it would not work this time. So I downloaded aria2 and this thing worked nicely. By downloading same file from multiple sources, we are reducing the load on each server as well. :)

Below is the script I created for doing this

#!/bin/bash                                                                                                                                                    
#                                                                                                                                                              
aria2c -j 20 -s 10 -k 2M http://mirror.anl.gov/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.hoobly.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.mit-lcs.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.netnitco.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.nexcess-net.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.soc.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.tds-net.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://kernelorg.mirrors.tds.net/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.artfiles-org.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.fht.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.ftp-halifax-rwth-aachen-de.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.ftp-rfc822-org.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.hosteurope.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.iphh.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.onext.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.linux-australia.lkams.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.in.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.il.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://mirror.averse.net/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2 http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.0.4.tar.bz2

The script can be found here and the aria2 package for slackware64-current can be found here. To use the script to download some other version of the kernel, replace the vX.Y/linux-x.x.tar.bz2 with version of your choice. And replace the hyperlinks with something else so you can download some other file.