Ok, it is possible...it just is not easy. Here is what I have found out:
In an effort to speed up file transfer from 1 HD to another I did the following:
1) Attached HD's to IDE on my XP system that I wanted to transfer to/from
2) Boot my XP system with the Knoppix Live CD
3) Transfer MP3 & DVD files (much much faster than trying to do it over the network)
Here's the issue with above:
1) Files transferred are given ownership by knoppix user and knoppix group
2) Which means that (once you put the HDs back into the NAS server) you can only read files off of the NAS server - you can not modify / delete the files or rearrange them.
I was able to fix the above issue. My work around was to install Knoppix to a partition on my XP machine and go in and change file permissions while using Knoppix. Get info on that procxedure from the
http://www.knoppix.net forum.
Here's what I found out:
I booted into my HD version of Knoppix (Debian) and examined file permissions for a couple disks to see what was going on.
NASLite has 2 ownerships:
USERS
1) root
2) 98 (this is the NAS-user)
GROUPS
1) root
2) 98 (this is the NAS-user group)
I created a new user 98 and assigned that user a UID of 98. Knoppix then created a user group called 98 and auto assigned it GID 1002. I deleted the group entry it auto-made and created a new group 98 and assigned it a GID of 98. I then made user 98 a member of group 98. You still with me?
Then I went to my HDs and chown & chgrp all files except for lost+found.
# chown 98 -R directoryName
# chgrp 98 -R directoryName
After doing this, all files I transfered on my Knoppix system (XP system) were then read/write/execute ready once placed back into my NAS server.
So, based on my experimenting it looks like there is a way to create file permission settings...just not within NAS itself!! Boy, would that be a great feature...hint hint.
Based on what I have done, you can use Knoppix (I assume also any other Linux) and assign user privs. This is good if you want to make files available but don't want to risk having somone else write over them. This is nice for me, as I have video and MP3 files I don't want the other computer users in my house changing or accidentally deleting.
So for Example:
1) Disk 1 is all of my MP3s - read only (using Knoppix as above)
2) Disk 2 is all of my DVD video - read only (using Knoppix as above)
3) Disk 3 is a share for downloaded apps and files (files accumulate over time) so transfer of large amts of data not required and I don't care if users change data here.
4) Same as 3
Overall, the process is not easy and I spent a lot of hours to get where I am now (newbie linux user). One of the greatest finds with NAS was my exposure to Knoppix (Linux has come a long way but still is not idiot proof).
++NOTE - be careful to mount drives before transfer unmount when finished changing permissions and definitely unmount and turn off machine before removing HDs..even if you have a USB hot swap!!!