LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   how to un/install if i do not know the file located at (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-un-install-if-i-do-not-know-the-file-located-at-4175432268/)

slowerogue 10-15-2012 04:58 AM

how to un/install if i do not know the file located at
 
hi guys
i have installed ultraedit in my linux server, but i do not know where is it located.
i have try searching /usr/bin , its not there
anyway to search the last install software, or search it by name?
besides that, can i uninstall it without knowing where is the location of the software?

thx

acid_kewpie 10-15-2012 05:01 AM

knowing where the software is won't help you uninstall it in the first place. packages are only "installed" from the point of a package database, the files themselves are just put on a disk like any other.

if you installed from an rpm try "rpm -e ultraedit", from deb use "dpkg -r ultraedit" or whatever the package name actually is.

kooru 10-15-2012 05:30 AM

It should call uex.

Have you tried?

Code:

which uex

John VV 10-15-2012 06:42 AM

Quote:

i have installed ultraedit in my linux server, but i do not know where is it located.
so HOW did you install this "not GPL" $89 USD closed source program on this UNKNOWN linux based server
i take it you also have a gui installed on this box in the server room

from the download page it runs on
Quote:


Ubuntu 10.04, 11.04 and 11.10
Fedora 16 and 17
OpenSUSE 12.1
CentOS/RedHat Enterprise 5.7 and 6.1

so
How did you install it
And on what Operating system

acid_kewpie 10-15-2012 06:46 AM

Quote:

Originally Posted by kooru (Post 4806007)
It should call uex.

Have you tried?

Code:

which uex

that won't help any uninstall method I've ever used though.

kooru 10-15-2012 07:08 AM

Hi acid_kewpie,

i've just answered because he says:
Quote:

i have installed ultraedit in my linux server, but i do not know where is it located.
i have try searching /usr/bin , its not there

acid_kewpie 10-15-2012 07:09 AM

Quote:

Originally Posted by kooru (Post 4806067)
Hi acid_kewpie,

i've just answered because he says:

yes, you did... sorry! My total mistake.

So for running it... you really don't need to know. Just run the program from a command line, there's no "Program files" directory to go hunting for, the binary should be on your path.

kooru 10-15-2012 07:19 AM

Yes but you need to know as the program is called. Because ultraedit should be called uex
Even if the original post is not very clear :)

malekmustaq 10-15-2012 01:55 PM

Ultraedit was my favorite during my M$Windows matrix days. Today there is an Ultraedit for Linux. The binary is "uex" with few options. But it is nothing compared to Gnu editors. Nevertheless for the sake of helping--

locate the uex binary in many ways, as stated above:

Code:

which uex
if not returned, try find it--

Code:

find {/bin,/sbin,/usr/sbin,/usr/bin,/usr/local/bin,/opt} -type f -iname '*uex*'
That should return the binary's location.

The other shorter way is to verify the install record:

Code:

cat /var/log/packages/*ultraedit* | grep uex
Goodluck.

JaseP 10-15-2012 03:08 PM

I took a quick swing by their website,... Try /opt/local/uex for the directory...

slowerogue 10-15-2012 10:52 PM

Quote:

Originally Posted by kooru (Post 4806007)
It should call uex.

Have you tried?

Code:

which uex

Hi, thanks alot
uex starts the ultra edit!



Quote:

Originally Posted by malekmustaq (Post 4806385)
Ultraedit was my favorite during my M$Windows matrix days. Today there is an Ultraedit for Linux. The binary is "uex" with few options. But it is nothing compared to Gnu editors. Nevertheless for the sake of helping--

locate the uex binary in many ways, as stated above:

Code:

which uex
if not returned, try find it--

Code:

find {/bin,/sbin,/usr/sbin,/usr/bin,/usr/local/bin,/opt} -type f -iname '*uex*'
That should return the binary's location.

The other shorter way is to verify the install record:

Code:

cat /var/log/packages/*ultraedit* | grep uex
Goodluck.

Hi thanks alot for being helpful.
i found it under /usr/local/bin
a green uex is there.
but i cant run rpm -qil uex to list all the installed file of uex

slowerogue 10-15-2012 11:01 PM

Hi thanks everyone who being helpful <3
but i cant find any packages of this uex.. how should i uninstall it ?thx

me using rhel 6.3 32bit, but i downloaded/installed ultraedit for fedora version
thanks alot

chrism01 10-16-2012 12:07 AM

The rpm name is likely ultraedit (eg see google)
Code:

rpm -qa |grep -i ultraedit

slowerogue 10-16-2012 09:28 PM

thx guys!
but how do i unistall it?
just rm -rf or rmdir will do?
ty

chrism01 10-17-2012 12:38 AM

you can try
Code:

yum remove ultraedit
but check the list of dependencies it may want to remove.
Sometimes it gets a bit out of hand.
If so, you could just try
Code:

rpm -e --nodeps ultraedit
http://linux.die.net/man/8/rpm


All times are GMT -5. The time now is 04:32 AM.