Disable Trash on a specific drive

Is there a possibility of disabling the trash-bin for a drive and deleting files instantly? I'm using DVD-RAM as a backup solution and trashing files is producing a lot of additional, unnecessary writes on the backup discs as the files are moved to a new location and then overwritten on delete from the trash bin.


Solution 1:

Just found a solution for this on the web while waiting for the timelimit on creating questions:

You just need to open terminal, go to the drive you want the trash-bin to be disabled on and then do this:

sudo rm -rf .Trashes
touch .Trashes

Essentially what this does is deleting the trash-bin recursively and replacing it with an empty file thus blocking OSX from recreating it. When you delete files after that OSX will ask you about instant deletion instead of putting it into the trash-bin. Works perectly.