Apt-get :: Why don't this command works ?



apt-get install g++
apt-get install perl
apt-get install libreadline5-dev


why do i get only brokage

I got only this working
apt-get install make

and is it possible to run perl program in this live cd ? (I require the above pacakages to run it i tested it in ubuntu not sure with this Distro)

altainta, did you run apt-get update first?  Were you running these commands as root?  Try this

Code Sample
sudo su
apt-get update
apt-get install g++ perl make libreadline5-dev
exit


original here.