LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 04-10-2007, 10:57 PM   #16
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269

Is there a current config or .config in /usr/src/linux? Check /boot as well for a config for your current kernel.
 
Old 04-10-2007, 11:01 PM   #17
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Original Poster
Rep: Reputation: 15
"/usr/src/linux" takes me to "/lib/modules/2.6.13-7/build" and there is no .config or config file there...probally deleted by the make mrproper.
/boot/ doesn't contain any config file either.
 
Old 04-10-2007, 11:04 PM   #18
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally Posted by Cyber Maid
"/usr/src/linux" takes me to "/lib/modules/2.6.13-7/build" and there is no .config or config file there...probally deleted by the make mrproper.
/boot/ doesn't contain any config file either.
That might be the problem with the error you're getting. I'd say either reinstall the kernel packages you already have, possibly upgrade or build a new config, then repeat the steps in order to build the proper header files so VMware stops acting goofy and is satisfied.
 
Old 04-11-2007, 06:21 AM   #19
terryxela
Member
 
Registered: Dec 2006
Location: Denver, Colorado, USA
Distribution: SuSE 11.3
Posts: 127

Rep: Reputation: 17
Cyber Maid,

Why don't you get the new versrion I believe is 5.5.3 (tarball) and try to install it and describe step by step what you are doing. Hope with this info we can help you a little more.

-=terry(Denver)=-
 
Old 04-11-2007, 08:42 AM   #20
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Original Poster
Rep: Reputation: 15
ok, i have done a as clean possible install.

Here are the steps that i have taken:

make mrproper
/usr/bin/vmware-uninstall.pl
rpm -e kernel-source-2.6.13-7
rpm -e kernel-headers-2.6.13-7 --nodeps
rpm -ivh rpm -e kernel-headers-2.6.13-7
rpm -ivh kernel-source-2.6.13-7
~/vmware-distrib/vmware-install.pl
Entered trough the install.
Reached the vmware-config.pl
Got the same error again:

Code:
What is the location of the directory of C header files that match your running
kernel? [/usr/src/linux/include]

The path "/usr/src/linux/include" is a kernel header file directory, but it is
not configured yet.
That wasn't going to work so i CTRL+C.
Applied the vmware-any-any-update109.

Code:
[root@maidsmansion vmware-any-any-update109]# ./runme.pl
Updating /usr/bin/vmware-config.pl ... now patched
Updating /usr/bin/vmware ... No patch needed/available
Updating /usr/bin/vmnet-bridge ... No patch needed/available
Updating /usr/lib/vmware/bin/vmware-vmx ... No patch needed/available
Updating /usr/lib/vmware/bin-debug/vmware-vmx ... No patch needed/available
VMware modules in "/usr/lib/vmware/modules/source" has been updated.
Entered till i got to the C header file question.
And still i get the same error:

Code:
Trying to find a suitable vmmon module for your running kernel.

None of the pre-built vmmon modules for VMware Workstation is suitable for your
running kernel.  Do you want this program to try to build the vmmon module for
your system (you need to have a C compiler installed on your system)? [yes]

Using compiler "/usr/bin/gcc". Use environment variable CC to override.

What is the location of the directory of C header files that match your running
kernel? [/usr/src/linux/include]

The path "/usr/src/linux/include" is a kernel header file directory, but it is
not configured yet.
This is so frustrating...i have no idea what to do or what i'm doing wrong...
I used to run on Fedora and all that took to run VMware was the any any update.

Last edited by Cyber Maid; 04-11-2007 at 08:44 AM.
 
Old 04-11-2007, 09:31 AM   #21
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Sounds like it's still looking for a config file and doesn't think you have a configured kernel. I'd say try to generate that config, run those previous commands I mentioned and go again. Or just take the steps to recompile you're kernel to your liking, save the config, reboot into new kernel and then attempt an install.
 
Old 04-11-2007, 10:10 AM   #22
auxsvr
Member
 
Registered: Dec 2006
Distribution: openSUSE 10.3
Posts: 260

