Hi skeletonpass
If all you want to do is access the NAS, and not share files from your lightweight TC setup, you don't
need to install a heavyweight application like Samba3. Instead of Samba3 I would recommend using
filesystems-2.6.33.3-tinycore.tcz
and
cifs-utils.tcz
It looks like it may be a permissions problem. You are mounting as user admin but in the TC environment
you are running as user tc. In other words, without the sudo, it is user tc trying to write to the NAS. I run
my server with minimal security, simple file sharing and guest access. I allow access by local machines
and block access by the router. This way I don't have to deal with users and permissions.
Anyway, just a shot in the dark, you could try one of the following
sudo mount -t cifs //192.168.0.10/media/BitTorrent /mnt/BitTorrent -o user=admin,pass=***** noperm
or
sudo mount -t cifs //192.168.0.10/media/BitTorrent /mnt/BitTorrent -o guest
and see if it helps.