LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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, 08:57 PM   #1
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Rep: Reputation: 15
installing VMware on Turbolinux 11


I give up...
After hours of trying and searching the net i have yet to install VMware successfully on Turbolinux 11 (FUJI).

I've got all the required software and kernel-source.

- Tried clean install...no go
- Tried with any any patch 1.0.9...nothing
- Tried rebuilding the kernel...still nothing

I'm stuck now with vmware thinking i havn't configured the kernel.

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.
But i did use make xconfig, and make menuconfig, and make oldconfig. (gotta try them all when you're desperate)

I even did: make mrproper, make xconfig...save and exit, make, make modules

Still nothing...

I hope someone here can help me.
 
Old 04-10-2007, 09:43 PM   #2
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
You most likely need the latest vmware-any-any update installed to get this to work. You can get the latest version here: ftp://platan.vc.cvut.cz/pub/vmware/
 
Old 04-10-2007, 09:44 PM   #3
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Original Poster
Rep: Reputation: 15
the one i applied is the latest version: vmware-any-any-update109.tar.gz
 
Old 04-10-2007, 09:49 PM   #4
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally Posted by Cyber Maid
the one i applied is the latest version: vmware-any-any-update109.tar.gz
Did that fix the issue?
 
Old 04-10-2007, 09:55 PM   #5
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Cyber Maid
- Tried with any any patch 1.0.9...nothing
Nope, the any any patch was my second try.
VMware just thinks i need to configure the kernel...and i believe that is done with "make xconfig" right?
 
Old 04-10-2007, 10:17 PM   #6
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
What version of VMware are you trying to install? And what kernel packages do you currently have installed? Do the match the current running kernel?
 
Old 04-10-2007, 10:18 PM   #7
terryxela
Member
 
Registered: Dec 2006
Location: Denver, Colorado, USA
Distribution: SuSE 11.3
Posts: 127

Rep: Reputation: 17
Run

$ uname -r

$ rpm -qa | grep kernel

And be sure that kernel and source are the same version. Any difference can explain some of the problems. The kernel headers do not need to be the same.

Ciao

-=terry(Denver)=-
 
Old 04-10-2007, 10:21 PM   #8
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Original Poster
Rep: Reputation: 15
VMware 5.5.2

Code:
[cybermaid@maidsmansion ~]$ uname -r
2.6.13-7
[cybermaid@maidsmansion ~]$ rpm -qa | grep kernel
kernel-utils-2.6-22
kernel-2.6.13-7
kernel-pcmcia-cs-2.6.13-7
kernel-extramodules-2.6.13-7
kernel-headers-2.6.13-7
kernel-source-2.6.13-7
kernel-doc-2.6.13-7
 
Old 04-10-2007, 10:22 PM   #9
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Also, /usr/src/linux/include might not be the proper path to the correct Kernel Header file. It may be in something like:

/lib/modules/<current-kernel-version>/build/include
 
Old 04-10-2007, 10:26 PM   #10
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by trickykid
Also, /usr/src/linux/include might not be the proper path to the correct Kernel Header file. It may be in something like:

/lib/modules/<current-kernel-version>/build/include
"/lib/modules/linux-2.6.13/build/include" and "/usr/src/linux/include" are both linked to "/usr/src/linux-2.6.13/include"
 
Old 04-10-2007, 10:30 PM   #11
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Try running these commands from your /usr/src/linux directory:

make mrproper
make cloneconfig
make modules_prepare

And then try to rerun the vmware-config.pl and see if it still complains.
 
Old 04-10-2007, 10:32 PM   #12
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Instead of make modules_prepare, you can also try make prepare-all as well if the modules_prepare doesn't work.
 
Old 04-10-2007, 10:42 PM   #13
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Original Poster
Rep: Reputation: 15
Hmmm, can't make cloneconfig...

Code:
[root@maidsmansion linux]# make cloneconfig
  HOSTCC  scripts/basic/fixdep
  HOSTCC  scripts/basic/split-include
  HOSTCC  scripts/basic/docproc
make[1]: *** No rule to make target `cloneconfig'.  Stop.
make: *** [cloneconfig] Error 2
 
Old 04-10-2007, 10:51 PM   #14
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally Posted by Cyber Maid
Hmmm, can't make cloneconfig...

Code:
[root@maidsmansion linux]# make cloneconfig
  HOSTCC  scripts/basic/fixdep
  HOSTCC  scripts/basic/split-include
  HOSTCC  scripts/basic/docproc
make[1]: *** No rule to make target `cloneconfig'.  Stop.
make: *** [cloneconfig] Error 2
Do you have gcc installed?

rpm -qa | grep gcc
 
Old 04-10-2007, 10:53 PM   #15
Cyber Maid
Member
 
Registered: Feb 2005
Location: The Netherlands
Distribution: Turbolinux FUJI
Posts: 114

Original Poster
Rep: Reputation: 15
Yes, thats what the output says.

Code:
[root@maidsmansion linux]# rpm -qa | grep gcc
libgcc-3.4.3-10
gcc-c++-3.4.3-10
gcc-3.4.3-10
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 01:15 AM.

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