Author Topic: Getvirtualbox--Just works with flair  (Read 5616 times)

Offline menotu

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 15515
  • ┌∩┐(◕_◕)┌∩┐
Re: Getvirtualbox--Just works with flair
« Reply #15 on: June 10, 2010, 02:08:30 PM »
But as there is no rpm package of Virtualbox its difficult to put it in Synaptic

Is it not possible to use the generic version?

Cheers.

Oracle no longer provide an rpm virtualbox specifically for PCLinuxOS therefore Tex decided to create a script - getvirtualbox - which goes to the Oracle web site and downloads and installs it in one hit. This script can be grabbed from Synaptic and run when its downloaded which takes all the hassle out of individuals having to go to the Oracle site and download and try and install it themselves, which some users new to Linux may not know how to do, so I think this provides a valuable little app for all of us.

Mebbe Oracle will see just how many downloads are happening and make an rpm virtualbox like they used to.

« Last Edit: June 10, 2010, 02:10:03 PM by menotu »
PCLinuxOS 32bit KDE 4.10.4; kernel-3.4.11-pclos1.bfs & 64bit 3.4.38bfs; NVidia GeForce 8400GS 1GB 310.19 driver

Sony Vaio SVE1513A4ESI Laptop, Intel Core i5, 2.6GHz, 6GB RAM, 750GB, 15.6" Intel HD Graphics 4000

Offline kjpetrie

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 4037
Re: Getvirtualbox--Just works with flair
« Reply #16 on: June 11, 2010, 03:07:00 AM »

But as there is no rpm package of Virtualbox its difficult to put it in Synaptic

The version in Synaptic is the Open Source Edition, which has always been different from the PUEL rpm. The repo rpm is made by Texstar, not Oracle (and I hope, despite his comments above, he will continue to allow it in the repo, because I prefer to use open source software).
-----------
KJP
-----------------------------------------------------------
PClos64 RC1 on Intel D945GCLF2 motherboard (Atom 330), 2GB DDR2 RAM, Maxtor STM325031, HL-DT-ST DVDRAM GSA-H42N, Amilo LSL 3220T monitor. Also Acer 5810TG (with custom kernel) and Asus eeePC 2G surf

Tommylee567

  • Guest
Re: Getvirtualbox--Just works with flair
« Reply #17 on: June 12, 2010, 09:54:41 AM »
One modification is needed.
In between the server is stuck and the download is temporarily stopped. Then the script goes absent. it is out from the screen, not minimized. (it is running closed in the background). Then an error comes out saying it has checksum errors.

Correcting the problem i directly downloaded the file using JDownloader. and i have the 55 MB file separately. The script uses the /tmp folder to download the .run file. I copied the downloaded file to the tmp folder and ran the script again, but it deleted and restarted again. Luckily i still have the original downloaded file in the home folder.
What i'm trying to say is, now i installed manually and it finished without errors but doesn't run because it needs to add 'usb' user. since this has to be done by the script what shall i do now? i have a stupid broadband 3G connection and it goes well upto the 90 % mark then goes for lunch  :'(. after much trying i directly downloaded using JD.
Can i do something here?

PS- is this version a paid type? non-ose means not free?

Thanks!
Tim

Offline menotu

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 15515
  • ┌∩┐(◕_◕)┌∩┐
Re: Getvirtualbox--Just works with flair
« Reply #18 on: June 12, 2010, 10:11:06 AM »
The one d/loaded and installed using the getvirtualbox script is the Personal Use and Evaluation License PUEL version.
PCLinuxOS 32bit KDE 4.10.4; kernel-3.4.11-pclos1.bfs & 64bit 3.4.38bfs; NVidia GeForce 8400GS 1GB 310.19 driver

Sony Vaio SVE1513A4ESI Laptop, Intel Core i5, 2.6GHz, 6GB RAM, 750GB, 15.6" Intel HD Graphics 4000

Offline NoIBnds

  • Hero Member
  • *****
  • Posts: 1208
Re: Getvirtualbox--Just works with flair
« Reply #19 on: June 12, 2010, 11:01:05 AM »
One modification is needed.
In between the server is stuck and the download is temporarily stopped. Then the script goes absent. it is out from the screen, not minimized. (it is running closed in the background). Then an error comes out saying it has checksum errors.

Correcting the problem i directly downloaded the file using JDownloader. and i have the 55 MB file separately. The script uses the /tmp folder to download the .run file. I copied the downloaded file to the tmp folder and ran the script again, but it deleted and restarted again. Luckily i still have the original downloaded file in the home folder.
What i'm trying to say is, now i installed manually and it finished without errors but doesn't run because it needs to add 'usb' user. since this has to be done by the script what shall i do now? i have a stupid broadband 3G connection and it goes well upto the 90 % mark then goes for lunch  :'(. after much trying i directly downloaded using JD.
Can i do something here?

PS- is this version a paid type? non-ose means not free?

Thanks!
Tim


Tex wrote this in this posting http://www.pclinuxos.com/forum/index.php/topic,73473.0.html     
reply 8


Doesn't work because they have different python and rpm version than PCLinuxOS.


I think we need to do a package like getopenoffice...

#su to root mode
su

# download VirtualBox
wget http://download.virtualbox.org/virtualbox/3.2.2/VirtualBox-3.2.2-62298-Linux_x86.run

#make file executable
chmod a+x VirtualBox-3.2.2-62298-Linux_x86.run

# run the installer
sh VirtualBox-3.2.2-62298-Linux_x86.run


# add users to group vboxusers
SYSUSERS=`cat /etc/passwd | grep "/bin/bash" |grep "[0-9][0-9][0-9]" |cut -d: -f1`
for idx in $SYSUSERS
 do INP1= usermod -a -G vboxusers,usb $idx; done

# create menu entry for PCLinuxOS

[Desktop Entry]
Encoding=UTF-8
Version=1.0
Name=Oracle VM VirtualBox
GenericName=Virtual Machine
Type=Application
Exec=VirtualBox
TryExec=VirtualBox
DocPath=file:///opt/VirtualBox/UserManual.pdf
Icon=VBox
Categories=Emulator;System;X-MandrivaLinux-MoreApplications-Emulators;
Comment=Run several virtual systems on a single host computer

Retired from Fighting Crime and or Evil for Truth, Justice, and the American Way.

Tommylee567

  • Guest
Re: Getvirtualbox--Just works with flair
« Reply #20 on: June 12, 2010, 11:14:15 AM »
A million thanks to you brother,
i will try and tell you the results. now off to bed.

Tim :)

AndrzejL

  • Guest
Re: Getvirtualbox--Just works with flair
« Reply #21 on: June 12, 2010, 12:00:41 PM »
I downloaded!

+1 - Script works like a charm - well done!

Andy

Tommylee567

  • Guest
Re: Getvirtualbox--Just works with flair
« Reply #22 on: June 13, 2010, 07:11:22 AM »
Yep, it works!

Thanks!

Tim

Offline ezas

  • Sr. Member
  • ****
  • Posts: 251
  • Permanent learner
Re: Getvirtualbox--Just works with flair
« Reply #23 on: July 10, 2010, 05:46:26 AM »
Well hell looks like I grabbed the 'wrong' version. At least I know how easy and fun virtuabox is. I have a windows app that I got working in WINE but there is some screen corruption so I'm seeing how it compares to get it, install it, ran and restore my data to the app.

Since i'm not a purist, i'm uninstalling and using the 'getvirtualbox'. Later I'll find some threads and figure out how the PUEL version is different. But just from this thread seem like PUEL version is way to go.
I find that a few strong early-evening bourbons have a way
of blowing open whatever trap it is that I've construed
for myself by day's end, allowing me at least a brief review,
past the flying, incendiary wreckage, of the roads not taken."
Author unknown

Offline marcopl

  • Full Member
  • ***
  • Posts: 145
Re: Getvirtualbox--Just works with flair
« Reply #24 on: September 07, 2010, 10:48:15 PM »
i tried installing getvirtualbox via synaptic but it wanted to remove dkms-virtualbox + a few other things. but i already have a few guest OSes running. So i backed off.

is installing getvirtualbox destructive to my existing guestOSes?

Offline YouCanToo

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 5383
  • Location: Lebanon, OR., USA
    • Spreading the word.......
Re: Getvirtualbox--Just works with flair
« Reply #25 on: September 07, 2010, 11:00:36 PM »
i tried installing getvirtualbox via synaptic but it wanted to remove dkms-virtualbox + a few other things. but i already have a few guest OSes running. So i backed off.

is installing getvirtualbox destructive to my existing guestOSes?

It shouldn't effect it in any way. But always be careful and make a backup!




Be sure to visit the NEW Knowledge Base


Linux is user-friendly- it's just picky who its friends are!

Offline marcopl

  • Full Member
  • ***
  • Posts: 145
Re: Getvirtualbox--Just works with flair
« Reply #26 on: September 07, 2010, 11:46:29 PM »
i tried installing getvirtualbox via synaptic but it wanted to remove dkms-virtualbox + a few other things. but i already have a few guest OSes running. So i backed off.

is installing getvirtualbox destructive to my existing guestOSes?

It shouldn't effect it in any way. But always be careful and make a backup!

Thanx.

Also wondering what is the difference between the rpm supplied via synaptic and getvirtualbox. Will the later be more uptodate?

Offline marcopl

  • Full Member
  • ***
  • Posts: 145
Re: Getvirtualbox--Just works with flair
« Reply #27 on: September 08, 2010, 12:05:56 AM »
running getvirtualbox now. but it seems to be downloading the non-ose editions. is this normal?

Offline Texstar

  • Administrator
  • Super Villain
  • *****
  • Posts: 12657
Re: Getvirtualbox--Just works with flair
« Reply #28 on: September 08, 2010, 12:10:18 AM »
running getvirtualbox now. but it seems to be downloading the non-ose editions. is this normal?

The virtualbox in Synaptic is the OSE edition which can be packaged and distributed. The getvirtualbox script downloads and installs the non-ose edition with usb support. Don't forget to reboot to activate usb support after installation. Also it might help if you go back and read through this thread as it explains things.

« Last Edit: September 08, 2010, 12:20:11 AM by Texstar »

Thanks to everyone who donates. You keep the servers running.
Follow me on Twitter for the latest development info.

Offline marcopl

  • Full Member
  • ***
  • Posts: 145
Re: Getvirtualbox--Just works with flair
« Reply #29 on: September 08, 2010, 12:36:19 AM »
running getvirtualbox now. but it seems to be downloading the non-ose editions. is this normal?

The virtualbox in Synaptic is the OSE edition which can be packaged and distributed. The getvirtualbox script downloads and installs the non-ose edition with usb support. Don't forget to reboot to activate usb support after installation. Also it might help if you go back and read through this thread as it explains things.


Thanx texstar. It downloaded the  PUEL version  and most importantly my guestOSes were not destroyed. They are all functional.

« Last Edit: September 08, 2010, 05:15:31 AM by old-polack »