On Friday 08 December 2006 05:07, [EMAIL PROTECTED] wrote: > I downloaded the source for fuse-2.6.0 in order to compile it on SuSE9.2. > So I installed the kernel source, all via YaST, no sweat. > > >From /usr/src/linux, as root, I then did: > > ? ? # make mrproper > ? ? # make cloneconfig > ? ? # make modules_prepare > > - this yields no errors. > > I then switch to the directory containing the source files of fuse, and I > do: > > ./configure > > I get: > > checking kernel build directory... /usr/src/linux-2.6.8-24.19-obj/i386/smp > checking kernel source version... Not found > configure: error: > ? ? ? ? *** Cannot determine the version of the linux kernel source. Please > ? ? ? ? *** prepare the kernel before running this script > configure: error: ./configure failed for kernel > > ??? > > Well I thought I had done and prepared things the right way. Obviously not > so. #uname -r gives: 2.6.8-24.19-smp > > I have a mismatch between....eh, between what? > As always, I do appreciate all answers. Thank You!
Verner SuSE are FOS (yes! that is rude) What I've done is remove all trace of linux-obj (links and files in /usr/src) Then either: # make modules_install install the kernel you've just made (don't bother to do initrd) and boot OR edit Makefile and fix EXTRAVERSION and do the whole build # make cloneconfig DOES NOT CLONE THE RUNNING KERNEL (nearly, but uname is not the same, and all kernel modules are not the same) ie: # make cloneconfig # make # make modules_install (the above is exactly correct) since I've blown away all traces of what they did, from memory: [tigger] /home/jam [58]% uname -a Linux tigger 2.6.16.21-0.25-smp #1 SMP Tue Sep 19 07:26:15 UTC 2006 x86_64 x86_64 x86_64 GNU/Linux but the clone config is (added -custom) [tigger] /home/jam [58]% uname -a Linux tigger 2.6.16.21-0.25-smp-custom #1 SMP Tue Sep 19 07:26:15 UTC 2006 x86_64 x86_64 x86_64 GNU/Linux James ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _____________________________________________________________________ Ltsp-discuss mailing list. To un-subscribe, or change prefs, goto: https://lists.sourceforge.net/lists/listinfo/ltsp-discuss For additional LTSP help, try #ltsp channel on irc.freenode.net
