LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Virtualization and Cloud
User Name
Password
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


Reply
  Search this Thread
Old 11-15-2015, 08:56 AM   #16
goumba
Senior Member
 
Registered: Dec 2009
Location: New Jersey, USA
Distribution: Fedora, OpenSUSE, FreeBSD, OpenBSD, macOS (hack). Past: Debian, Arch, RedHat (pre-RHEL).
Posts: 1,335
Blog Entries: 7

Rep: Reputation: 402Reputation: 402Reputation: 402Reputation: 402Reputation: 402

Code:
sudo apt-get remove virtualbox-4.3
sudo apt-get update
sudo apt-get install virtualbox-5.0
Note the correct package name on line 1. I've also indicated this in a previous post how to remove the old package. You want o match the package name that dpkg -l gave you. It may work otherwise if you're lucky, but it's not guaranteed.

I noticed this in another thread of yours. You ask, you get an answer, you question the answer many times. Then you question the confirmation. In this thread you've repeatedly posted information from apt-cache policy for different versions. You could have been done with this problem at least two days ago. I understand being cautious, but you run the risk that those helping you stop checking, or forget about, the thread.
 
Old 11-15-2015, 10:09 AM   #17
satimis
Senior Member
 
Registered: Apr 2003
Posts: 3,695

Original Poster
Rep: Reputation: 56
Quote:
Originally Posted by goumba View Post
Code:
$ sudo apt-get remove virtualbox-4.3
$ sudo apt-get update
$ sudo apt-get install virtualbox-5.0
......
Hi,

Thanks for your advice. Performed following steps;

$ sudo apt-get remove virtualbox-4.3

$ sudo apt-get update
Code:
.....
Reading package lists... Done
W: Duplicate sources.list entry http://dl.google.com/linux/chrome/deb/ stable/main amd64 Packages (/var/lib/apt/lists/dl.google.com_linux_chrome_deb_dists_stable_main_binary-amd64_Packages)
W: Duplicate sources.list entry http://dl.google.com/linux/chrome/deb/ stable/main i386 Packages (/var/lib/apt/lists/dl.google.com_linux_chrome_deb_dists_stable_main_binary-i386_Packages)
W: You may want to run apt-get update to correct these problems
But they are not found on /etc/apt/source.list

I found it on /etc/apt/sources.list.d/google-chrome.list

$ sudo mv /etc/apt/sources.list.d/google-chrome.list /etc/apt/sources.list.d/google-chrome.list.spare

