Is there a proper way to set up a flash drive with a stripped down version of Ubuntu (any version) leaving the user with an OS and a browser only?
-
1Please read How to customize live Ubuntu CD?, in particular notice the use of Ubuntu Builder. – edwin Jul 17 '13 at 03:26
1 Answers
How to setup Ubuntu with a web browser, and no pre-installs:
- Download Ubuntu 13.04 - Server X86-64 http://releases.ubuntu.com/raring/ubuntu-13.04-server-amd64.iso (or you can download the 32-bit version if you prefer)
- Burn the ISO to a DVD
- Boot the DVD and begin the installation process
- When you get to a list of software to install, choose "manual package selection"
- After installing Ubuntu Server, boot it up
- In the terminal type:
sudo apt-get install xfce4
, this will install xfce desktop environment. If you prefer you can install unity, gnome, kde, mate, or something else. - In the terminal type:
sudo apt-get install gdm
, this will install gnome display manager (aka your login screen), if you prefer you can install something else, like kdm, or lightdm. - In the terminal type:
sudo halt -p
, this will shut down the computer - Turn the computer on, and login, now install the web browser you want.
The size will vary depending on which desktop environment and desktop manager you install, but you will be looking around the 2400-2600 MB mark excluding temporary files.
PLEASE NOTE: There will be a few things preinstalled, like a terminal emulator so you can install other programs, and a file manager, but nothing major. You will see a menu entry called web browser, but there is no web browser installed until you install one.
PLEASE NOTE: If you decide to install a desktop environment other than XFCE, make sure the command you use is going to install just the desktop environment and not the full package that includes other recommended software.
PLEASE NOTE: If you prefer to not use the terminal to install software you can install the Ubuntu Software Center by typing: sudo apt-get install software-center
.
Source: http://candlelight.any.djun.net/x/1/index.php?topic=586.0

- 114,770