Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

Where are Adobe Flash cookies (sol files) stored?

Writer Emily Wong

Adobe Flash cookies (files with .sol extension) used to be located in ~/.macromedia. This folder no longer exists in Ubuntu 14.04LTS and newer. If the method of installing Flash has any effect on the location, the Ubuntu Installer option is how I installed it. So where are the Flash Cookies now located? I've tried searching for .sol files with no luck - and yes I have "Show Hidden Files" enabled in File Manager. Does anyone know where they're stored now?

3

4 Answers

If you checked the "Install this third party software" option during Ubuntu installation process, you're using NPAPI Adobe Flash plugin installed through flashplugin-installer package. The same plugin is provided by adobe-flashplugin package from Canonical Partner repo as well. This is the plugin generally used by Firefox and all other browsers not based on Chromium. In this case, the cookies are stored at:

~/.macromedia/Flash_Player/#SharedObjects/
~/.macromedia/Flash_Player/

Google Chrome bundles a Pepper Plugin API (PPAPI) based Flash plugin. For this plugin, the .sol files are stored at:

~/.config/google-chrome/Default/Pepper Data/Shockwave Flash/WritableRoot/#SharedObjects/

If you use the PPAPI Flash plugin on other Chromium based browsers, replace google-chrome in the path given above with name of your browser. For example, with Chromium:

~/.config/chromium/Default/Pepper Data/Shockwave Flash/WritableRoot/#SharedObjects/

Tested on Adobe Flash 21.0 PPAPI and 11.2 NPAPI plugins.

Source : Wikipedia page on Local Shared Object
Thanks to Xen2050 for providing info about Flash plugin on Chromium! 😊

2

There is the ~/.macromedia folder in 11.04. Your flash cookies are located in ~/.macromedia/Flash_Player/ directory.

There is another way to see your flash cookies and make whatever you want with them in the Global Storage Settings panel from the Adobe Flash Player Website.

Also, if you want to find out more about flash cookies, there are many things to know about them here.

1

Type this in terminal: locate *.sol

Or to remove all flash cookies:

rm `locate *.sol`

Note that locate isn't updated very fast, so if you run locate *.sol again after removing them. It'll indicate that the files still exists. Try to remove them again, an you'll get a couple of messages indicating that the files do not exist anymore. This method is fairly reliable, but won't remove very fresh flash cookies, since they haven't been indexed yet, and so 'locate' doesn't know about them yet.

1

If you download and install a flash game on your computer, you can find it in:

Home/.wine/drive_c/user/"User name"/Application Data/Macromedia/Flash Player/#SharedObjects/"some random code?"/localhost/Downloads/...

hope it useful

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy