| Linux - Virtualization and Cloud This forum is for the discussion of all topics relating to Linux Virtualization and Linux Cloud platforms. Xen, KVM, OpenVZ, VirtualBox, VMware, Linux-VServer and all other Linux Virtualization platforms are welcome. OpenStack, CloudStack, ownCloud, Cloud Foundry, Eucalyptus, Nimbus, OpenNebula and all other Linux Cloud platforms are welcome. Note that questions relating solely to non-Linux OS's should be asked in the General forum. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
09-30-2011, 08:26 PM
|
#1
|
|
LQ Newbie
Registered: Nov 2008
Location: Texas
Distribution: Ubuntu 10.04 & dream linux 3.5
Posts: 28
Rep:
|
Virtualbox host 10.04 guest question
Know absolutely zilch about VB but curious as all get out.
Installed VB and my question is on the guest and I would like Mint11, is it loaded from the ISO or must I burn it.
The attachment is merely where I am presently and any suggestions appreciated
Thanks
|
|
|
|
09-30-2011, 09:31 PM
|
#2
|
|
Member
Registered: Jan 2010
Location: Melbourne, IA, USA
Distribution: Ubuntu
Posts: 93
Rep:
|
Hi,
For AllenVB
Settings
Storage
IDE Controller press the plus (Add CD/DVD Device)
Choose disk
find your .iso then
Open
OK
Start AllenVB and it should boot off the iso.
Russ
|
|
|
1 members found this post helpful.
|
10-01-2011, 06:45 AM
|
#3
|
|
LQ Newbie
Registered: Nov 2008
Location: Texas
Distribution: Ubuntu 10.04 & dream linux 3.5
Posts: 28
Original Poster
Rep:
|
VB Host 10.04 guest question
Quote:
Originally Posted by rustek
Hi,
For AllenVB
Settings
Storage
IDE Controller press the plus (Add CD/DVD Device)
Choose disk
find your .iso then
Open
OK
Start AllenVB and it should boot off the iso.
Russ
|
Russ:
many thanks for your speedy specific reply. An 80 year old off on another Linux adventure 
|
|
|
|
10-01-2011, 07:24 AM
|
#4
|
|
LQ Newbie
Registered: Nov 2008
Location: Texas
Distribution: Ubuntu 10.04 & dream linux 3.5
Posts: 28
Original Poster
Rep:
|
Virtualbox host 10.04 guest question
Hey Russ or any other available patient VB user.
My Linux adventure was pretty short lived, but obviously not because of your suggestion.
1. I tried with debian ISO and got a kernel error message so I had a disk for dream that
I knew was good as I had it installed once in a multiple boot so I inserted it into the CD ROM drive
went to VB followed instructions and received this:
Kernel driver not installed (rc=-1908)
The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or there is a permission problem with /dev/vboxdrv. Please reinstall the kernel module by executing
'/etc/init.d/vboxdrv setup'
as root. Users of Ubuntu, Fedora or Mandriva should install the DKMS package first. This package keeps track of Linux kernel changes and recompiles the vboxdrv kernel module if necessary.
ready to admit this may be way over my 80 year old brain, but just had to post it 
|
|
|
|
10-01-2011, 08:01 AM
|
#5
|
|
Member
Registered: Jan 2010
Location: Melbourne, IA, USA
Distribution: Ubuntu
Posts: 93
Rep:
|
In a root terminal:
Code:
apt-get update
CURRENT=$(/bin/uname -r)
apt-get install linux-headers-"$CURRENT" build-essential virtualbox-4.0
/etc/init.d/vboxdrv setup
Change this if your virtualbox version is different.
This should fix it.
Last edited by rustek; 10-01-2011 at 08:02 AM.
|
|
|
|
10-01-2011, 09:25 AM
|
#6
|
|
LQ Newbie
Registered: Nov 2008
Location: Texas
Distribution: Ubuntu 10.04 & dream linux 3.5
Posts: 28
Original Poster
Rep:
|
Quote:
Originally Posted by rustek
In a root terminal:
Code:
apt-get update
CURRENT=$(/bin/uname -r)
apt-get install linux-headers-"$CURRENT" build-essential virtualbox-4.0
/etc/init.d/vboxdrv setup
Change this if your virtualbox version is different.
This should fix it.
|
Thanks for staying with me. Look at results
allen@allen-laptop:~$ apt-get update
E: Could not open lock file /var/lib/apt/lists/lock - open (13: Permission denied)
E: Unable to lock the list directory
allen@allen-laptop:~$ apt-get install linux-headers
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
allen@allen-laptop:~$
|
|
|
|
10-01-2011, 09:36 AM
|
#7
|
|
Member
Registered: Jan 2010
Location: Melbourne, IA, USA
Distribution: Ubuntu
Posts: 93
Rep:
|
My answers are too short sometimes.
You have to be root to execute those commands.
From the allen@allen-laptop:~$ prompt, type;
to become root, then you can enter the other commands.
when your done, "Control d" will take you back to being allen.
While your root you may want to enter;
Code:
adduser allen vboxusers
to add allen to the group vboxusers, it's ok if it is already so it won't hurt anything.
Russ
Last edited by rustek; 10-01-2011 at 09:40 AM.
|
|
|
|
10-01-2011, 10:23 AM
|
#8
|
|
LQ Newbie
Registered: Nov 2008
Location: Texas
Distribution: Ubuntu 10.04 & dream linux 3.5
Posts: 28
Original Poster
Rep:
|
Quote:
Originally Posted by rustek
My answers are too short sometimes.
You have to be root to execute those commands.
From the allen@allen-laptop:~$ prompt, type;
to become root, then you can enter the other commands.
when your done, "Control d" will take you back to being allen.
While your root you may want to enter;
Code:
adduser allen vboxusers
to add allen to the group vboxusers, it's ok if it is already so it won't hurt anything.
Russ
|
Do I have to do something else here???
allen@allen-laptop:~$ sudo bash
[sudo] password for allen:
root@allen-laptop:~# /etc/init.d/vboxdrv setup
* Stopping VirtualBox kernel modules [ OK ]
* Uninstalling old VirtualBox DKMS kernel modules [ OK ]
* Trying to register the VirtualBox kernel modules using DKMS /etc/init.d/vboxdrv setup
[ OK ]
* Starting VirtualBox kernel modules [ OK ]
root@allen-laptop:~# /etc/init.d/vboxdrv setup
* Stopping VirtualBox kernel modules [ OK ]
* Uninstalling old VirtualBox DKMS kernel modules [ OK ]
* Trying to register the VirtualBox kernel modules using DKMS
|
|
|
|
10-01-2011, 10:26 AM
|
#9
|
|
Member
Registered: Jan 2010
Location: Melbourne, IA, USA
Distribution: Ubuntu
Posts: 93
Rep:
|
That looks like success to me.
If you get the "Kernel driver not installed" message again, try a reboot.
If that doesn't work do all the commands I gave before to get and build the modules.
Have fun.
Russ
Last edited by rustek; 10-01-2011 at 10:33 AM.
|
|
|
|
10-01-2011, 10:37 AM
|
#10
|
|
Member
Registered: Jan 2010
Location: Melbourne, IA, USA
Distribution: Ubuntu
Posts: 93
Rep:
|
Are you saying it got stuck on the last line?
|
|
|
|
10-01-2011, 12:46 PM
|
#11
|
|
LQ Newbie
Registered: Nov 2008
Location: Texas
Distribution: Ubuntu 10.04 & dream linux 3.5
Posts: 28
Original Poster
Rep:
|
Quote:
Originally Posted by rustek
Are you saying it got stuck on the last line?
|
My concern was that trying to register line, but been away from PC and will now giv it another shot with what I have. And as you suggested I will reboot given error and as well go through all commands again
|
|
|
|
10-01-2011, 01:27 PM
|
#12
|
|
LQ Newbie
Registered: Nov 2008
Location: Texas
Distribution: Ubuntu 10.04 & dream linux 3.5
Posts: 28
Original Poster
Rep:
|
VB Host 10.04 guest question
Russ:
Never meant to involve someone so long. Loading guest is solved. Tried Suse gave me a some stuff about cannot use 64 bit on 32 bit machine
and nine is 64 bit so passed. loaded dreamlinux and got as far as attachment
|
|
|
|
10-01-2011, 01:42 PM
|
#13
|
|
Member
Registered: Jan 2010
Location: Melbourne, IA, USA
Distribution: Ubuntu
Posts: 93
Rep:
|
We have had trouble with DKMS and virtualbox on a couple machines in that they don't update the kernel modules correctly, that's why I know how to do it
Sometimes they fix themselves on the second boot, and sometimes I have to make and install the modules manually like I showed you.
Same software, different hardware, one works, one doesn't, go figure?
Only seem to have the trouble with virtualbox.
Make sure you put the version your using in the command, ie. virtualbox-4.1 or virtualbox-4.0
Russ
|
|
|
|
10-01-2011, 01:55 PM
|
#14
|
|
Member
Registered: Jan 2010
Location: Melbourne, IA, USA
Distribution: Ubuntu
Posts: 93
Rep:
|
Your original post has a screenshot that says the VM is OS2/warp.
You will probably have to make a new VM and set it to better match the OS your trying to load on it.
Remember the VM is the machine as far as what your loading on it is concerned.
Try
OperatingSystem: Linux
Version: openSUSE (64 bit)
|
|
|
|
10-02-2011, 10:24 AM
|
#15
|
|
LQ Newbie
Registered: Jan 2011
Location: Texas
Distribution: 10.04
Posts: 11
Rep:
|
Quote:
Originally Posted by rustek
Your original post has a screenshot that says the VM is OS2/warp.
You will probably have to make a new VM and set it to better match the OS your trying to load on it.
Remember the VM is the machine as far as what your loading on it is concerned.
Try
OperatingSystem: Linux
Version: openSUSE (64 bit)
|
Russ:
I want to thank you for your patience and for in effect giving me quite an education.
For all intents and purpose the original thread and concern has been solved. Please tell me
how to indicate that on forum. By way when I reinstalled VB I went from 4.1.2 and thought I would try OSE which works great for me
Again thank you
An after thought, with win as host and Ubuntu as guest or any guest for that matter is there any way increase size of guest viewing screen
I feel there is not but hey does not hurt to ask. Using 4.1.2
Thanks again
Last edited by 80yearold; 10-02-2011 at 05:51 PM.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 07:05 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|