-1

I would like to download both Ubuntu and GIMP to install on a computer with no internet connectivity. I presume simply downloading Ubuntu and burning an ISO disk will take care of the former.

However, GIMP directs me to https://apps.ubuntu.com/cat/applications/saucy/gimp/, and the emailed download link from there takes me back to https://apps.ubuntu.com/cat/applications/saucy/gimp/: I cannot find anything on that page that would permit me to download GIMP for Ubuntu.

Walton

2 Answers2

0

In a terminal, enter

apt-get download gimp

This will download the gimp package in your current directory

It may be difficult since you are limiting yourself to Windows 7 as a download media for your Ubuntu machine. You could explore gimp.org, but I suspect that you will have problems which exceed the ability to easily allow you to run Ubuntu - during the install process Ubuntu would like to be able to connect to the internet to download updates to the core of the operating system, and to all of the peripheral programs.

One way to do this would be to create a virtual machine in your windows 7 computer, load and install the required elements, and then create an installation USB based upon your virtual machine. I have not run through the process of creating a boot image myself, but it is documented on Ubuntu.com

Charles Green
  • 21,859
0

What I generally do for such situations is maintain an offline repository. If you have an existing ubuntu installation, install aptoncd first:

sudo apt-get install aptoncd

Run this app to create a compressed ISO image from your apt cache. Thus you now have an offline "backup" repo from which you can install any software that you want, not just repo. To use this backup repo, just extract this ISO to any folder you like and add this line in your /etc/apt/sources.list:

deb file:///path/to/iso/extract ./

This will create a working repo from which you may do any offline install.

But do remember that with this method, you are tied to a particular version of the distro. If you created the backup from precise, the backup repo will only work from precise.

Prahlad Yeri
  • 1,657