0

Somehow Chromium Browser on my Ubuntu 14.04 (I suspect Chrome synching from a Windows 10 machine to my Ubuntu Chrome) has been infected with CloudScout.

I have uninstalled Chromium Browser included deleted everything in the .config folder for Chromium. Still when I reinstall Chromium I am disappointed to see the ads are back and destroying my happiness :(

Is there a way I can completely install Chromium including all settings and all added apps etc.

To date I have followed these Q&As.

How do I completely uninstall Google Chrome and Chromium?

sudo apt-get remove chromium-browser
sudo apt-get purge chromium-browser
rm ~/.config/chromium/ -rf

The only other issue I have is that if I roll over the Classic Menu Indicator 0.07 (installed app) it shows me a menu item for Chromium Apps. Either the malware is reinitializing from something inside there or it has gone outside of Chromium and attached itself to my system.

Until then it is goodbye Chromium and hello Firefox.

Any direction or help would be greatly appreciated. Thanks

2 Answers2

2

The dpkg/apt package system of ubuntu will ensure that if you purge the chromium-browser package, you will also remove all other packages depending on that.

# kill running instances, remove files
killall -9 chromium-browser
rm ~/.config/chromium/ -rf
# uninstall
sudo apt-get purge chromium-browser
# aaand reinstall
sudo apt-get install chromium-browser

Note that some application launchers still do display launcher Entries & Icons for applications removed, if they only load that list at their startup time. This isnt an issue, using those buttons will most likely lead to a precise error saying that the application could not be located (any more). Restart those applications (or, if you dont know how, the system) and it'll go away.

killall classicmenu-indicator && classicmenu-indicator

Anyway, uninstalling the chromium package is probably NOT what you wanted to do. If there is a malicious addon in your chrome, then thats completely user-side and should be fixed withouth system administration tools. If, however, you got a system-wide infection, you cannot easily resolve it that way anyway.

anx
  • 2,457
  • 2
  • 26
  • 38
0

For me, I found it wasn't enough to remove ~/.config/chromium . I also had to remove my cache for Chromium, too : ~/.cache/chromium .

Horrid problem to have, btw.

Pepe Lebuntu
  • 3,302