× NETGEAR will be terminating ReadyCLOUD service by July 1st, 2023. For more details click here.
Orbi WiFi 7 RBE973
Reply

Re: Running VirtualBox VM host on ReadyNAS Pro

InTheShires
Tutor

Re: Running VirtualBox VM host on ReadyNAS Pro

cmassey wrote:

Was working fine until I upgrade to T20, it stopped working after the upgrade tos so I reinstalled, and still not working.

Will keep playing and may roll back firmware to see if that fixes the issue.


4.2.17 was all I could make it work happily with. I tried the final of 4.2.19, and a couple of 4.2.20 Txx betas, but never got it running happily. I've resisted the urge to try 4.2.20 Final so far... 😐
Message 351 of 442
cmassey
Guide

Re: Running VirtualBox VM host on ReadyNAS Pro

I previously had this working on 4.2.19, just moved back and it is working fine. Will try T20 again later.
Message 352 of 442
indomiti
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

Ok, i start from beginning, kinda..

# cd /c/VirtualBox
# apt-get update
# apt-get install build-essential amd64-libs lib64stdc++6 bzip2 lib64z1 lzma
# apt-get --reinstall install libc6-amd64
# apt-get -f install
# rm -rf linux-2.6.37.6
# unzip -q RNDP6xxx_4.2.20_WW_src.zip "linux-2.6.37.6/*"
# ln -snf `pwd`/linux-2.6.37.6 /usr/src/linux
# cd linux-2.6.37.6
# cp arch/x86/configs/defconfig.smp .config
# make ARCH=x86_64 silentoldconfig
# make prepare
# make modules_prepare
# make, this warning comes at the end:
WARNING: modpost: Found 1 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'

So i do make CONFIG_DEBUG_SECTION_MISMATCH=y

# make CONFIG_DEBUG_SECTION_MISMATCH=y, this warning comes at the end:
WARNING: drivers/target/target_core_mod.o(.text+0x5cf5): Section mismatch in reference from the function init_module() to the function .init.text:rd_module_init()
The function init_module() references
the function __init rd_module_init().
This is often because init_module lacks a __init
annotation or the annotation of rd_module_init is wrong.


Could this be the cause of the problem?
Message 353 of 442
WhoCares_
Mentor

Re: Running VirtualBox VM host on ReadyNAS Pro

Why do you run the "silentoldconfig" part?

-Stefan
Message 354 of 442
indomiti
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

WhoCares? wrote:
Why do you run the "silentoldconfig" part?

-Stefan


I dont know why, i just followed j6harri's guide... it says to do "make ARCH=x86_64 silentoldconfig"
Message 355 of 442
laksmkk
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

Did anyone had a successful installation with RAIDiator-x86-4.2.20 and running VirtualBox 4.1.14? I just fallowing step by step written by jmalmlund.
Virtualbox itself install fine but when I try to install VirtualBox 4.1.14 Oracle VM VirtualBox Extension Pack is giving me errors like the people above me.
I did run
# make ARCH=x86_64
# make CONFIG_DEBUG_SECTION_MISMATCH=y
Message 356 of 442
gexxie
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

Same problem here


:/vm# sudo /usr/bin/VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.0.2-69518.vbox-extpack
WARNING: The vboxdrv kernel module is not loaded. Either there is no module
available for the current kernel (2.6.37.6.RNx86_64.2.2) or it failed to
load. Please recompile the kernel module and install it by

sudo /etc/init.d/vboxdrv setup

You will not be able to start VMs until this problem is fixed.
0%...
Progress state: NS_ERROR_FAILURE
VBoxManage: error: Failed to install "/c/vm/Oracle_VM_VirtualBox_Extension_Pack-4.0.2-69518.vbox-extpack": Extension pack 'Oracle VM VirtualBox Extension Pack'is already installed. In case of a reinstallation, please uninstall it first

NAS:/vm# sudo /etc/init.d/vboxdrv setup
Stopping VirtualBox kernel modules ...done.
Uninstalling old VirtualBox DKMS kernel modules ...done.
Trying to register the VirtualBox kernel modules using DKMS ...failed!
(Failed, trying without DKMS)
Recompiling VirtualBox kernel modules ...failed!
(Look at /var/log/vbox-install.log to find out what went wrong)

Message 357 of 442
indomiti
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

