Hello All,
I installed SeaMonkey a while back, but I want to switch to Firefox and Thunderbird. I want to uninstall SeaMonkey, but it's not in the repositories. So I have to uninstall it manually.
I'm pretty sure "remove" is a basic operation, but I've never done it before. I have a hunch how to do it. I'm hoping someone can confirm that I'm doing the right thing.
SeaMonkey is located in two places on my system...
A folder:
/opt/seamonkey
A shell script:
/usr/bin/seamonkey
Do I have to uninstall both the folder and the shell script separately? Can I use the following command:
Thanks!
Matt
I installed SeaMonkey a while back, but I want to switch to Firefox and Thunderbird. I want to uninstall SeaMonkey, but it's not in the repositories. So I have to uninstall it manually.
I'm pretty sure "remove" is a basic operation, but I've never done it before. I have a hunch how to do it. I'm hoping someone can confirm that I'm doing the right thing.
SeaMonkey is located in two places on my system...
A folder:
/opt/seamonkey
A shell script:
/usr/bin/seamonkey
Do I have to uninstall both the folder and the shell script separately? Can I use the following command:
Code:
sudo rm -r /opt/seamonkey
Matt




When executing commands 'in a console - the CLI [command line]' - and the action requires the privileges that only 'root' has, you are required to issue the command as root. That's what 'sudo' does when preceding a command. Generally, when a package is installed, it is seldom that it does so with all it's components owned by the user (you). So, removing an installed package requires that root do it.
Comment