Results 1 to 5 of 5
1. Am I able to connect to the internet as soon as I've downloaded and burnt the iso?
2. How do I install gcc, gdb and Firefox onto the distro, ...
- 07-08-2009 #1Just Joined!
- Join Date
- Dec 2008
- Posts
- 16
Using Ubuntu MinimalCD
1. Am I able to connect to the internet as soon as I've downloaded and burnt the iso?
2. How do I install gcc, gdb and Firefox onto the distro, ready to burn the operating system onto another CD?
- 07-08-2009 #2
If you have a wired connection, you should be connected automatically. If not, try
I'm assuming your wired interface is named eth0.Code:sudo ifconfig eth0 up sudo dhclient eth0
If you have a wireless connection, it can be more complicated, depending on your network, and whether it's using WPA or WEP encryption.
For WEP
Again, I'm assuming your wireless interfact is name wlan0.Code:sudo ifconfig wlan0 up sudo iwconfig wlan0 essid <your network name> key <WEP key> sudo dhclient wlan0
Look at the iwconfig man page for more options.
Installing sotfware from the command line, use apt-get.
To search for a package, do
For gcc and development tools, install the meta-package build-essentialCode:apt-cache search <search term>
- 07-09-2009 #3Just Joined!
- Join Date
- Dec 2008
- Posts
- 16
[QUOTE=reed9;710928]To search for a package, do
What is the package name for the latest Firefox?Code:apt-cache search <search term>
- 07-09-2009 #4Just Joined!
- Join Date
- Dec 2008
- Posts
- 16
Currently, I've only the console. Please show me how to install a desktop environment.
- 07-09-2009 #5
The latest Firefox 3.5 is available to for Ubuntu 9.04 in the Universe section of the repository. The package is called firefox-3.5.
For a DE, there are a few options depending on what you want. The main three are the packages [b]ubuntu-desktop[b], xubuntu-desktop, or kubuntu-desktop.
Or you can pick and choose what you want rather than install everything. Here is an example from Distrowatch on doing a minimal XFCE desktop environment.
If you want to search for packages online, rather than via apt.
Ubuntu -- Ubuntu Packages Search
EDIT: If you can't find firefox 3.5, you may not have universe enabled. Here's a link on how to enable it from the command line.
https://help.ubuntu.com/community/Re...20Repositories


Reply With Quote