This is a discussion on Uninstalling a software I can't find within the Linux Operating System forums, part of the Unix Operating Systems category; --> I am not quite sure of how I did it actually, i had no problme installing firefox 1.0 under ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I am not quite sure of how I did it actually, i had no problme installing firefox 1.0 under SuSE 9.1, I was actually able to use it normally. After closing the software I am not able to find it anymore... how can i find it and uninstall it? thanx in advance |
| |||
| On 2005-01-10, G Cotto <gonzo_cotto@yahoo.com> wrote: > I am not quite sure of how I did it actually, i had no problme installing > firefox 1.0 under SuSE 9.1, I was actually able to use it normally. After > closing the software I am not able to find it anymore... how can i find it > and uninstall it? Software installed from source or special packages usually ends up in /usr/local/something. Check in there. Davide -- I don't suffer from insanity; I enjoy every minute of it. -- Lieven Marchand |
| |||
| G Cotto wrote: > I am not quite sure of how I did it actually, i had no problme installing > firefox 1.0 under SuSE 9.1, I was actually able to use it normally. After > closing the software I am not able to find it anymore... how can i find it > and uninstall it? .... might be good to know how you installed it. where did you get firefox from? bring yast up and see if firefox is listed (software -> install/remove) -- << http://michaeljtobler.homelinux.com/ >> Mandrell: "You know what I think?" Doctor: "Ah, ah that's a catch question. With a brain your size you don't think, right?" - Dr. Who |
| |||
| On 10 Jan 2005 10:24:24 GMT, Davide Bianchi wrote: > On 2005-01-10, G Cotto <gonzo_cotto@yahoo.com> wrote: >> I am not quite sure of how I did it actually, i had no problme installing >> firefox 1.0 under SuSE 9.1, I was actually able to use it normally. After >> closing the software I am not able to find it anymore... how can i find it >> and uninstall it? > > Software installed from source or special packages usually ends up in > /usr/local/something. Check in there. $ locate firefox | egrep "firefox$" Jonesy -- | Marvin L Jones | jonz | W3DHJ | linux | Gunnison, Colorado | @ | Jonesy | OS/2 __ | 7,703' -- 2,345m | config.com | DM68mn SK |
| |||
| On Mon, 10 Jan 2005 10:23:34 +0000 (UTC), G Cotto <gonzo_cotto@yahoo.com> wrote: > I am not quite sure of how I did it actually, i had no problme installing > firefox 1.0 under SuSE 9.1, I was actually able to use it normally. After > closing the software I am not able to find it anymore... how can i find it > and uninstall it? > thanx in advance If you downloaded firefox from mozilla.org and did not install it as root, it's probably somewhere in your home directory. Try "locate firefox-bin" or "whereis firefox-bin". -- BOFH excuse #270: Someone has messed up the kernel pointers |
| |||
| In article <Xns95DA73C7C605Dgonzocottoyahoocom@134.76.10.112> , G Cotto <gonzo_cotto@yahoo.com> wrote: >I am not quite sure of how I did it actually, i had no problme installing >firefox 1.0 under SuSE 9.1, I was actually able to use it normally. After >closing the software I am not able to find it anymore... how can i find it >and uninstall it? If you installed it from an RPM, then something like rpm -qa | grep -i firefox should give you the correct package name. Then rpm -ql <package name> will give you the full pathnames of all files that were installed as part of the package. |
| |||
| Lawrence DčOliveiro <ldo@geek-central.gen.new_zealand> writes: >In article <Xns95DA73C7C605Dgonzocottoyahoocom@134.76.10.112> , > G Cotto <gonzo_cotto@yahoo.com> wrote: >>I am not quite sure of how I did it actually, i had no problme installing >>firefox 1.0 under SuSE 9.1, I was actually able to use it normally. After >>closing the software I am not able to find it anymore... how can i find it >>and uninstall it? >If you installed it from an RPM, then something like > rpm -qa | grep -i firefox >should give you the correct package name. Then > rpm -ql <package name> And rpm -e <package name> will remove it. Or if you know one of the files (eg firefox-- do whereis firefox or locate firefox or find / -name firefox to find it (that will take a while), and then do rpm -qf firefox will tell you the package name. >will give you the full pathnames of all files that were installed as >part of the package. |
| ||||
| On 2005-01-10, G Cotto <gonzo_cotto@yahoo.com> wrote: > I am not quite sure of how I did it actually, i had no problme installing > firefox 1.0 under SuSE 9.1, I was actually able to use it normally. After > closing the software I am not able to find it anymore... how can i find it > and uninstall it? > thanx in advance If you can still run it, it's probably in your path -- try "which firefox" from a shell prompt. Or, failing that, try "locate firefox|less" If you're launching FireFox from a desktop object, look in the properties of the object. -- John (john@os2.dhs.org) |