PDA

View Full Version : [ubuntu] [SOLVED] Package installation problems in a low memory system



Terraman
December 7th, 2008, 06:36 PM
Dear Ubuntu friends,

I've successfully installed Ubuntu 8.10 command line system in a Compaq Armada 1571 DM, MMX, 200 MHZ, and 64 MB memory.

Now, I'm trying to install a lightweight system.

I can't install packages with "apt-get" or "aptitude", because this computer doesn't have an Internet connection. In addition, the offline installation using the package APTonCD fails too.

So, I downloaded the xorg package, copied it to the laptop, untar it, and when I run ./configure in order to install x.org, I've got this message: "configure:3753: error: no acceptable C compiler found in $PATH".

Can someone help me? What shall I do?

Thanks in advance!

taurus
December 7th, 2008, 06:43 PM
You need gcc compiler before you can compile anything from source. The build-essential package is on the installer CD. Insert it and run (from a terminal)


sudo apt-cdrom add
sudo apt-get update
sudo apt-get install build-essential
gcc -v

p.s. Good luck trying to run Gnome with that little RAM.

Terraman
December 7th, 2008, 10:02 PM
Thank Taurus,

Yes, you'll right, let's see what happens.