Advertisement

Boot to console and in-GUI write permissions

Started by March 04, 2005 05:41 PM
10 comments, last by CyberSlag5k 19 years, 10 months ago
Quote:
Original post by CyberSlag5k
Sarge is what I installed. Is that an unstable version?


It's a testing version. You will have the option for kernel 2.6.x in sarge.

Quote:

1. It appears all of the commands entered in the terminal are stored. Is there a way to purge those?

history -c

history is a bash builtin, so do a 'help history' to see some info about it.
'info bash' will give general info about... bash.

Sometimes docs can be found by 'man', sometimes by 'info'. Only bash builtins can be found by 'help', but if they're builtin you can probably find something about them in the bash info pages.
Quote:
2. I think I need to refine my apt-cache search techniques. I can't ever seem to find what I want. I'm looking to install the SDL and OpenGL libraries, but when I apt-cache search SDL/OpenGL (headers, .h, libraries, etc) I get a ton of results and really none of them look like what i need (except something called libsage, but that didn't work). Can someone suggest a better way to find stuff like that?


Search by package names and/or descriptions. You do want the '-dev' packages. libsdl1.2-dev should be what you want for SDL.

As for OpenGL, that's slightly more tricky. If you have installed the binary NVidia drivers (if you're not sure, you probably haven't), then 'apt-get install nvidia-glx-dev', otherwise try 'apt-get install xlibmesa-gl-dev' (I think). The software OpenGL implementation in Linux is called Mesa.

Oh, and aptitude [inlove]
My stuff.Shameless promotion: FreePop: The GPL god-sim.
Thanks for everyone's help. I'm still chugging through this, but I'm closer now.

I got the system to boot to a console by remove gdm. I found out that I was installing the right packages for SDL and OpenGL, I just wasn't including them right in the source file. I was using #include<gl.h> instead of #include<GL.h> (which is where they were actually installed). Silly me.

I've since broken X, but I'm working on that, and I think I have the permissions all but worked out.

Thanks everyone!
Without order nothing can exist - without chaos nothing can evolve.

This topic is closed to new replies.

Advertisement