NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
chirpa
Mar 07, 2009Luminary
Running VirtualBox VM host on ReadyNAS Pro
What is VirtualBox?
So, I got bored while laundry was going... and decided to see how well a virtual OS would run on the Pro. My first choice of VM was VirtualBox, just cause I'm familiar with it after using it for ages, plus its open and free :) Eventually, I may look into VMWare as well.
After a bit of messing around, got it installed. Since the system is based off of Debian, was easy to get VirtualBox itself there (deb package). The trickiest part was getting the kernel modules required installed (see end of post).
In the end, I've got Windows 2003 R2 running on my Pro, interacting with it via RDP, and I am happy with the performance. I've added an extra 1GB memory (for a total of 2GB). I assigned 1GB of ram to my virtual OS, which still leaves the default configuration of 1GB for the NAS itself (which is more than enough still, 800MB+ is always cached).
I made a 10GB virtual disk to install the OS on. If I need more space later for extra applications, I can just add another virtual drive to that installation. And since I always like a bit extra security, I went a bit beyond the usual, and also have TrueCrypt running full disk encryption in the virtual OS. So no one can even boot and read the data in that OS without my bootup password.
I don't really have any screenshots to show, just a standard Windows installation. Here is a few of the steps I used while creating the VM on the console:
VirtualBox 3.1 has changed the CLI configuration. Until I update this how-to, please reference this: http://www.uhleeka.com/blog/2009/12/vir ... 9-04-host/
With the OS booted up and just sitting at the desktop, top reports:
Ad-hoc installation of VirtualBox. Should work for RAIDiator 4.2.4. Download links for the kernel modules, for those who don't want to go through the mess of compiling them.
So, I got bored while laundry was going... and decided to see how well a virtual OS would run on the Pro. My first choice of VM was VirtualBox, just cause I'm familiar with it after using it for ages, plus its open and free :) Eventually, I may look into VMWare as well.
After a bit of messing around, got it installed. Since the system is based off of Debian, was easy to get VirtualBox itself there (deb package). The trickiest part was getting the kernel modules required installed (see end of post).
In the end, I've got Windows 2003 R2 running on my Pro, interacting with it via RDP, and I am happy with the performance. I've added an extra 1GB memory (for a total of 2GB). I assigned 1GB of ram to my virtual OS, which still leaves the default configuration of 1GB for the NAS itself (which is more than enough still, 800MB+ is always cached).
I made a 10GB virtual disk to install the OS on. If I need more space later for extra applications, I can just add another virtual drive to that installation. And since I always like a bit extra security, I went a bit beyond the usual, and also have TrueCrypt running full disk encryption in the virtual OS. So no one can even boot and read the data in that OS without my bootup password.
I don't really have any screenshots to show, just a standard Windows installation. Here is a few of the steps I used while creating the VM on the console:
VirtualBox 3.1 has changed the CLI configuration. Until I update this how-to, please reference this: http://www.uhleeka.com/blog/2009/12/vir ... 9-04-host/
# Creating the Virtual Machine.
$ VBoxManage createvm -name "Windows2003" -register
$ VBoxManage modifyvm "Windows2003" -memory "1024MB" -acpi on -boot1 dvd -nic1 nat
$ VBoxManage createvdi -filename "/c/backup/VirtualBox/Windows2003.vdi" -size 10000 -register
$ VBoxManage modifyvm "Windows2003" -hda "/c/backup/VirtualBox/Windows2003.vdi"
$ VBoxManage registerimage dvd /c/backup/VirtualBox/Windows2003Ent.iso
$ VBoxManage modifyvm "Windows2003" -dvd /c/backup/VirtualBox/Windows2003Ent.iso
$ VBoxHeadless -startvm "Windows2003" &
# Connected via Remote Desktop at this point.
# After the installation, first page requires Ctrl-Alt-Del, so I sent the keycodes.
$ VBoxManage controlvm "Windows2003" keyboardputscancode 1d 38 53
# System is up and running, time to install GuestAdditions for better video, etc.
$ wget http://download.virtualbox.org/virtualbox/2.2.2/VBoxGuestAdditions_2.2.2.iso
$ VBoxManage registerimage dvd /c/backup/VirtualBox/VBoxGuestAdditions_2.2.2.iso
$ VBoxManage controlvm "Windows2003" dvdattach /c/backup/VirtualBox/VBoxGuestAdditions_2.2.2.iso
With the OS booted up and just sitting at the desktop, top reports:
top - 16:17:10 up 1 day, 17:58, 1 user, load average: 0.00, 0.01, 0.00
Tasks: 93 total, 1 running, 92 sleeping, 0 stopped, 0 zombie
Cpu(s): 0.7%us, 0.2%sy, 0.0%ni, 99.2%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
Mem: 2072432k total, 2020100k used, 52332k free, 6120k buffers
Swap: 1048536k total, 144k used, 1048392k free, 784620k cached
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
10297 root 20 0 1104m 1.0g 4720 S 4 52.5 57:31.53 VBoxHeadless
12792 root 20 0 46092 9520 1720 S 1 0.5 59:54.51 motion
12196 root 20 0 9196 7688 980 S 0 0.4 0:57.72 wastesrv
1 root 20 0 1948 600 508 S 0 0.0 0:01.30 init
Ad-hoc installation of VirtualBox. Should work for RAIDiator 4.2.4. Download links for the kernel modules, for those who don't want to go through the mess of compiling them.
$ mkdir /lib/modules/`uname -r`/miscOr, if you want to compile the kernel modules yourself:
$ cd /lib/modules/`uname -r`/misc
$ wget http://www.readynas.com/contributed/chirpa/modules/virtualbox/pro/vboxdrv.ko
$ wget http://www.readynas.com/contributed/chirpa/modules/virtualbox/pro/vboxnetflt.ko
$ echo "deb http://download.virtualbox.org/virtualbox/debian etch non-free" >> /etc/apt/sources.list
$ wget -q http://download.virtualbox.org/virtualbox/debian/sun_vbox.asc -O- | apt-key add -
$ apt-get update
$ apt-get install virtualbox-2.1
$ /etc/init.d/vboxdrv start
envyious:/c/backup# echo "deb http://download.virtualbox.org/virtualbox/debian etch non-free" >> /etc/apt/sources.listInstall of VirtualBox 2.2.2, before Sun updates the Debian Repository...
envyious:/c/backup# wget -q http://download.virtualbox.org/virtualbox/debian/sun_vbox.asc -O- | apt-key add -
envyious:/c/backup# apt-get update && apt-get install build-essential
...
Setting up build-essential (11.3) ...
envyious:/c/backup# wget -q http://www.readynas.com/download/GPL/RNDP6xxx_4.2.4_WW_src.zip
envyious:/c/backup# unzip -q RNDP6xxx_4.2.4_WW_src.zip -d ./GPL
envyious:/c/backup# cd GPL/linux-x86-2.6/
envyious:/c/backup/GPL/linux-x86-2.6# make && make prepare
...
envyious:/c/backup/GPL/linux-x86-2.6# ln -s /c/backup/GPL/linux-x86-2.6/ /usr/src/linux
envyious:/c/backup/GPL/linux-x86-2.6# KERN_DIR=/usr/src/linux
envyious:/c/backup/GPL/linux-x86-2.6# apt-get install virtualbox-2.1
...
Setting up virtualbox-2.1 (2.1.4-42893_Debian_etch) ...
Adding group `vboxusers' (GID 101) ...
Done.
Messages emitted during module compilation will be logged to /var/log/vbox-install.log.
Success!
Starting VirtualBox kernel module: done.
envyious:/c/backup/GPL/linux-x86-2.6# cd
envyious:/c/backup/GPL/linux-x86-2.6# VBoxManage list vms
VirtualBox Command Line Management Interface Version 2.1.4
(C) 2005-2009 Sun Microsystems, Inc.
All rights reserved.
# wget -q http://www.readynas.com/download/GPL/RNDP6xxx_4.2.4_WW_src.zip
# unzip -q RNDP6xxx_4.2.4_WW_src.zip -d ./GPL
# cd GPL/linux-x86-2.6/
# make && make prepare
# ln -s /c/backup/GPL/linux-x86-2.6/ /usr/src/linux
# export KERN_DIR=/usr/src/linux
# apt-get install libfontconfig1 libglib2.0-0 libice6 libsdl1.2debian libsm6 libx11-6 libxcursor1 libxext6 libxi6 libxmu6 libxrandr2 libxrender1 libxslt1.1 libxt6 python2.4
# wget -q http://download.virtualbox.org/virtualbox/2.2.2/virtualbox-2.2_2.2.2-46594_Debian_etch_i386.deb
# dpkg -i virtualbox-2.2_2.2.2-46594_Debian_etch_i386.deb
Setting up virtualbox-2.2 (2.2.2-46594_Debian_etch) ...
Recompiling VirtualBox kernel module: done.
Starting VirtualBox kernel module: done.
441 Replies
Replies have been turned off for this discussion
- chirpaLuminary
Nintendo Wii also does virtual boxing ;)TeknoJnky wrote: Man, I want a pro now just to mess around with virtual boxing. :cry: - starg4zeAspirant
chirpa wrote:
Nintendo Wii also does virtual boxing ;)TeknoJnky wrote: Man, I want a pro now just to mess around with virtual boxing. :cry:
From my own experience...with a friend and some(a lot...) good Islay-whisky...Wii-boxing can be pretty physical...
/Starg4ze, recovered from a blue eye. :hammer: - starg4zeAspirantWhat FW do you guys run on the PRO?
- dbott67GuideThe council just released 4.2.4, but I was successful using beta T43.
http://www.readynas.com/?page_id=1004 - starg4zeAspirant
dbott67 wrote: The council just released 4.2.4, but I was successful using beta T43.
http://www.readynas.com/?page_id=1004
And you followed chirpas quick install in the first post?
I'm getting quite alot of dependency-problems when running the apt-get install command:
Im running 4.2.3 release. However... if do a ls in the /lib/modules, I have a folder called 2.6.27.6.RNx86.1.1 and when I do a uname -r, I get 2.6.27.6.RNx86.1.2...something is not right here...
Nas:/lib/modules/2.6.27.6.RNx86.2.1/misc# apt-get install virtualbox-2.1
Reading package lists... Done
Building dependency tree... Done
You might want to run `apt-get -f install' to correct these:
The following packages have unmet dependencies:
libsigc++-2.0-dev: Depends: pkg-config but it is not going to be installed
Depends: libstdc++-dev
squeezecenter-readynas: Depends: sox but it is not going to be installed
Depends: libvorbisenc2 but it is not going to be installed
Depends: libvorbisfile3 but it is not going to be installed
virtualbox-2.1: Depends: libfontconfig1 (>= 2.4.0) but it is not going to be installed
Depends: libglib2.0-0 (>= 2.12.0) but it is not going to be installed
Depends: libice6 (>= 1:1.0.0) but it is not going to be installed
Depends: libsdl1.2debian (>= 1.2.10-1) but it is not going to be installed
Depends: libsm6 but it is not going to be installed
Depends: libx11-6 but it is not going to be installed
Depends: libxcursor1 (> 1.1.2) but it is not going to be installed
Depends: libxext6 but it is not going to be installed
Depends: libxfixes3 (>= 1:4.0.1) but it is not going to be installed
Depends: libxi6 but it is not going to be installed
Depends: libxinerama1 but it is not going to be installed
Depends: libxmu6 but it is not going to be installed
Depends: libxrandr2 but it is not going to be installed
Depends: libxrender1 but it is not going to be installed
Depends: libxslt1.1 (>= 1.1.18) but it is not going to be installed
Depends: libxt6 but it is not going to be installed
Depends: python2.4 (>= 2.3.90) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution). - super_poussinVirtuosodid you do an apt-get update before ?
- starg4zeAspirant
super-poussin wrote: did you do an apt-get update before ?
Yes, I did. I followed chirpas "install-guide" to the letter.
What FW-release are you using? - dbott67GuideHere's my kernel:
Prometheus:~# uname -r
2.6.27.6.RNx86.2.1
Try updating to 4.2.4, as I was not successful using one of the 4.2.4 betas (T38), I think.
When I tried running the /etc/init.d/vboxdrv start command, I got an error:Prometheus:~# /etc/init.d/vboxdrv start
Starting VirtualBox kernel module:
* No suitable module for running kernel found
chirpa then told me to try the following:Prometheus:/lib/modules/2.6.27.6.RNx86.2.1/misc# insmod vboxdrv.ko
Prometheus:/lib/modules/2.6.27.6.RNx86.2.1/misc# insmod vboxnetflt.ko
(side note: for some strange reason vboxdrv.ko was missing, so I had to re-download it)Prometheus:/lib/modules/2.6.27.6.RNx86.2.1/misc# /etc/init.d/vboxdrv start
Starting VirtualBox kernel module: done.
Here's my output from SSH:Prometheus:/lib/modules/2.6.27.6.RNx86.2.1/misc# apt-get install virtualbox-2.1
Reading package lists... Done
Building dependency tree... Done
The following extra packages will be installed:
defoma fontconfig-config libasound2 libdirectfb-0.9-25 libfontconfig1
libglib2.0-0 libice6 libnewt0.52 libsdl1.2debian libsdl1.2debian-alsa libsm6
libsvga1 libx11-6 libx11-data libxau6 libxcursor1 libxdmcp6 libxext6
libxfixes3 libxi6 libxinerama1 libxmu6 libxrandr2 libxrender1 libxslt1.1
libxt6 python2.4 python2.4-minimal svgalibg1 ttf-dejavu whiptail x11-common
Suggested packages:
defoma-doc psfontmgr x-ttcidfont-conf dfontmgr libasound2-plugins
python2.4-doc python-profiler
Recommended packages:
libft-perl libglib2.0-data libfribidi0 libpulse0 libsdl-ttf2.0-0
linux-headers gcc make binutils libhal1 pdf-viewer libgl1
The following NEW packages will be installed:
defoma fontconfig-config libasound2 libdirectfb-0.9-25 libfontconfig1
libglib2.0-0 libice6 libnewt0.52 libsdl1.2debian libsdl1.2debian-alsa libsm6
libsvga1 libx11-6 libx11-data libxau6 libxcursor1 libxdmcp6 libxext6
libxfixes3 libxi6 libxinerama1 libxmu6 libxrandr2 libxrender1 libxslt1.1
libxt6 python2.4 python2.4-minimal svgalibg1 ttf-dejavu virtualbox-2.1
whiptail x11-common
0 upgraded, 33 newly installed, 0 to remove and 24 not upgraded.
Need to get 50.4MB of archives.
After unpacking 108MB of additional disk space will be used.
Do you want to continue [Y/n]?
Get:1 http://download.virtualbox.org etch/non-free virtualbox-2.1 2.1.4-42893_Debian_etch [38.7MB]
Get:2 http://ftp.debian.org etch/main x11-common 1:7.1.0-19 [338kB]
Get:3 http://ftp.debian.org etch/main libxau6 1:1.0.1-2 [6986B]
Get:4 http://ftp.debian.org etch/main libxdmcp6 1:1.0.1-2 [10.7kB]
Get:5 http://ftp.debian.org etch/main libx11-data 2:1.0.3-7 [157kB]
Get:6 http://ftp.debian.org etch/main libx11-6 2:1.0.3-7 [567kB]
Get:7 http://ftp.debian.org etch/main libxfixes3 1:4.0.1-5 [9304B]
Get:8 http://ftp.debian.org etch/main libice6 1:1.0.1-2 [42.6kB]
Get:9 http://ftp.debian.org etch/main libsm6 1:1.0.1-3 [18.0kB]
Get:10 http://ftp.debian.org etch/main libxt6 1:1.0.2-2 [154kB]
Get:11 http://ftp.debian.org etch/main libnewt0.52 0.52.2-10 [64.1kB]
Get:12 http://ftp.debian.org etch/main whiptail 0.52.2-10 [34.7kB]
Get:13 http://ftp.debian.org etch/main defoma 0.11.10-0.1 [100kB]
Get:14 http://ftp.debian.org etch/main ttf-dejavu 2.15-1 [3488kB]
Get:15 http://ftp.debian.org etch/main fontconfig-config 2.4.2-1.2 [149kB]
Get:16 http://ftp.debian.org etch/main libfontconfig1 2.4.2-1.2 [208kB]
Get:17 http://ftp.debian.org etch/main libglib2.0-0 2.12.4-2 [504kB]
Get:18 http://ftp.debian.org etch/main libasound2 1.0.13-2 [346kB]
Get:19 http://ftp.debian.org etch/main libdirectfb-0.9-25 0.9.25.1-5 [835kB]
Get:20 http://ftp.debian.org etch/main libsvga1 1:1.4.3-24 [311kB]
Get:21 http://ftp.debian.org etch/main svgalibg1 1:1.4.3-24 [762B]
Get:22 http://ftp.debian.org etch/main libsdl1.2debian-alsa 1.2.11-8 [209kB]
Get:23 http://ftp.debian.org etch/main libsdl1.2debian 1.2.11-8 [20.8kB]
Get:24 http://ftp.debian.org etch/main libxrender1 1:0.9.1-3 [21.1kB]
Get:25 http://ftp.debian.org etch/main libxcursor1 1.1.7-4 [23.8kB]
Get:26 http://ftp.debian.org etch/main libxext6 1:1.0.1-2 [24.6kB]
Get:27 http://ftp.debian.org etch/main libxi6 1:1.0.1-4 [16.7kB]
Get:28 http://ftp.debian.org etch/main libxinerama1 1:1.0.1-4.1 [6046B]
Get:29 http://ftp.debian.org etch/main libxmu6 1:1.0.2-2 [46.7kB]
Get:30 http://ftp.debian.org etch/main libxrandr2 2:1.1.0.2-5 [7776B]
Get:31 http://ftp.debian.org etch/main libxslt1.1 1.1.19-3 [216kB]
Get:32 http://ftp.debian.org etch/main python2.4-minimal 2.4.4-3+etch2 [902kB]
Get:33 http://ftp.debian.org etch/main python2.4 2.4.4-3+etch2 [2851kB]
Fetched 50.4MB in 3m49s (220kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously deselected package x11-common.
(Reading database ... 16682 files and directories currently installed.)
Unpacking x11-common (from .../x11-common_1%3a7.1.0-19_i386.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.1-2_i386.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.1-2_i386.deb) ...
Setting up x11-common (7.1.0-19) ...
Selecting previously deselected package libx11-data.
(Reading database ... 16727 files and directories currently installed.)
Unpacking libx11-data (from .../libx11-data_2%3a1.0.3-7_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.0.3-7_i386.deb) ...
Selecting previously deselected package libxfixes3.
Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.1-5_i386.deb) ...
Selecting previously deselected package libice6.
Unpacking libice6 (from .../libice6_1%3a1.0.1-2_i386.deb) ...
Selecting previously deselected package libsm6.
Unpacking libsm6 (from .../libsm6_1%3a1.0.1-3_i386.deb) ...
Selecting previously deselected package libxt6.
Unpacking libxt6 (from .../libxt6_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package libnewt0.52.
Unpacking libnewt0.52 (from .../libnewt0.52_0.52.2-10_i386.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.52.2-10_i386.deb) ...
Selecting previously deselected package defoma.
Unpacking defoma (from .../defoma_0.11.10-0.1_all.deb) ...
Selecting previously deselected package ttf-dejavu.
Unpacking ttf-dejavu (from .../ttf-dejavu_2.15-1_all.deb) ...
Selecting previously deselected package fontconfig-config.
Unpacking fontconfig-config (from .../fontconfig-config_2.4.2-1.2_all.deb) ...
Selecting previously deselected package libfontconfig1.
Unpacking libfontconfig1 (from .../libfontconfig1_2.4.2-1.2_i386.deb) ...
Selecting previously deselected package libglib2.0-0.
Unpacking libglib2.0-0 (from .../libglib2.0-0_2.12.4-2_i386.deb) ...
Selecting previously deselected package libasound2.
Unpacking libasound2 (from .../libasound2_1.0.13-2_i386.deb) ...
Selecting previously deselected package libdirectfb-0.9-25.
Unpacking libdirectfb-0.9-25 (from .../libdirectfb-0.9-25_0.9.25.1-5_i386.deb) ...
Selecting previously deselected package libsvga1.
Unpacking libsvga1 (from .../libsvga1_1%3a1.4.3-24_i386.deb) ...
Selecting previously deselected package svgalibg1.
Unpacking svgalibg1 (from .../svgalibg1_1%3a1.4.3-24_all.deb) ...
Selecting previously deselected package libsdl1.2debian-alsa.
Unpacking libsdl1.2debian-alsa (from .../libsdl1.2debian-alsa_1.2.11-8_i386.deb) ...
Selecting previously deselected package libsdl1.2debian.
Unpacking libsdl1.2debian (from .../libsdl1.2debian_1.2.11-8_i386.deb) ...
Selecting previously deselected package libxrender1.
Unpacking libxrender1 (from .../libxrender1_1%3a0.9.1-3_i386.deb) ...
Selecting previously deselected package libxcursor1.
Unpacking libxcursor1 (from .../libxcursor1_1.1.7-4_i386.deb) ...
Selecting previously deselected package libxext6.
Unpacking libxext6 (from .../libxext6_1%3a1.0.1-2_i386.deb) ...
Selecting previously deselected package libxi6.
Unpacking libxi6 (from .../libxi6_1%3a1.0.1-4_i386.deb) ...
Selecting previously deselected package libxinerama1.
Unpacking libxinerama1 (from .../libxinerama1_1%3a1.0.1-4.1_i386.deb) ...
Selecting previously deselected package libxmu6.
Unpacking libxmu6 (from .../libxmu6_1%3a1.0.2-2_i386.deb) ...
Selecting previously deselected package libxrandr2.
Unpacking libxrandr2 (from .../libxrandr2_2%3a1.1.0.2-5_i386.deb) ...
Selecting previously deselected package libxslt1.1.
Unpacking libxslt1.1 (from .../libxslt1.1_1.1.19-3_i386.deb) ...
Selecting previously deselected package python2.4-minimal.
Unpacking python2.4-minimal (from .../python2.4-minimal_2.4.4-3+etch2_i386.deb) ...
Selecting previously deselected package python2.4.
Unpacking python2.4 (from .../python2.4_2.4.4-3+etch2_i386.deb) ...
Selecting previously deselected package virtualbox-2.1.
Unpacking virtualbox-2.1 (from .../virtualbox-2.1_2.1.4-42893%5fDebian%5fetch_i386.deb) ...
Setting up libxau6 (1.0.1-2) ...
Setting up libxdmcp6 (1.0.1-2) ...
Setting up libx11-data (1.0.3-7) ...
Setting up libx11-6 (1.0.3-7) ...
Setting up libxfixes3 (4.0.1-5) ...
Setting up libice6 (1.0.1-2) ...
Setting up libsm6 (1.0.1-3) ...
Setting up libxt6 (1.0.2-2) ...
Setting up libnewt0.52 (0.52.2-10) ...
Setting up whiptail (0.52.2-10) ...
Setting up defoma (0.11.10-0.1) ...
Setting up ttf-dejavu (2.15-1) ...
Setting up fontconfig-config (2.4.2-1.2) ...
Setting up libfontconfig1 (2.4.2-1.2) ...
Setting up libglib2.0-0 (2.12.4-2) ...
Setting up libasound2 (1.0.13-2) ...
Setting up libdirectfb-0.9-25 (0.9.25.1-5) ...
Setting up libsvga1 (1.4.3-24) ...
Setting up svgalibg1 (1.4.3-24) ...
Setting up libsdl1.2debian-alsa (1.2.11-8) ...
Setting up libsdl1.2debian (1.2.11-8) ...
Setting up libxrender1 (0.9.1-3) ...
Setting up libxcursor1 (1.1.7-4) ...
Setting up libxext6 (1.0.1-2) ...
Setting up libxi6 (1.0.1-4) ...
Setting up libxinerama1 (1.0.1-4.1) ...
Setting up libxmu6 (1.0.2-2) ...
Setting up libxrandr2 (1.1.0.2-5) ...
Setting up libxslt1.1 (1.1.19-3) ...
Setting up python2.4-minimal (2.4.4-3+etch2) ...
Linking and byte-compiling packages for runtime python2.4...
Setting up python2.4 (2.4.4-3+etch2) ...
Setting up virtualbox-2.1 (2.1.4-42893_Debian_etch) ...
Adding group `vboxusers' (GID 101) ...
Done.
Messages emitted during module compilation will be logged to /var/log/vbox-install.log.
Starting VirtualBox kernel module:
* No suitable module for running kernel found
Prometheus:/lib/modules/2.6.27.6.RNx86.2.1/misc# - starg4zeAspirantHmmm...looks like my dependencies does not install. I'm not a apt-get-master, but maybe someone on the community knows? apt-get have always worked great on my different linux-boxes I've been using. How does your /etc/apt/sources.list look like?
- starg4zeAspirantOK I found the problem.
I had a few dependencies connected to squeeze-center. once I resolved those with apt-get -f install, Virtualbox installaed fine.
So: Dont have any unsolved dependencies before trying to install VB.
Related Content
NETGEAR Academy

Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!