NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
horim80
Nov 22, 2013Guide
Virtualbox on OS6 NAS
Hi all, I know that it's possible to install VirtualBox on legacy x86 NAS. What about OS6? Does anyone knows how to install VirtualBox on OS6? Thanks.
cmassey
Jul 05, 2014Guide
I've just installed VirtualBox on my ReadyNAS 516 with VT-x support. This was a clean fresh out of the box NAS without any other apps or programs installed.
Here are the instructions I used, I am more of a weekend warrior when it comes to linux so I reserve the right to make errors below but it worked perfectly for me.
Here are the instructions I used, I am more of a weekend warrior when it comes to linux so I reserve the right to make errors below but it worked perfectly for me.
# Installing VirtualBox (4.3.12-93733) on ReadyNAS OS6 (6.1.8)
# feel free and make changes to this as required
# Thanks to JMehring http://www.readynas.com/forum/viewtopic.php?p=412063#p412063
# and Matty Shack http://www.readynas.com/forum/viewtopic.php?f=35&t=72178&p=419623
#
apt-get update
apt-get install build-essential
apt-get install vim git lm-sensors telnet
# Install ReadyNas kernel headers from
# *** MAKE SURE ITS FOR THE CORRECT KERNEL (uname -a) ***
# http://kb.netgear.com/app/answers/detail/a_id/2649/~/gpl-open-source-code-for-programmers
mkdir tmp
mv ReadyNASOS_V6.1.8_WW_src.zip tmp
cd tmp
unzip ReadyNASOS_V6.1.8_WW_src.zip
cp -rp linux-3.0.101-0.15 /data/.apps
ln -s /data/.apps/linux-3.0.101-0.15 /usr/src/linux-3.0.101-0.15
# Need to build kernel since autoconf.h is not in include/generated/autoconf.h yet
export KERN_DIR=/usr/src/linux-3.0.101-0.15
cd /usr/src/linux-3.0.101-0.15
make ARCH=x86_64 oldconfig && make ARCH=x86_64
# More virtualbox dependancies
apt-get install libqt4-opengl libvpx1
# Get the latest from virtualbox.org (debian build) and run the command below from the path containing the virtualbox .deb file
dpkg -i virtualbox-4.3_4.3.12-93733~Debian~wheezy_amd64.deb
# Run this to fix missing dependancies if the line above flags any (I needed to)
apt-get -f install
# Configure vboxdrv & modules
/etc/init.d/vboxdrv setup
modprobe vboxdrv
modinfo misc/vboxdrv.ko
# Installing the extension pack. Just to be safe, run the uninstall first.
VBoxManage extpack uninstall "Oracle VM VirtualBox Extension Pack"
VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.3.12-93733.vbox-extpack
## OPTIONAL settings for VirtualBox (4.3.12-93733)
## OPTIONAL ## Due to space/permission limitations of /root/VirtualBox VMs/ this will setup a symbolic link to a hidden shared I created called VirtualBox
cd ~/
rm -rf VirtualBox\ VMs
ln -s /data/VirtualBox ~/VirtualBox\ VMs
## OPTIONAL ## Export existing VM (This needs to be done on the current host of the VM)
vboxmanage export "VM_NAME" -o VM_NAME.ova
## OPTIONAL ## Importing VM (first line is just a dry run with listing options you can change during import)
vboxmanage import VM_NAME.ova --dry-run -n
vboxmanage import VM_NAME.ova --options
## OPTIONAL ## Don't forget to update the guest additions if you were running an older version
## Start VM ##
Related Content
NETGEAR Academy

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