6

I´m going to install Ubuntu 12.04 on my laptop, and I don’t have internet at home.

I know that I can install it without internet, but , does it work?

Braiam
  • 67,791
  • 32
  • 179
  • 269
Alfredo
  • 453
  • 1
    Definitely. When you get Internet connection, just type sudo apt-get update && sudo apt-get upgrade on the terminal. – Peachy Jul 07 '12 at 06:27

6 Answers6

8

Yes it will work, however with some restrictions. For example there are "Must do" updates if you want to play MP3s or movie files etc. (Ubuntu Restricted Extras).

Also you need to install medabuntu libraries if you need to play DVDs. There are others but apart from these restrictions Ubuntu will work.

I had to to this once and was able to update everything at a later date

stephenmyall
  • 9,855
5

As everybody say, you can install Ubuntu 12.04 offline but there will be a lots of packages, updates and softwares that you may need.

To solve this problem, you have different ways to install software and package in a computer without a Internet connection.

One option is Keryx, a portable package manager. Keryx offers to you a nice GUI making easy to use it. And, as if it were not possible to be better, it's open source!

How it works?
You download the package that you need in another computer with Internet connection and then install it in your computer offline.

You can download Keryx from their official website. This software support 32 & 64 bits architectures.

A screenshot:

enter image description here

Lucio
  • 18,843
4

Absolutely, you just wont get the updates at the time of installation.

David A
  • 116
  • 2
  • 9
  • and when I get connected it will update? – Alfredo Jul 06 '12 at 21:18
  • yes you will be able to update after installation just check for updates and install. I it this way so the installation goes faster, then after install I can update and install the Restricted extras and ect. That way I can use the computer and let the updates install – TrailRider Jul 06 '12 at 21:37
3

You can install Ubuntu without an Internet connection.

From my experience it is not good idea to install Ubuntu offline, some third-party software needed to install from source or script which will cost you extra trips to get the missing packages.

Seth
  • 58,122
1

As an alternative to Keryx, you can use apt-offline or apt-offline-gui.
Pre-requistes: A friend's system with Internet connection. apt-offline installed in both your systems.

The Offline installation is achieved in 3 simple steps.

Step 1:
Generate a signature file on the Disconnected Debian box at home
apt-offline set /tmp/apt-offline.sig
The above command will generate all information required from apt about updating its database.

Step 2:
Download data based on the signature file generated earlier
apt-offline get C:\apt-offline.sig --threads 5
The above command will download data as mentioned in the signature file. To speed up downloads (that can be from multiple apt repositories), in this example we spawn 5 download threads.
Once completed, you could just copy the data (an archive file, if you used the --bundle option) back to the removable medium and copy it back onto your offline host.

Step 3:
Once you're back upon the home Debian machine, you feed the data from the removable medium to apt-offline:
apt-offline install /media/USB/apt-offline.zip
This will update the APT database on your disconnected machine seamlessly.

Apt-offline can be even used in Windows systems. In my opinion, apt-offline is the best option for Offline installation.

Source

Hashken
  • 6,282
1

In a single word: Yes.

If you have already burned your ubuntu release at a USB or a CD common sense states that all the files and components of your operating system are included. That happens to any operating system.

Take for instance Windows:

-Are you in need of an internet connection when you install it at a computer through a CD?

-No.

On the other hand if you are going to install using the windows installer (Wubi) which installs ubuntu at your existing Windows partition, you must have an internet connection in order to download the .iso and proceed to the installation.

However you should notice that if you do not have a working connection you will not be able to download any updates(except if you have an old release which is no longer supported by Canonical) from the update manager. You can always type sudo apt-get update in order to install any updates and fixes to your system.

dlin
  • 3,830