How to delete flash tracking cookies on Linux
This is just a really quick post. If you don’t want to be tracked on the Internet by vendors, advertisers, etc, you probably know you have to delete cookies. However, not just browser cookies (most people are aware of those), but also flash cookies.
While there are plugins e.g. for Firefox, those are hard to use, you have to update them from time to time and if you, for whatever reason, use a different browser or two browsers, you would have to install multiple plugins / solutions to fix this annoyance.
Well, thank god there is Linux
Just write a little script, that will execute when you log out. For KDE3, this file can be put in ~/.kde3/Autostart. You might as well use ~/.bash_logout to start the script.
All the script needs to contain is:
#!/bin/bash
rm -r -f ~/.macromedia/Flash_Player/#SharedObjects/
exit
This should delete all your Flash cookies upon logout.
HTH
Felix
Posted in Computers, opensuse |
3 Comments »
