How to uninstall softmaker freeoffice
Solution 1:
Since all other answers are outdated and not working, here is the working answer.
First open your terminal and enter
dpkg --get-selections | grep softmaker
to know what components are installed on you PC. This will give you like following output:
softmaker-freeoffice-2016:i386 install
Now you know what is installed so to remove with the following:
sudo dpkg -r "component name"
i.e. for given output: sudo dpkg -r softmaker-freeoffice-2016:i386
that should solve everyone's problem.
Solution 2:
Look for the freeoffice directory in your home directory. (If the folder can't be found there, but you know you have the software installed, execute sudo find / -iname freeoffice
) Delete that folder and all of its contents (either by dragging it to the trash and emptying the trash can, or my executing sudo -rf freeoffice
from its parent folder.)
There is also a .softmaker folder either in ~/ or in / (if the program was installed as root). Delete it also.
Go to ~/.local/share/applications
(or /usr/local/share/appliations
or /usr/share/application
) and execute sudo rm *-free.desktop
to remove the icons associated with the programs. This will also remove the programs from the "Open With" menu.
Finally, there is a SoftMaker directory in ~/
(or /
), which should also be deleted.