I have not found any solution to this yet.
I am not good enough to figure out whats going wrong when compiling the modules for the kernel, or if that is even the problem or not....
Message 358 of 442
itachi1
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

Hello,

I was finally able to compile the VirtualBox 4.1.14 modules on a Pro 4 with FW 4.2.20 by basing my kernel source off the vanilla 2.6.37.6 source from kernel.org and then using the kernel-build-tools that were circulating during the 4.2.20 betas to "netgearize" the source.

As detailed in alias' well-written post for USB sound modules:

http://www.readynas.com/forum/viewtopic.php?f=35&t=61970

For safety's sake, I used the T43 package rather than the T40. So my downloads were:


wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.37.6.tar.bz2
wget http://www.readynas.com/download/GPL/kernel-build-tools-x86-4.2.20-T43.tar.gz


I only did the compile steps listed in the linked post up to "make all," and skipped the

make menuconfig
make modules
make modules_install INSTALL_MOD_PATH=/
depmod -a"


but it probably wouldn't have broken it if I had run those commands...

So, from alias' post (changed "T40" to "T43"):

tar -xjf linux-2.6.37.6.tar.bz2
tar -xzf kernel-build-tools-x86-4.2.20-T43.tar.gz
mv linux-2.6.37.6/ kernel-build-tools-x86/2.6.37/
cd kernel-build-tools-x86/2.6.37/linux-2.6.37.6/
../netgearize_kernel.sh
make oldconfig
make all


Once "make all" was done for the altered source in my temp directory, I moved the official source out of the way and moved my new fresh source to my now-empty "2.6.37" directory so the system could find it - plus I didn't want to break my symlinks.

Anyway, after that, I was able to run the VirtualBox installer 4.1.14 for amd64, then I started vboxdrv service to confirm:

/etc/init.d/vboxdrv start
Starting VirtualBox kernel modules ...done.


then installed the extensions (uninstalled old ones first):

/usr/bin/VBoxManage extpack uninstall "Oracle VM VirtualBox Extension Pack"
wget http://download.virtualbox.org/virtualbox/4.1.14/Oracle_VM_VirtualBox_Extension_Pack-4.1.14-77440.vbox-extpack
/usr/bin/VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.1.14-77440.vbox-extpack


Then went to phpvboxmgr and cranked up my VM to test, and console was lit and worked.

With my particular 4.2.20 system, I had to get some packages from archive.debian.org to fill missing dependencies and to get my beloved aptitude working and a good compiling environment again. Unfortunately I can't trace exactly what I installed when, but hopefully everyone else has a sane build environment.

Thanks all for your informative posts. I was going crazy like everyone else with this broken source for 4.2.20, and thanks ReadyNAS devs for releasing the build tools during the beta--otherwise it could potentially be some time before the source might be fixed.

Happy VMing!
Message 359 of 442
shjips
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

Could someone write a noobfriendly guide how to install/update with the new firmware?

Really dont want to mess up my nas 😄
Message 360 of 442
JeIlMa
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

Hi

I really need help with reinstall virtualbox to ReadyNas Pro. I manage to get it work in 4.2.17 but now I have trying to remove it and make it work in 4.2.20. So I probably mess up my current installation.

First problem is error below (from apt-get update). I assume that it is something that I don't have to care (annoying but harmless). I'd like to fix it however...

W: GPG error: http://www.readynas.com 4.2.20/ Release: The following signatures were invalid: BADSIG B7F02108D553259A RAIDiator Release Key <admin@readynas.com>
W: You may want to run apt-get update to correct these problems

When I try to go thru section 2 I will get this error...
WARNING: modpost: Found 1 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'

It comes in both make and make modules.

If I just ignore these and try "./VirtualBox-4.1.14-77440-Linux_amd64.run"

netgear:/c/Virtualbox# ./VirtualBox-4.1.14-77440-Linux_amd64.run
Verifying archive integrity... All good.
Uncompressing VirtualBox for Linux installation...........
VirtualBox Version 4.1.14 r77440 (2012-04-12T16:28:20Z) installer
Please install the build and header files for your current Linux kernel.
The current kernel version is 2.6.37.6.RNx86_64.2.2
Problems were found which would prevent VirtualBox from installing.
Please correct these problems and try again.

