Well, I just downloaded and ran "make", and it ran without errors. I am using Fedora 8 with a 2.6.26 kernel that I compiled from source.
The first thing that I notice is that you are logged in as root. This is considered a no-no, and is not required. It may even be the problem, as you shouldn't be root when running make, only for "make install".
The other thing, you ran two scripts before running make. I don't see them anywhere in the instructions, so where did they come from?
Since I compiled my own kernel. I have the kernel source installed. Do you have the source, or only the headers? If you have kernel-devel-`uname -r`, then I guess you do.
If you look at where the error first occurred, that should be the clue. It happened when compiling the uudecode file. the first error was this: Code: stdio.h: No such file or directory
So, you need to find out where that file should be. I have it in several locations:
/usr/include/stdio.h
/usr/include/bits/stdio.h
There is also a man page for it If you don't have it, I'm not sure how to install it. More research is needed on that. I would first start over with a fresh source file, and run make as a regular user. Then gain root privileges with the su command, and run make install.
__________________
Paul
Please do not PM me with requests for help. I will not reply.
Last edited by waterhead; 10-16-2008 at 02:02 AM..
|