quikone8 said: How do I determine if I do have the linux headers?
Also, do I type the command exactly as you did or do I replace 'uname -r' with something else?
To see if you have installed it you do:
dpkg -l linux-headers-`uname -r`
And it should return something like:
ii linux-headers- 2.6.27-9.19 Linux kernel headers for version 2.6.27 on x
Where the ii stands for installed. If it doesn't return anything, you don't have the headers installed.
Another way to find out if you have installed it, is just running the apt-get install, since running it while you have installed the headers already won't cause any problems.
And you don't have to replace the uname -r with anything, the idea behind that is that it finds out what version of the linux kernel you are using, so you don't have to look that up first and add it in the command. Please note that it's not a single quote but a backtick.