1

I do not have internet at home but I can go to an internet cafe to download things.

The thing is I have Ubuntu and I don't no how to download Ubuntu-compatible software from another PC and then get it installed on my PC at home.

What do I need to do?

Oli
  • 299,380
Jasser
  • 206
  • 2
  • 14

3 Answers3

0

You just need to download the .deb packages from the providers of the software and place it on a thumb drive. Most (if not all) providers of Ubuntu software will provide the .deb packages somewhere on their site, it's just not always easy to find.

Be sure to download the right .deb for your system, x86 for 32 bit and x64 for 64 bit.

lbaile200
  • 586
0

It depends on the software you want to install, can you give an example?
For a lot of software there are .deb packages avalible.
Download them and install them at home with: sudo dpkg --install *.deb

Pabi
  • 7,429
0

Downloading and installing offline packages is a tedious task on ubuntu. But if you have no other options here is what you do.

  1. Go to http://packages.ubuntu.com/
  2. Go to "Search Package Directories" -> Type the name of your package(software) -> Select you Ubuntu version -> click search.
    If your package matches in multiple search results you will be redirected to a page to select from a list of search results. For example if you search "git" for trusty you will get this -> http://packages.ubuntu.com/search?keywords=git&searchon=names&suite=trusty&section=all.
  3. Now select the link by the name of your package. Download the package by clicking on the architecture of your Ubuntu version( 32bit ie i386 else 64bit ie amd64).
  4. Now install by double-clicking the .deb file.
  5. If you are lucky enough(very rarely) you will get your software installed. Otherwise the installation will fail by saying "dependencies are not satisfiable". This means your package depends on some other package and you need to install that dependency package first.
  6. Thankfully you get all the links to the dependency packages on the download page of you package with red bullets (mentioned in step.3.)

OR

If you can somehow get another PC with Ubuntu connected to Internet, your life is a bit easy. If you install a software from Software Center they are downloaded to /var/cache/apt/archives. You can just copy them to your Ubuntu PC say on your Desktop -> Open Terminal -> Do the following ->

$ cd ~/Desktop/
$ sudo dpkg -i *.deb