Now, at this critical moment, when I needed to access the back up, I couldn't. My main PC is dead. My wife's laptop runs Windows 7 and is not capable of running Ximeta NDAS software (It freezes - even the version 2.72 they suggest to fix the issue). Then my other PC, where I am typing this from, is running Ubuntu 12.04 for which Ximeta does not have a driver or programs for NDisk. At least, not any installation binaries!
But there was hope. Luckily, Ximeta provides (open source) source code at https://github.com/iocellnetworks/ndas4linux/tree/master/ for Linux. Downloaded the source code (If you go to zip tab in the above page, it will download a file named ndas4linux-master.zip. The source directory has several versions. Which version to use depends on your kernel version. (To find your kernel's version, you can use uname -r). For Ubuntu 12.04, I used version 3.2.0. Though I work with large systems at work, I never venture to compile big programs at home. This time, it's different. Desperate situation require desperate measures. I ventured on compiling the driver for Linux myself. I was amazed. Huge set of files got compiled while I watched without major issues. Once the source code is compiled, we need to install and load it. Here is a list of things to do from their documents:
- Download a source tarball.
- Unpack
- CD into the right folder and run make
- Change to root or sudo make install
- Start ndas as root
- As root, or by sudo, register and enable ndas devices with ndasadmin
Apart from the documents provided, each directory inside the main folder has a README. Read these for instructions on how and where to compile. Here is a little better instructions on how to build it.
Building the software
This is really confusing, as there are many directories and many make files. To do this correctly, you need to be in the right directory. Change to ndas4linux-master/3.2.0/doc (I use 3.2.0; change to the right version) and read
how_to_export.txt first. Here is the summary of how to compile:
cd ndas4linux-master/3.2.0
make linux-rel
This creates a new directory, ndas4linux-master/3.2.0/build_x86_linux. linux-rel is one of the options. This is the final version. But, you can also build dev or debug versions. Take a look at the doc files.
Installing the software
Once you compiled, you need to install the driver and start it. Below commands do that.
cd ndas4linux-master/3.2.0/build_x86_linux/ndas-3.2.0.x86
make
The make command compiles so many files and actually builds ndasadmin and "installs" in /usr/sbin. This is the command we will use to mount NetDisk.
ndasadmin has several options. Please take a look here. To run this command, you need to be root or use sudo. If you just type sudo ndasadmin on command prompt, it will display various options available.
Starting ndas Driver
After building and installing the driver software, you need to start the driver before you can use the device.
sudo ndasadmin start
Mounting the Device
You also need to register the device serial #, before you can mount the device volumes. The readme file, how_to_use_ndasadmin.txt inside the version folder (3.2.0 in my case) lists the steps to install and run NDAS software. To register the device, you need to find the serial number (and write key) of the NetDisk device. These are available at the bottom of the box.
sudo ndasadmin register <SERIAL_NUMBER> -n NetDisk1
sudo ndasadmin enable -s 1 -o r
brings up the NetDisk volumes. NetDisk1 is just name I gave to the device. This can be anything. Also, register option have a slight variation with Serial # and Write key. See the readme file mentioned above.
First, I didn't see them come up. Then I found them listed in "Places" option in Gnome desktop menu. To see the device listing, you can use the following command:
cat /proc/ndas/devs
To disable/unmount the device, use the following commands:
sudo ndasadmin unregister -n NetDisk1
sudo ndasadmin disable -s 1 -o r
Further Help
Like I said earlier, the doc folder inside the version you are working with (ndas4linux-master/3.2.0/doc) actually contains all the instructions. Here are some of the files in that directory.
how_to_build.txt
how_to_export.txt
how_to_use_ndasadmin.txt
Note that the software seems to be constantly evolving, so it may not support all the functionalities, the actual device can support. And if you need more help, here are some links if you want to learn more about Iocell Ximeta on Linux.
- http://ndas4linux.iocellnetworks.com/
- https://github.com/iocellnetworks/ndas4linux/wiki/How-to-export-NDAS-source-for-different-architectures
- http://ndas4linux.iocellnetworks.com/trac/index.cgi/browser/ndas4linux/release
- http://ndas4linux.iocellnetworks.com/kermit/index.cgi/wiki/Usage
- http://ndas4linux.iocellnetworks.com/kermit/index.cgi/wiki/HowToBuildDEB
1 IOCell acquired Ximeta's NDAS; so you will see the names used interchangeably here and the web. See here
No comments :
Post a Comment
I will be happy to hear your comments or suggestions about this post or this site in general.