I currently installed ubuntu 11.10 on my acer netbook. I have problem getting some packages I need. I am using the most updated version and have a wifi connection on my campus. This is what my instructor wishes for us to do:
- select Applications/Accessories/Terminal on the Ubuntu desktop
- type
ls /usr/include/GL
ifglut.h gl.h
etc are there, great
if not, install itsudo apt-get install libglut3-dev
- I then copied
program1.c
to the desktop cd desktop
gcc -lglut -lGLU program1.c
note l is a lower-case L, which means library in UNIX./a.out
to execute
I complete step 2, in which returns:
sudo: ls/brandon/include/GL: command not found
so from here I do the apt-get and try to install it but returns me with this:
E: Unable to locate package libglut3-dev
Does this have to do with my connection or is there something I need to be doing on my system for it to find the package and install it. I'm really new to ubuntu and could use some help just getting started.