It is ok to remove all virtualbox settings (I don't have any old virtualbox running) but I need to sure need some instruction to do it.

-JeIlMa
Message 361 of 442
cmassey
Guide

Re: Running VirtualBox VM host on ReadyNAS Pro

I upgraded again to 4.2.20 and still couldn't get it to work even after following the notes from itachi1, I guess I must have missed a step or did something wrong.
I think I did something wrong here:
itachi1 wrote:
tar -xjf linux-2.6.37.6.tar.bz2
tar -xzf kernel-build-tools-x86-4.2.20-T43.tar.gz
mv linux-2.6.37.6/ kernel-build-tools-x86/2.6.37/
cd kernel-build-tools-x86/2.6.37/linux-2.6.37.6/
../netgearize_kernel.sh
make oldconfig
make all


Once "make all" was done for the altered source in my temp directory, I moved the official source out of the way and moved my new fresh source to my now-empty "2.6.37" directory so the system could find it - plus I didn't want to break my symlinks.

Anyway, after that, I was able to run the VirtualBox installer 4.1.14 for amd64, then I started vboxdrv service to confirm:

/etc/init.d/vboxdrv start
Starting VirtualBox kernel modules ...done.


Anyway, moved back to 4.2.19 and re-installed virtualbox and it's working fine again, will try again this weekend.
Message 362 of 442
AMRivlin
Apprentice

Re: Running VirtualBox VM host on ReadyNAS Pro

Did you ever get it working on 4.2.20 or .21?
Message 363 of 442
cmassey
Guide

Re: Running VirtualBox VM host on ReadyNAS Pro

I never got it working, but i tried again with the 4.2.21 and got futher than I did with 4.2.20.
Give it some more time and I suspect I will get 4.2.21 working it just finding the right tweaks and settings to get it right.
The biggest difference between the 2 is this command didn't work (unzip -q RNDP6xxx_4.2.20_WW_src.zip "linux-2.6.37.6/*")
It appears to now be stored into a sub folder of the kernel directory, also arch/x86/configs/defconfig.smp didn't exist (or should I say I didn't find it so I used the one from 4.2.20)

Anyway I will keep playing with it or hope that someone with more skills than me is kind enough to type up a how to guide 🙂
Message 364 of 442
AMRivlin
Apprentice

Re: Running VirtualBox VM host on ReadyNAS Pro

cmassey wrote:


Anyway I will keep playing with it or hope that someone with more skills than me is kind enough to type up a how to guide 🙂


+1
Message 365 of 442
krylon
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

AMRivlin wrote:
cmassey wrote:


Anyway I will keep playing with it or hope that someone with more skills than me is kind enough to type up a how to guide 🙂


+1

+2!
Message 366 of 442
itachi1
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

Okay, so I got VirtualBox amd64 4.1.18 working on 4.2.21.

Sorry this isn't really a step-by-step, but kind of a "what I did" using a very abbreviated version of j6harri's post (page 23, bottom) at
http://www.readynas.com/forum/viewtopic.php?f=35&t=26468&start=330#p352009

Got the source, put it in a directory and unzipped the whole thing, but you could probably just do

unzip -q RNDP6xxx_4.2.21_WW_src.zip "kernel/*"


As far as I can tell, it's a vanilla kernel with the "netgearize" tool to make it device specific. I followed the README in the kernel directory:
Steps 1-3 immediately below are already done!

1) Grab your preferred kernel source tarball from kernel.org.
(eg. "# wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.32.4.tar.bz
2) Change to the directory that matches your selected kernel.
(eg. "# cd 2.6.32")
3) Extract it into this directory. That should leave you with a linux-2.6.xx directory.
4) Change into the new linux-2.6.xx directory.
(eg. "# cd linux-2.6.32.4")
5) Run the netgearize script.
(eg. "# ../netgearize_kernel.sh")

BUILD INSTRUCTIONS

x86_64 SMP
1) Copy the SMP defconfig file to .config.
# cp arch/x86/configs/defconfig.smp .config
2) Run 'make oldconfig'.
# make ARCH=x86_64 oldconfig
3) Build the kernel.
# make ARCH=x86_64

So under kernel/2.6.37/linux-2.6.37.6, run
../netgearize_kernel.sh

It takes about 15 seconds with 2 "Hit Enter" prompts. It appears to copy the "defconfig.smp" from the directory above to .config .
Then I ran the Build Instructions above, steps 2 & 3 only because 1 was just done.

