2

How can I copy all apt-get update cache to another computer, so that it doesn't need be updated again and again after new installation?

Alaa Ali
  • 31,535

1 Answers1

2

Simply put, you could copy the content of /var/cache/apt/archives/*.deb into the other /var/cache/apt/archives/ as root...

But if this is anything but a one-off, I would definitely suggest one of the various caching server options that are out there so you only ever have to download these updates once:

Oli
  • 293,335