Make a Linux image file, format it ext2, store it on the NAS and mount it locally. It has been a long time since I have done this but the syntax would look a bit like this. Change the count size to meet your needs.
dd if=/dev/zero of=/mnt/NAS_SERVER/linux.img bs=4096 count=100000 mkfs.ext2 /mnt/NAS_SERVER/linux.img mkdir /mnt/NAS_LINUX mount -o loop /mnt/NAS_SERVER/linux.img /mnt/NAS_LINUX On Thu, Feb 12, 2009 at 9:50 AM, <[email protected]> wrote: > In a "oh shiny!" moment I pickup a NAS, which is a little limited. > > Despite the 'Linux Support' claims, I find the lack of user/group > permissions the biggest problem. A file will loose this data if/when it > goes onto NAS. > > Does anyone know of a solution to prevent this (other than tar'ing - I'd > still like random file access)? > > I though there might be a Fuse layer to do this, but can't find anything. > > Cheers, > Simon. > > > _______________________________________________ > clug-talk mailing list > [email protected] > http://clug.ca/mailman/listinfo/clug-talk_clug.ca > Mailing List Guidelines (http://clug.ca/ml_guidelines.php) > **Please remove these lines when replying > -- http://www.Radados.org
_______________________________________________ clug-talk mailing list [email protected] http://clug.ca/mailman/listinfo/clug-talk_clug.ca Mailing List Guidelines (http://clug.ca/ml_guidelines.php) **Please remove these lines when replying