Make sure the symlink from /usr/src/linux points to whatever directory you decide to place your fresh kernel source.
ln -snf [your kernel source directory] /usr/src/linux

./VirtualBox-4.1.18-78361-Linux_amd64.run

Everything appeared to compile okay, but I couldn't load some of the VirtualBox modules like vboxnetflt.ko until I ran "depmod" and then was able to do "/etc/init.d/vboxdrv start"

Possibly "depmod -a" might do better even though I don't think ReadyNAS includes a modules.conf file.

A reboot confirmed that the vboxdrv and the four compiled modules (list using lsmod) were being loaded at boot. Then I could install the VBox Extensions.

Like I said in a previous post, under 4.2.20 I installed various packages from the debian archive to get some of my stuff working, like aptitude and mc, so I'm not sure how my build environment compares with other users'.

Off topic, I highly recommend mc for a quick and dirty Norton Commander. It makes it pretty painless to move stuff around and quick-view things. Read the F1 help for key commands, but "ctrl-t" selects.

I hope you all can get it working. I'm absolutely no expert, but was able to get the modules to compile and load. I may be able to help with errors -- I went through so many it may be tough to remember what I did for any particular one!
Message 367 of 442
MattyShack
Tutor

Re: Running VirtualBox VM host on ReadyNAS Pro

Original Post: VBox Guide v1.0
Updated version posted below.

Thanks
###################################################################
Message 368 of 442
cmassey
Guide

Re: Running VirtualBox VM host on ReadyNAS Pro

Thanks guys!

Works like a charm 😄
Message 369 of 442
j6harri
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

@MattyShack I am running into the following issue. When I try to install aptitude and synaptic, I get the error you described from apt-get being at a higher level. But when I try to downgrade apt-get, it wants to remove dpkg, ssh. I tried this once and it is a bad thing. Had to re-install the OS since ssh was gone. Do you have any advice?

NASHOG:~# apt-get install aptitude synaptic
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
aptitude: Depends: libapt-pkg-libc6.3-6-3.11
synaptic: Depends: libapt-inst-libc6.3-6-1.1
Depends: libapt-pkg-libc6.3-6-3.11
E: Broken packages
NASHOG:~#


NASHOG:~# apt-get install apt=0.6.46*
Reading package lists... Done
Building dependency tree
Reading state information... Done
Selected version 0.6.46.4-0.1+etch1 (Debian:4.0r9/oldstable) for apt
Suggested packages:
aptitude synaptic gnome-apt wajig dpkg-dev apt-doc
The following packages will be REMOVED:
dpkg openssh-client openssh-server ssh
The following packages will be DOWNGRADED:
apt
WARNING: The following essential packages will be removed.
This should NOT be done unless you know exactly what you are doing!
dpkg
0 upgraded, 0 newly installed, 1 downgraded, 4 to remove and 26 not upgraded.
Need to get 0B/1438kB of archives.
After this operation, 10.4MB disk space will be freed.
You are about to do something potentially harmful.
To continue type in the phrase 'Yes, do as I say!'
?] no
Abort.
Message 370 of 442
MattyShack
Tutor

Re: Running VirtualBox VM host on ReadyNAS Pro

See if this helps to clear and reset installed deb packages, then downgrade apt.

Matt

#######################################################################################

### Update Sources.list ###
mv /etc/apt/sources.list /etc/apt/sources.list.bak
rm -rf /etc/apt/sources.list
##########################################
sudo sh -c "cat >> /etc/apt/sources.list" <<EOF
deb http://www.readynas.com/packages 4.2.21/
deb http://www.readynas.com/packages 4.2.22/
deb http://archive.debian.org/debian etch main

#deb http://download.virtualbox.org/virtualbox/debian squeeze contrib non-free
#deb http://backports.debian.org/debian-backports squeeze-backports main contrib non-free
EOF
##########################################
gpg --keyserver pgpkeys.mit.edu --recv-key E9C74FEEA2098A6E && gpg -a --export E9C74FEEA2098A6E | sudo apt-key add -
gpg --keyserver pgpkeys.mit.edu --recv-key 54422A4B98AB5139 && gpg -a --export 54422A4B98AB5139 | sudo apt-key add -
gpg --keyserver pgpkeys.mit.edu --recv-key AED4B06F473041FA && gpg -a --export AED4B06F473041FA | sudo apt-key add -

# Setup Root Directory Storage Area
mkdir /root/src
mkdir /root/system
cp /etc/apt/sources.list* /root/system

