Alright, I'm trying to download all files to my external network storage instead of my local harddisk. On windows I just connected to the smb share provided by the nas, the nas is running linux too.
The problem is this:
In fedora, I can access the harddisk by just accesing it through the Places->Network menu or smb://192.168.0.55
However, to download something directly to it, it must be reachable for the applications and therefore I want to mount it. I create the mount directory /mnt/Remote/ and tried this:
mount.cifs //192.168.0.55/storage/C/ /mnt/Remote/ -o user=root,password=*,domain=*
the drive is mounted after that and I can create a new file on it, however, the problem is that applications can't write to it. This is because the nas is also using linux and as soon as I mount the drive, the owners are also mounted. If I create a file in the mounted drive, its also created on the harddisk, but its not created by my fedora user but either "nobody" or "root" which is not my account, therefore my fedora system doesn't have the right to write to it. If I unomount the drive again and access it through Places->Network, the permission "could not be determined" so its not blocking me. Changing files works again. The settings of the nas are hardcoded and can't be changed, therefore I have to fix my client or trick it in some way that it doesn't complain about the permission anymore.
It doesn't matter what user logs into the nas, the nas log always says "nobody" logged in.
Any ideas?