Host:
Win7 Enterprise x64
16GB Ram
Core i7-3770
2TB HDD
Guest:
Ubuntu Server 13.10 x64
2 GB Ram allocated
2 vcpu's
8GB HDD
Issue:
The OS is not seeing any .iso's mounted within it. I'm new to *nix and VM's, so be gentle. I've checked /media/cdrom and when either the OS install .iso or the guest additions .iso is mounted, this directory is empty. Rebooting the guest with the OS .iso mounted prompts to reinstall said OS. I'm unsure if this a VB issue or a Ubuntu thing that I'm just not seeing. I've managed to get RHEL 5 and Solaris 10 working fine and joined to my Windows domain using Power Broker Identity Services, but Ubuntu is throwing me for a loop.
Ubuntu 13.10 server not seeing mounted .iso's from guest
-
Perryg
- Site Moderator
- Posts: 34369
- Joined: 6. Sep 2008, 22:55
- Primary OS: Linux other
- VBox Version: OSE self-compiled
- Guest OSses: *NIX
Re: Ubuntu 13.10 server not seeing mounted .iso's from guest
Servers work differently from desktops and you must manually mount specific devices.
As far as guest additions all you will get on a server is shared folders and time sync since you do not have X installed.
As far as guest additions all you will get on a server is shared folders and time sync since you do not have X installed.
Re: Ubuntu 13.10 server not seeing mounted .iso's from guest
Ok, so how would I get guest additions installed? In order for me to copy the .iso to a shared folder to mount, I'd have to have guest additions installed. I can't install guest additions, because the .iso isn't mounting from within the guest.Perryg wrote:Servers work differently from desktops and you must manually mount specific devices.
As far as guest additions all you will get on a server is shared folders and time sync since you do not have X installed.
-
Perryg
- Site Moderator
- Posts: 34369
- Joined: 6. Sep 2008, 22:55
- Primary OS: Linux other
- VBox Version: OSE self-compiled
- Guest OSses: *NIX
Re: Ubuntu 13.10 server not seeing mounted .iso's from guest
This is guest specific and not really a VBox issue but the mount statement is fairly simple.
This will mount the CD/DVD in /media.
From there you run the install using the --nox11 tag to allow it to build without X
Keep in mind that you will see errors but that is because you don't have x and it will install the shared folders and time sync
You will also need to install the necessary packages to build external kernel modules before you can actually build the guest additions modules. So do this first
Code: Select all
sudo mount /dev/sr0 /mediaFrom there you run the install using the --nox11 tag to allow it to build without X
Code: Select all
sudo ./VBoxLinuxAdditions.run --nox11You will also need to install the necessary packages to build external kernel modules before you can actually build the guest additions modules. So do this first
Code: Select all
sudo apt-get install dkms build-essential linux-headers-$(uname -r)Re: Ubuntu 13.10 server not seeing mounted .iso's from guest
Ok, thanks for the help, I'll give this a shot.Perryg wrote:This is guest specific and not really a VBox issue but the mount statement is fairly simple.This will mount the CD/DVD in /media.Code: Select all
sudo mount /dev/sr0 /media
From there you run the install using the --nox11 tag to allow it to build without XKeep in mind that you will see errors but that is because you don't have x and it will install the shared folders and time syncCode: Select all
sudo ./VBoxLinuxAdditions.run --nox11
You will also need to install the necessary packages to build external kernel modules before you can actually build the guest additions modules. So do this firstCode: Select all
sudo apt-get install dkms build-essential linux-headers-$(uname -r)
Re: Ubuntu 13.10 server not seeing mounted .iso's from guest
The results I get from running sudo apt-get install dkms .... is:
Unable to locate package DKMS
Unable to locate package build-essential
My more basic question is, how do I get these packages into my VM? Do I download them to my Windows host and create an ISO, then mount that?
Unable to locate package DKMS
Unable to locate package build-essential
My more basic question is, how do I get these packages into my VM? Do I download them to my Windows host and create an ISO, then mount that?