Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 14th March 2011, 01:23 AM
DFyre22 Offline
Registered User
 
Join Date: Mar 2011
Posts: 5
linuxfedorafirefox
Using Virtualization products with a Fedora Host

I am running FC14 as my host OS and am trying to install a virtual environment for academic reasons. I have tried using several different varieties including VMware and VirtualBox, but none of them seem to have any modules for the FC14 kernel. Has anyone had any luck with virtualization with FC14 as the host, that may be able to point me in a viable direction? Any help would be greatly appreciated.
Reply With Quote
  #2  
Old 14th March 2011, 01:25 AM
motnahp00
Guest
 
Posts: n/a
windows_7firefox
Re: Using Virtualization products with a Fedora Host

I am running Fedora 14 on both VirtualBox and VMware Workstation 7.
Reply With Quote
  #3  
Old 14th March 2011, 01:27 AM
DFyre22 Offline
Registered User
 
Join Date: Mar 2011
Posts: 5
linuxfedorafirefox
Re: Using Virtualization products with a Fedora Host

Yeah, Fedora works fine as the guest OS, the problem I am having is installing a virtualization product on a Fedora HOST OS.
Reply With Quote
  #4  
Old 14th March 2011, 01:30 AM
motnahp00
Guest
 
Posts: n/a
windows_7firefox
Re: Using Virtualization products with a Fedora Host

What error(s) are you getting?
Reply With Quote
  #5  
Old 14th March 2011, 01:34 AM
DFyre22 Offline
Registered User
 
Join Date: Mar 2011
Posts: 5
linuxfedorafirefox
Re: Using Virtualization products with a Fedora Host

The specific error is "Kernel Headers 2.6.35.6-45.fc14.i686 were not found." I searched through the directory, and the only kernel headers to integrate the Virtual environment into the fedora host are for FC13 or prior OS's. I returned the the VM site, and checked through their databases, but there are no kernel headers to DL for FC14. Just trying to see if there is some kind of workaround, or a different hypervisor that may actually have the necessary headers
Reply With Quote
  #6  
Old 14th March 2011, 01:46 AM
motnahp00
Guest
 
Posts: n/a
windows_7firefox
Re: Using Virtualization products with a Fedora Host

I've been successful installing VirtualBox. Have you tried this hypervisor?
Reply With Quote
  #7  
Old 14th March 2011, 01:49 AM
pforsell's Avatar
pforsell Offline
Registered User
 
Join Date: Mar 2011
Posts: 39
linuxchrome
Re: Using Virtualization products with a Fedora Host

I am running VBox on F14 and I can fnd the headers in the source repo:

Code:
[peter@delia ~]$ yum list kernel-devel-2.6.35.6*
Loaded plugins: langpacks, presto, refresh-packagekit
Adding en_US to language list
Available Packages
kernel-devel.i686                    2.6.35.6-45.fc14                     fedora
[peter@delia ~]$
Hope this helps.

-Peter
__________________
My posts are a work of fiction. Everything I write is an opinion, a joke, or both. Do not follow my advice.

F14: Dell Latitude D630 Core2Duo 2GHz 4GB
F14 x64: HP i7 3GHz 12GB
#317797
Reply With Quote
  #8  
Old 14th March 2011, 01:52 AM
DFyre22 Offline
Registered User
 
Join Date: Mar 2011
Posts: 5
linuxfedorafirefox
Re: Using Virtualization products with a Fedora Host

VirtualBox did installl, however after creating a new virtual machine it fails to power on. Attempts to power on a VM give me the error of "kernel driver not installed (rc=-1908). It tells me to run /etc/init.d/vboxdrv setup as root to correct the problem. Unfortunately, running that command results in failure to register the virtualbox kernel modules, and failure to recompile the virtualbox kernel modules.
Reply With Quote
  #9  
Old 14th March 2011, 01:52 AM
jpollard Online
Registered User
 
Join Date: Aug 2009
Location: Waldorf, Maryland
Posts: 6,150
linuxfedorafirefox
Re: Using Virtualization products with a Fedora Host

Quote:
Originally Posted by DFyre22 View Post
The specific error is "Kernel Headers 2.6.35.6-45.fc14.i686 were not found." I searched through the directory, and the only kernel headers to integrate the Virtual environment into the fedora host are for FC13 or prior OS's. I returned the the VM site, and checked through their databases, but there are no kernel headers to DL for FC14. Just trying to see if there is some kind of workaround, or a different hypervisor that may actually have the necessary headers
You seem to have an old kernel (2.6.35-6...) My kernel is 2.6.35-11*..

You should be able to install the older kernel if you want to.
Reply With Quote
  #10  
Old 14th March 2011, 01:58 AM
motnahp00
Guest
 
Posts: n/a
windows_7firefox
Re: Using Virtualization products with a Fedora Host

Did you install dkms & gcc?

---------- Post added at 07:58 PM ---------- Previous post was at 07:57 PM ----------

This link is meant for Fedora 13 but should point you in the right direction:

http://www.thelinuxdaily.com/2010/05...-on-fedora-13/
Reply With Quote
  #11  
Old 14th March 2011, 08:17 PM
kai4785 Offline
Registered User
 
Join Date: Jan 2006
Posts: 151
linuxfirefox
Re: Using Virtualization products with a Fedora Host

KVM is Redhat's virtualization platform of choice, and Fedora supports all of the newest and latest features.
yum -y install kvm virt-manager libvirt python-virtinst

Virtualbox is a great Desktop virtualization package that comes with great guest additions. You do have to compile the kernel modules, so as was posted above, you need kernel-headers, gcc, and alternatively DKMS. From the command line as root, run service vboxdrv setup after getting all the required software installed to build the kernel modules.

VMWare is a good enterprise solution, but I've never appreciated their "free" desktop solutions. Overly complicated for a Desktop user with no virtualization experience.

Overall, I personally suggest KVM if you want to go 100% pure Open Source (which matters to some folk), or VirtualBox if you want to go ease-of-use. Can't run VMs in in each at the same time, kernel modules will clash and potentially crash your system
Reply With Quote
  #12  
Old 14th March 2011, 08:24 PM
DFyre22 Offline
Registered User
 
Join Date: Mar 2011
Posts: 5
windows_7ie
Re: Using Virtualization products with a Fedora Host

Thank you all for the assistance. I was able to get VirtualBox running, apparently I forgot the dkms. I am not familiar with KVM, however, I will be looking into that option as well.
Reply With Quote
  #13  
Old 14th March 2011, 08:44 PM
motnahp00
Guest
 
Posts: n/a
windows_7firefox
Re: Using Virtualization products with a Fedora Host

Glad to hear you got it working. You're welcome.
Reply With Quote
Reply

Tags
fedora, host, products, virtualization

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
virtualization with fedora 13 as host and windows vista as guest activation issues. zentio Using Fedora 1 2nd September 2010 06:22 PM
Virtualization on Fedora 13 danijelpg Using Fedora 4 19th July 2010 04:09 PM
Virtualization In Fedora 8 Ashish Sood Using Fedora 1 18th April 2009 12:07 AM


Current GMT-time: 09:22 (Thursday, 20-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat