I don't know that you
can make it work.
It's a well known issue caused by incompatabilities in how Microsoft's operating systems & linux handle data.
Traditionally Microsoft has used a flag, known as the archive bit, to know when a file needs to be backed up.
Here's how it works ...
We are going to assume that this is your first backup, so you're going to do a
full backup and that you have three data files. In this case, the backup utility will backup all the files and clear or reset the archive bit on all three files when it backs the file up, indicating that the file has been backed up.
For the purpose of this discussion, you now edit the first file, but do not touch the other two - whatever application you use to edit the file will set the archive bit, indicating that the file has been altered since it's last backup. If you now run an incremental backup, the backup utility will check the archive bits on all three files, and see that only one is set, so it backs up that one file, and clears the archive bit.
There is a third method of backup - the differential backup - which looks for the archive bit, backs the file up, but does not reset the bit.
To recap ...
- a full backup does not check for the archive bit, but backs up all the files and resets or clears the archive bit.
- an incremental backup checks for the archive bit, backs up only files with the archive bit set, and then clears the archive bit.
- a differential backup checks for the archive bit, backs only files with the archive bit set, and does not clear or reset the archive bit.
Works beautifully - in a pure Microsoft environment.
Let's now introduce linux, the OS used on the DNS-323 - it has no archive bit - it uses time & date stamps to know when last a file was accessed and must compare the last access to the last backup to know if the file needs to be backed up.
In the absence of the archive bit, your "microsoft" backup utility doesn't know which files need to be backed up for an incremental or differential backup, so only a full backup works.
You can TRY setting "map archive" to ON - it's in the DNS-323 Advanced/Network Settings menu - but there is no guarantee that it will work - what you really need is a backup utility that runs on a Microsoft OS and knows how to deal with linux file attributes, if such a utility exists.
Here's some reading
http://www.faqs.org/docs/samba/ch08.html