Should I use http
or ftp
links in /etc/apt/sources.list
? What I mean is is using something like,
deb ftp://ftp.debian.org/debian/ squeeze main contrib non-free
deb-src ftp://ftp.debian.org/debian/ squeeze main contrib non-free
better or worser than using,
deb http://ftp.debian.org/debian/ squeeze main contrib non-free
deb-src http://ftp.debian.org/debian/ squeeze main contrib non-free
I guess as apt
uses wget
to fetch things, this is same as asking if wget
is faster on ftp
. Thanks!
wget
. It uses its own internal method. – Faheem Mitha Jan 31 '12 at 5:17