### Refresh Packages from the APT repository ~ may help remove BADSIG messages ###
# Clear the APT Repositories
sudo killall apt apt-get aptitude
sudo -s -H
apt-get clean
rm -rf /var/lib/apt/lists/*
chmod 755 /var/lib/apt/lists
mkdir /var/lib/apt/lists/partial
chmod 755 /var/lib/apt/lists/partial
rm -rf /var/cache/apt/archives
mkdir -p /var/cache/apt/archives/partial
apt-get clean

# Replace File Locks
rm -rf /var/lib/dpkg/lock
sudo touch /var/lib/dpkg/lock
sudo chmod 640 /var/lib/dpkg/lock
rm -rf /var/lock/aptitude
sudo touch /var/lock/aptitude
sudo chmod 640 /var/lock/aptitude
rm -rf /var/lib/apt/lists/lock
sudo touch /var/lib/apt/lists/lock
sudo chmod 640 /var/lib/apt/lists/lock
rm -rf /var/cache/apt/archives/lock
sudo touch /var/cache/apt/archives/lock
sudo chmod 640 /var/cache/apt/archives/lock

# Fresh download of Repository Packages
apt-get update && apt-get upgrade

# Say 'Y'es to any recommended Fixes. It is OK if either apt-get or dpkg will be upgraded/downgraded
# But, make sure neither apt-get nor dpkg will be removed. If so the aBORT changes.
apt-get -f install
apt-get update

# packages needed after a clean install
apt-get install nano curl


## Note: You may need to downgrade apt-get to apt_0.6.46.4-0.1+etch1_i386.deb for the correct versions of deb files.
# Raidiator 4.2.21 upgrades apt-get to apt_0.7.20.2+lenny2_i386.deb. This may cause conflicts.

# Display apt-get Version
apt-get -v

# Force apt-get and dpkg Downgrade
apt-get --reinstall install apt=0.6.46.4-0.1+etch1 dpkg=1.13.26 dpkg-dev=1.13.26

# I use aptitude most of the time. It does a better job at resolving conflicts.
apt-get install aptitude

# Setup the Build Environment
apt-get install build-essential gcc
aptitude install libmagic-dev libpcre3-dev
aptitude install unzip par2 parchive bzip2 gpp libssl-dev zlibc zlib1g-dev p7zip p7zip-full
#######################################################################################
Message 371 of 442
j6harri
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

@MattyShack

Thanks for getting me past that problem. I was able to complete the rest of your guide except for 1 option section of installing webmin. Do you have any ideas for this error.


NASHOG:/c/addons-config/VirtualBox/backup# dpkg --install webmin_1.590_all.deb
(Reading database ... 24830 files and directories currently installed.)
Unpacking webmin (from webmin_1.590_all.deb) ...
dpkg: error processing webmin_1.590_all.deb (--install):
unable to create `./usr/share/webmin/custom/help/before.de.html': No space left on device
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
webmin_1.590_all.deb
NASHOG:/c/addons-config/VirtualBox/backup# df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/md0 4185780 2446680 1529388 62% /
tmpfs 16 0 16 0% /USB
/dev/c/c 9699971712 4693302100 5006669612 49% /c
/c/backup 9699971712 4693302100 5006669612 49% /home/ftp/backup
/c/media 9699971712 4693302100 5006669612 49% /home/ftp/media
/dev/sdh1 1945752432 318645440 1627106992 17% /USB/BackupNAS
NASHOG:/c/addons-config/VirtualBox/backup#
Message 372 of 442
MattyShack
Tutor

Re: Running VirtualBox VM host on ReadyNAS Pro

If I understand this line: "unable to create `./usr/share/webmin/custom/help/before.de.html': No space left on device"

You are out of space on your "/" main partition. How much free space is reported for "/" when you type: df

If there is a space issue, try clearing out your /tmp directory then run df again to see how much space has been reclaimed. Webmin is not a requirement, so you may need to skip.
Message 373 of 442
j6harri
Aspirant

Re: Running VirtualBox VM host on ReadyNAS Pro

I cleaned up some space on /.


NASHOG:/usr/bin# df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/md0 4185780 1687404 2288664 43% /
tmpfs 16 0 16 0% /USB
/dev/c/c 9699971712 4699942940 5000028772 49% /c
/c/backup 9699971712 4699942940 5000028772 49% /home/ftp/backup
/c/media 9699971712 4699942940 5000028772 49% /home/ftp/media
/dev/sdh1 1945752432 318645440 1627106992 17% /USB/BackupNAS
NASHOG:/usr/bin# cd /c/addons-config/VirtualBox/backup/

After that I attempted the install and got the following error.


NASHOG:/c/addons-config/VirtualBox/backup# dpkg --install webmin_1.590_all.deb
(Reading database ... 24861 files and directories currently installed.)
Unpacking webmin (from webmin_1.590_all.deb) ...
dpkg: dependency problems prevent configuration of webmin:
webmin depends on libnet-ssleay-perl; however:
Package libnet-ssleay-perl is not installed.
webmin depends on libauthen-pam-perl; however:
Package libauthen-pam-perl is not installed.
webmin depends on libio-pty-perl; however:
Package libio-pty-perl is not installed.
webmin depends on apt-show-versions; however:
Package apt-show-versions is not installed.
dpkg: error processing webmin (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
webmin
NASHOG:/c/addons-config/VirtualBox/backup#


So I ran the following to clear that up and get webmin installed.


NASHOG:/c/addons-config/VirtualBox/backup# sudo apt-get install libnet-ssleay-perl libauthen-pam-perl libio-pty-perl apt-show-versions
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:
apt-show-versions: Depends: libapt-pkg-perl but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
NASHOG:/c/addons-config/VirtualBox/backup# apt-get -f install
Reading package lists... Done
Building dependency tree... Done
Correcting dependencies... Done
The following extra packages will be installed:
apt-show-versions libapt-pkg-perl libauthen-pam-perl libio-pty-perl libnet-ssleay-perl
The following NEW packages will be installed:
apt-show-versions libapt-pkg-perl libauthen-pam-perl libio-pty-perl libnet-ssleay-perl
0 upgraded, 5 newly installed, 0 to remove and 8 not upgraded.
1 not fully installed or removed.
Need to get 371kB of archives.
After unpacking 1540kB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Get:1 http://archive.debian.org etch/main libnet-ssleay-perl 1.30-1 [192kB]
Get:2 http://archive.debian.org etch/main libauthen-pam-perl 0.16-1 [32.6kB]
Get:3 http://archive.debian.org etch/main libio-pty-perl 1:1.05-2 [43.0kB]
Get:4 http://archive.debian.org etch/main libapt-pkg-perl 0.1.20 [82.0kB]
Get:5 http://archive.debian.org etch/main apt-show-versions 0.10 [22.0kB]
Fetched 371kB in 2s (144kB/s)
Selecting previously deselected package libnet-ssleay-perl.
(Reading database ... 46895 files and directories currently installed.)
Unpacking libnet-ssleay-perl (from .../libnet-ssleay-perl_1.30-1_i386.deb) ...
Selecting previously deselected package libauthen-pam-perl.
Unpacking libauthen-pam-perl (from .../libauthen-pam-perl_0.16-1_i386.deb) ...
Selecting previously deselected package libio-pty-perl.
Unpacking libio-pty-perl (from .../libio-pty-perl_1%3a1.05-2_i386.deb) ...
Selecting previously deselected package libapt-pkg-perl.
Unpacking libapt-pkg-perl (from .../libapt-pkg-perl_0.1.20_i386.deb) ...
Selecting previously deselected package apt-show-versions.
Unpacking apt-show-versions (from .../apt-show-versions_0.10_all.deb) ...
Setting up libnet-ssleay-perl (1.30-1) ...
Setting up libauthen-pam-perl (0.16-1) ...
Setting up libio-pty-perl (1.05-2) ...
Setting up libapt-pkg-perl (0.1.20) ...
Setting up apt-show-versions (0.10) ...
** initializing cache. This may take a while **

Setting up webmin (1.590) ...
Webmin install complete. You can now login to https://NASHOG:10000/
as root with your root password, or as any user who can use sudo
to run commands as root.

NASHOG:/c/addons-config/VirtualBox/backup#


Thanks so much the @MattyShack for the great step-by-step.
Message 374 of 442
TeknoJnky
Hero

Re: Running VirtualBox VM host on ReadyNAS Pro

looks like virtualbox 4.2 final is out

http://www.oracle.com/us/corporate/press/1842885
Message 375 of 442
Top Contributors
Announcements