LaCie Network Space Users Unite!
Fellow LaCie Network Space users, not doubt, many of you, like myself, purchased this NAS thinking it could be tweaked, configurated and hacked. Perhaps most of you have realised this is not the case. The LaCie resembles a brick that stares at you stupidly as you try to figure out what it does and how far you can push it.
If you have tried to contact LaCie customer service, you may have realised why the LaCie stares at you like a dumb brick.
So, let us pool our resources and knowledge to crack the LaCie open and hack it to our licking.
I have been searching the web for Network Space related info and would appreciate any info fellow users might have to add.
There is a Wiki over at nas-central.org that you should help populate!
If you have any tips, tricks, ideas, info on the LaCie Network Space, make sure to add it to the wiki. Let us pool our resources and knowledge to be able to gain the freedom to manage, hack, use and extend out LaCie Network Space.
Related links I found while searching:
http://forum.nas-portal.org/showthread.php?t=4201
http://community.lionhead.com/forums/thread/3292364.aspx
http://www.computerbase.de/forum/showthread.php?t=535181
LaCie NetworkSpace and Source Code
Several months ago, I posted about comments by LaCie tech support staff, that the NetworkSpace was no longer being developed.
Looking through the log files of the NetworkSpace, it is obvious that the system uses a Linux kernel and open source software.
So the first through that struck me, was to request LaCie to publish the source code, in line with the GPL licence for example. LaCie has in fact released source code for othe products, such as the 2big Network or LaCie Ethernet Disk RAID.
Tech suppot was rather quick to answer, and informed me that only certain parts of the source code may be released, but there is no set date for this.
LaCie Network Space – no more development – can we have the kernel?
I have been in contact with LaCie tech-support for the past couple days. I cannot see my shared media in iTunes and they have been assisting me.
But that aside, tech support dropped a bombshell on my today. The LaCie Network Space 1TB, which I bought some two weeks ago, is no longer being developed.
Here a screenshot of the response by the tech support person (in German);

Firmware version 1.1.6 is where the fun ends. While this upset me, it also got me thinking. Since the Network Space uses a linux kernel, it is based on open source software, and as such, LaCie should release the source code.
I may be wrong, but no where on the LaCie website can one download the source code.
So users demand that the source code be released, so that we can continue to maintain our NAS devices.
I would hate to think that there is some destructive bug hidden away in the code, which might one day fry my backups and files because the code is no longer being maintained.
What do you think?
Product Support – How not to do it
I have been in contact with LaCie support for several days now. I cannot get my music folder to appear in iTunes under 'Shared'. I know that I have stored my files in the right folder on the NAS, and that the Media Server feature is activated.
I also know that it should work, in theory, as I am able to access my music through the iPhone using PlugPlayer, a UPNP renderer.
LaCie support has asked me to make sure I am using the latest firmware.
So I visited their site and navigated to the driver download page for my product. The sight was shocking:

Instead of displaying the relevant drivers for a product on the actual product page, each product links to this list of drivers.
It looks and is confusing, I could not find the LaCie Network Space in that list. The drivers are probably stored under a different name.
This is a a serious case of "how not to do it" as far as user friendliness is concerned.
Ubuntu, OSX & the LaCie Network Space 1TB
I recently got myself a NAS from LaCie. The price was quite attractive and I badly needed the storage space as my old 300GB external hard disk from Western Digital was no longer enough.
This is my first experience in working with a NAS, here is a quick review:
First, my set up:
I have the NAS hooked up to my WGR614v6 router.
I connect to the NAS from two laptops and in both cases through WiFi.
My operating systems are OS X 10.5.5 and Ubuntu 8.10
Design
Perhaps the most striking aspect is the design. It is minimalist yet very elegant. Apparently it was designed by Neil Poulton, and although I have no idea who he is, I think this was a most successful design.
Pros
Due to its function, a NAS is great if you have several computers in the house and wish to easily share data between them, or make backups. The NAS is a central storage location.
The LaCie Network Space comes with private and public storage locations. Two user accounts, one for managing the NAS and also accessing the private storage area, and another for the public storage. It can act as an FTP server and a media server to deliver content to upnp media players.
Administration is carried out through the browser. The LaCie has status lights that can be turned on and off through the administration page. The software includes a LaCie Network Agent that can help you access the administration page, configure ethernet settings manually and connect to the NAS.
The Network Agent work in OSX, Linux and Windows.
It has a usb socket for attaching other hard disks and thereby increasing the storage space. You cannot attach it to a computer however.
Cons
It does not have raid and cannot act as a webserver / mysql server. In this price range (€150) that is to be expected.
The configuration possibilities are minimal and basic. This NAS is designed for home use. Connect and forget.
It scans the media files once an hour, during this time, if you are copying to or from the NAS the speeds will drop. If your media collection is small (under 60GB) this won't be an issue.
File Transfer Speeds
The speeds are based entirely on the method you choose to connect to the NAS. I connect through WiFi (g) and average about 2.5-3MB/sec. That is not much but it is okay for my needs as I do not have many large files to copy back and forth.
The LaCie does support Gigabit LAN and so you should average better speeds if using that method of connection.
Setup under OSX
Under OSX setup should be quite straight forward. The LaCie Network Space can be access through the LaCie Network Agent in the menu bar:

Or through Shared:

To map the NAS folders, select System Preferences > Accounts > Login Items. Drag the share’s icon from your desktop into the list of applications.

Setup under Ubuntu
The easiest method in my opinion is to mount the LaCie NAS in your fstab file. First create your mount points in /media:
sudo mkdir /media/openshare
and
sudo mkdir /media/myshare
Then add these lines to your /etc/fstab file:
//192.168.1.64/openshare/ media/openshare cifs 0 0
//192.168.1.64/myshare/ media/myshare cifs username=user,password=password 0 0
or you can use the smb protocol:
//192.168.1.64/openshare/ media/openshare smbfs 0 0
//192.168.1.64/myshare/ media/myshare smbfs username=user,password=password 0 0
(edit ip numbers, mount point names, usernames and password to suite your needs)