You can now play with SliTaz GNU/Linux on Windows with VirtualBox. Required:
Before running SliTaz GNU/Linux virtual machine you need to configure a new virtual machine in the VirtualBox software.
If you wish to set up a network using the Host-only adapter, follow these instructions:
The default Intel adapter seems to work fine for NAT, but not for Host-only networking.
You can now play with your new SliTaz GNU/Linux virtual machine.
You can install the open source edition of virtualbox (free software) in SliTaz with the package virtualbox-ose:
# tazpkg get-install virtualbox-ose
This is a restricted version without USB support.
You can install virtualbox (full, but non-free version) in Slitaz with the get-virtualbox package:
# tazpkg get-install get-virtualbox ; get-virtualbox
Other virtualization (free software) is also available such as lguest or qemu.
See guest additions for SliTaz 4.0 in the forum also.
Virtualbox Guest Additions needs to be manually installed by Slitaz.
Steps:
1. In the Slitaz virtual machine make sure you have a working internet connection. Sometimes you need to stop/restart eth0 using TazPanel (Slitaz Panel) the first time to get a connection.
2. Open Package Manager and recharge the package list.
3. Install the following packages:
linux-module-headers (3.2.53) mesa-dri bzip2
4. Mount the VBoxAdditions iso using the VirtualBox menu option Devices → Insert Guest Additions CD image…
5. In a terminal, change directory to the mount point for the VBoxAdditions iso, e.g.
$ cd /media/cdrom/
6. Run as root the following command:
# sh ./VBoxLinuxAdditions.run
Ignore text about scripts added to /etc/init.d (installer does not recognize your Linux Distribution etc). Ignore text about kernel headers for current running version not found.
7. Open a terminal as root and issue the following commands:
# adduser -h /var/run/vboxadd -G daemon -S -s /bin/false vboxadd >/dev/null 2>&1 # addgroup -S vboxsf >/dev/null 2>&1
8. Open as root /etc/rcS.conf and add “vboxguest vboxsf vboxvideo” to the LOAD_MODULES line, e.g.
LOAD_MODULES=" vboxguest vboxsf vboxvideo"
9. Open as root /etc/slim.conf and change the login_cmd line to start VBoxClient-all before it executes ~./xinitrc, e.g.
login_cmd VBoxClient-all & exec /bin/sh -l ~/.xinitrc %session
10. Reboot.
To check that the vbox modules are loaded, open a terminal and type:
$ lsmod | grep vbox
… that should show:
vboxguest vboxsf vboxvideo
(as well as drm using vboxvideo)
Also, you can install the mesa-demos package to get the glxgears and glxinfo utilities. After you install mesa-demos, open a terminal and type:
$ glxinfo | grep render
… that should show:
direct rendering: Yes OpenGL renderer string: Chromium
glxinfo and glxgears will show a false error:
libGL error: failed to load driver: vboxvideo
… which according to the VirtualBox bugtracker is due to the way vboxvideo hooks itself into the Mesa library instead of being loaded in the normal way by Mesa. So ignore it… If you have OpenGL render = Chromium and Direct rendering = Yes then accelerated 3D is supported.
Clipboard sharing Host↔Guest works if you enable it in the VirtualBox menus or in your virtual machine settings.
Shared folders work (The author manually mounts the shared folders as and when he needs them). For instance, if you wanted to mount the (hypothetical) share called pubdoc and access it as a desktop folder called Docs (make sure the folder exists first) then you issue the following command in a terminal as root:
# mount -t vboxsf pubdoc /home/tux/Desktop/Docs
References: Slitaz Forum topic
Page Review Section | |
---|---|
Quality | Low |
Review | Major Updates ![]() |
Priority | Medium |
Problems | add a forum post link |
OR add a lab issue tracker link | |
How to Improve | We have get-virtualbox pkg now? Can we remove linux-source dependency from get-virtualbox like nvidia? |