Thursday, July 16, 2009

To limit APT download

If you need to limit the apt-get / auto update, you can create /etc/apt/apt.conf.d/76download.
Put script bellow into it. Dl-Limit "25" means max download speed will be 25Kbps.


Acquire
{
Queue-mode "access";
http
{
Dl-Limit "25";
};
};