Page 1 of 1

How to install VirtualBox on Salix 14.2 32-bit ?

Posted: 11. Sep 2020, 18:22
by salix_user
Hi.
How to install VirtualBox on Salix 14.2 32-bit ?
Can someone describe this step-by-step ?

Re: How to install VirtualBox on Salix 14.2 32-bit ?

Posted: 12. Sep 2020, 15:30
by gapan
Virtualbox doesn't offer any 32bit binaries, so the easy way to do it is simply not available.

That leaves compiling from source as the only option. You could probably do it, using the respective SlackBuild from SBo.

You'll definitely need to upgrade your kernel to the latest available first, if you don't already have it:

Code: Select all

sudo slapt-get --update
sudo slapt-get --install  kernel-huge-smp kernel-modules-smp kernel-headers kernel-firmware
make sure you update LILO if you're using it:

Code: Select all

sudo lilo -v
and reboot.
Also install the kernel-source package

Code: Select all

sudo slapt-get -i kernel-source
and then you should be able to install virtualbox either from the terminal:

Code: Select all

sudo slapt-src -u
sudo slapt-src -i virtualbox
or through the Sourcery GUI (in the System menu). It should probably take a very long time to build. I've never done it myself.

The virtualbox you'll get this way would be limited in any case. You won't be able to run any 64bit operating systems I guess, but that's a limitation of your architecture.

If any errors come up, post them here and we'll see what we can do.

Re: How to install VirtualBox on Salix 14.2 32-bit ?

Posted: 12. Sep 2020, 17:32
by salix_user
Thanks !
I will try.