How to download all dependencies and packages to directory

apt-get

Solution

# aptitude clean
# aptitude --download-only install <your_package_here>
# cp /var/cache/apt/archives/*.deb <your_directory_here>

Problem

I'm trying to install a package on a machine with no Internet connection. What I want to do is download all the packages and dependences on a machine WITH an Internet connection and then sneaker-net everything to the offline computer. I've been playing with the `apt-get` and `apt-cache` but I haven't figured out a quick and easy way to download the package and dependencies in one swoop to a directory of my choosing. How would I do this? Am I going about this problem correctly? How would you install offline packages that have a lot of dependencies?

Original source

Related problems