$ sudo apt-get update
Code:
......
Hit http://security.ubuntu.com trusty-security/universe Translation-en
Ign http://extras.ubuntu.com trusty/main Translation-en_HK
Ign http://extras.ubuntu.com trusty/main Translation-en
Fetched 64.4 kB in 4s (14.1 kB/s)
Reading package lists... Done
N: Ignoring file 'google-chrome.list.spare' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
$ sudo apt-get install virtualbox-5.0
Code:
....
Setting up virtualbox-5.0 (5.0.10-104061~Ubuntu~trusty) ...
addgroup: The group `vboxusers' already exists as a system group. Exiting.
Stopping VirtualBox kernel modules ...done.
Uninstalling old VirtualBox DKMS kernel modules ...done.
Trying to register the VirtualBox kernel modules using DKMS ...done.
Starting VirtualBox kernel modules ...done.
Stopping VirtualBox kernel modules ...done.
N: Ignoring file 'google-chrome.list.spare' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
N: Ignoring file 'google-chrome.list.spare' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
(remark: I'll delete 'google-chrome.list.spare' later)

$ virtualbox
Oracle VM VirtualBox Manager started
(all VMs are there but I couldn't start them)
Code:
You have an old version (4.3.32) of the Oracle VM VirtualBox Extension Pack installed.
Do you wish to download latest one from the Internet?
-> Cancel
Warning on starting VM
Code:
2.0 controller not found!
Because the USB 2.0 controller state is part of the saved VM state, the VM cannot be started. To fix this problem, either install the 'Oracle VM VirtualBox Extension Pack' or disable USB 2.0 support in the VM settings (VERR_NOT_FOUND).

Result Code: 
NS_ERROR_FAILURE (0x80004005)
Component: 
ConsoleWrap
Interface: 
IConsole {872da645-4a9b-1727-bee2-5585105b9eed}
What is the package-name of VirtualBox Extension Pack on repo? I expect to install it on repo. Thanks.

Regards
satimis

Last edited by satimis; 11-15-2015 at 10:33 AM.
 
Old 11-15-2015, 01:09 PM   #18
goumba
Senior Member
 
Registered: Dec 2009
Location: New Jersey, USA
Distribution: Fedora, OpenSUSE, FreeBSD, OpenBSD, macOS (hack). Past: Debian, Arch, RedHat (pre-RHEL).
Posts: 1,335
Blog Entries: 7

Rep: Reputation: 402Reputation: 402Reputation: 402Reputation: 402Reputation: 402
Use

Code:
apt-cache search
to find the extensions if they're available the repo
 
Old 11-15-2015, 05:13 PM   #19
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
Download the extension from their website, then install it with:
Code:
vboxmanage extpack install <name of extpack>
That'll fix the USB 2.0 problem that's preventing your VMs from starting.
 
Old 11-15-2015, 08:05 PM   #20
satimis
Senior Member
 
Registered: Apr 2003
Posts: 3,695

Original Poster
Rep: Reputation: 56
Quote:
Originally Posted by goumba View Post
Use

Code:
apt-cache search
to find the extensions if they're available the repo
I have tried before.

⟫ apt-cache search extension pack | grep virtualbox
⟫ apt-cache search extension pack | grep oracle

no output

satimis
 
Old 11-15-2015, 08:22 PM   #21
satimis
Senior Member
 
Registered: Apr 2003
Posts: 3,695

Original Poster
Rep: Reputation: 56
Quote:
Originally Posted by suicidaleggroll View Post
Download the extension from their website, then install it with:
Code:
vboxmanage extpack install <name of extpack>
That'll fix the USB 2.0 problem that's preventing your VMs from starting.
Hi,

Performed following steps;

started "VM VirtualBox Manager"

Following warning popup
Code:
You have an old version (4.3.32) of the Oracle VM VirtualBox Extension Pack installed.
Do you wish to download latest one from the Internet?
[Cancel] [Download]
-> [Download]

Code:
The Oracle VM VirtualBox Extension Pack has been successfully downloaded from http://download.virtualbox.org/virtualbox/5.0.10/Oracle_VM_VirtualBox_Extension_Pack-5.0.10.vbox-extpack and saved locally as /home/satimis/.config/VirtualBox/Oracle_VM_VirtualBox_Extension_Pack-5.0.10.vbox-extpack.
Do you wish to install this extension pack?
[Cancel] [Install]
-> [Install]

Code:
An older version of the extension pack is already installed, would you like to upgrade? 
Extension packs complement the functionality of VirtualBox and can contain system level software that could be potentially harmful to your system. Please review the description below and only proceed if you have obtained the extension pack from a trusted source.

Name:  
Oracle VM VirtualBox Extension Pack
New Version:  
5.0.10r104061
Current Version:  
4.3.32r103443
Description:  
USB 2.0 and USB 3.0 Host Controller, Host Webcam, VirtualBox RDP, PXE ROM, Disk Encryption.
[Cancel] [Upgrade]
-> [Upgrade]

-> [I Agree] VirtualBox License

Code:
The extension pack 
Oracle VM VirtualBox Extension Pack
was installed successfully.
-> [OK]

Now VMs can be started. Thanks

Regards
satimis
 
  


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



Similar Threads
Thread Thread Starter Forum Replies Last Post
no network with wheezy upgrade on virtualbox XicKy Debian 1 08-10-2013 01:05 AM
VirtualBox won't run after upgrade to slackware64 current Ook Slackware 9 06-18-2011 07:13 AM
[SOLVED] VirtualBox PUEL reverts to OSE after Ubuntu upgrade Girts Linux - Virtualization and Cloud 1 11-01-2009 04:52 AM
Ubuntu 8.04 upgrade to 8.10 ate my VirtualBox floppy? brianpbarnes Linux - Software 1 01-27-2009 03:31 PM
Upgrade to Virtualbox 2.0.6 TL_CLD Slackware 2 11-27-2008 04:23 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Virtualization and Cloud

All times are GMT -5. The time now is 07:14 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