Unix Technical Forum

Uninstalling a software I can't find

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 ...


Go Back   Unix Technical Forum > Unix Operating Systems > Linux Operating System

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 01-18-2008, 07:17 AM
G Cotto
 
Posts: n/a
Default Uninstalling a software I can't find

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 01-18-2008, 07:17 AM
Davide Bianchi
 
Posts: n/a
Default Re: Uninstalling a software I can't find

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 01-18-2008, 07:17 AM
mjt
 
Posts: n/a
Default Re: Uninstalling a software I can't find

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 01-18-2008, 07:17 AM
Allodoxaphobia
 
Posts: n/a
Default Re: Uninstalling a software I can't find

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 01-18-2008, 07:17 AM
Bill Marcum
 
Posts: n/a
Default Re: Uninstalling a software I can't find

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 01-18-2008, 07:17 AM
Lawrence DčOliveiro
 
Posts: n/a
Default Re: Uninstalling a software I can't find

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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 01-18-2008, 07:18 AM
Bill Unruh
 
Posts: n/a
Default Re: Uninstalling a software I can't find

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.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 01-18-2008, 07:19 AM
John Thompson
 
Posts: n/a
Default Re: Uninstalling a software I can't find

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)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 06:43 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com