Rep: Reputation: 30
You can get the .config for the currently running kernel with
Code:
gzip -dc /proc/config.gz > /usr/src/linux/.config
. After that, you can continue with the suggestions above.
 
Old 04-11-2007, 10:24 AM   #23
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally Posted by auxsvr
You can get the .config for the currently running kernel with
Code:
gzip -dc /proc/config.gz > /usr/src/linux/.config
. After that, you can continue with the suggestions above.
That's only if /proc/config.gz exists, which doesn't appear to on most systems I've dealt with.
 
Old 04-11-2007, 10:49 AM   #24
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Original Poster
Rep: Reputation: 15
/proc/config.gz does exits so i did "gzip -dc /proc/config.gz > /usr/src/linux/.config"
after make mrproper (because mrproper cleans the .config file aswell)
clone config did nothing again

Code:
make[1]: *** No rule to make target `cloneconfig'.  Stop.
make: *** [cloneconfig] Error 2
then i ran make modules_prepare, no problems.
tried to install vmware again...still got the same error that it's not configured yet.
rebooted and triedt to install again...but that didn't work either.
 
Old 04-11-2007, 11:07 AM   #25
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Well TurboLinux isn't listed as a supported Host OS for VMware Workstation. I'd say you may want to try and upgrade or match your kernel to one of the supported platforms.
 
Old 04-11-2007, 02:01 PM   #26
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Original Poster
Rep: Reputation: 15
Finally!!!

After browsing some japanese sites i found one with a how-to install VMware!
It seems all that has been done wasn't necessary at all :/

Here are the steps you should take when installing VMware on Turbolinux 11 (Fuji):

----------------------------------
# cd /usr/src/linux

# ./SetupKernelSource.sh i686

# cp .config /usr/src/linux-2.6.13

Then install VMware with the regular ./vmware-install.pl.

You don't even need the any-any-patch!
-----------------------------------

my god...i spend 2 days on this, rebuilding the kernel numerous times.
Then i just type some japanese in google (インストール vmware turbolinux FUJI) and voila.
 
Old 04-11-2007, 03:28 PM   #27
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally Posted by Cyber Maid
Finally!!!

After browsing some japanese sites i found one with a how-to install VMware!
It seems all that has been done wasn't necessary at all :/

Here are the steps you should take when installing VMware on Turbolinux 11 (Fuji):

----------------------------------
# cd /usr/src/linux

# ./SetupKernelSource.sh i686

# cp .config /usr/src/linux-2.6.13

Then install VMware with the regular ./vmware-install.pl.

You don't even need the any-any-patch!
-----------------------------------

my god...i spend 2 days on this, rebuilding the kernel numerous times.
Then i just type some japanese in google (インストール vmware turbolinux FUJI) and voila.
Turbo just has to be different from the rest but looks like it was just needing a basic .config to go from..

Glad you got it working, I'll keep that SetupKernelSource.sh in mind next time, since it seems to be TurboLinux related only, as I don't seem to have it on any of my own systems.

Cheers.
 
Old 04-12-2007, 10:26 PM   #28
terryxela
Member
 
Registered: Dec 2006
Location: Denver, Colorado, USA
Distribution: SuSE 11.3
Posts: 127

Rep: Reputation: 17
Ciber Maid glad you have it working. I was looking for something you could have done wrong. I have SuSE and I have never had to do anything extra than to run the script. One minor exception was the last release 10.2 when I had to enable usbfs in the kernel to be able to run the Palm sync.
Ciao
-=terry(denver)=-
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
TurboLinux Donald_McM Linux - Distributions 1 06-22-2005 06:08 PM
turbolinux laxmichawla Linux - Newbie 0 02-18-2005 02:09 AM
VMWare - Installing VMWare Tools Nightmare jerkmonkee Linux - Newbie 2 11-14-2004 05:52 PM
Thanks Turbolinux concoran Linux - General 3 08-21-2002 12:33 AM
turbolinux 7 ronss Linux - Distributions 3 05-22-2002 02:12 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:13 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration