That seems to be the answer I am looking for. Will you please instruct me how to make VirtualBox-1.6.4-Linux_amd64.run file executable? Do you copy VirtualBox-1.6.4-Linux_amd64.run to a specific location before running it? When it runs, does it automatically replace the existing library files? I basically need to know how to do what you did.
Save location really doesn't matter - I have a separate directory in which I save all downloads
If you are using Konqueror (or similar graphical file manager), simply right-click, select "Properties", click the "permissions" tab and check the "Is executable" checkbox (just below the three drop-downs).
Open a terminal emulator (In Konqueror, it's Window-->Show Terminal Emulator). Then into the emulator window (which should be the same as the directory you're looking at), type
Code: Select all
su
./ VirtualBox-1.6.4-Linux_amd64.run
exit
Alternativel;y, quicker and easier, in a terminal window,
Code: Select all
cd <location of downloaded file>
su
sh ./ VirtualBox-1.6.4-Linux_amd64.run
exit
The second method doesn't require you to change permissions
And yes, from what I read in the terminal, all it does is replace the libraries and add a menu item.