LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-15-2012, 04:58 AM   #1
slowerogue
Member
 
Registered: Oct 2012
Posts: 96

Rep: Reputation: Disabled
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
 
Old 10-15-2012, 05:01 AM   #2
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
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.
 
1 members found this post helpful.
Old 10-15-2012, 05:30 AM   #3
kooru
Senior Member
 
Registered: Sep 2012
Posts: 1,385

Rep: Reputation: 275Reputation: 275Reputation: 275
It should call uex.

Have you tried?

Code:
which uex
 
1 members found this post helpful.
Old 10-15-2012, 06:42 AM   #4
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
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
 
Old 10-15-2012, 06:46 AM   #5
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
Quote:
Originally Posted by kooru View Post
It should call uex.

Have you tried?

Code:
which uex
that won't help any uninstall method I've ever used though.
 
Old 10-15-2012, 07:08 AM   #6
kooru
Senior Member
 
Registered: Sep 2012
Posts: 1,385

Rep: Reputation: 275Reputation: 275Reputation: 275
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
 
Old 10-15-2012, 07:09 AM   #7
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
Quote:
Originally Posted by kooru View Post
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.

Last edited by acid_kewpie; 10-15-2012 at 07:11 AM.
 
Old 10-15-2012, 07:19 AM   #8
kooru
Senior Member
 
Registered: Sep 2012
Posts: 1,385

Rep: Reputation: 275Reputation: 275Reputation: 275
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
 
1 members found this post helpful.
Old 10-15-2012, 01:55 PM   #9
malekmustaq
Senior Member
 
Registered: Dec 2008
Location: root
Distribution: Slackware & BSD
Posts: 1,669

Rep: Reputation: 498Reputation: 498Reputation: 498Reputation: 498Reputation: 498
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.
 
Old 10-15-2012, 03:08 PM   #10
JaseP
Senior Member
 
Registered: Jun 2002
Location: Eastern PA, USA
Distribution: K/Ubuntu 18.04-14.04, Scientific Linux 6.3-6.4, Android-x86, Pretty much all distros at one point...
Posts: 1,802

Rep: Reputation: 157Reputation: 157
I took a quick swing by their website,... Try /opt/local/uex for the directory...
 
Old 10-15-2012, 10:52 PM   #11
slowerogue
Member
 
Registered: Oct 2012
Posts: 96

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by kooru View Post
It should call uex.

Have you tried?

Code:
which uex
Hi, thanks alot
uex starts the ultra edit!



Quote:
Originally Posted by malekmustaq View Post
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

Last edited by slowerogue; 10-15-2012 at 10:54 PM.
 
Old 10-15-2012, 11:01 PM   #12
slowerogue
Member
 
Registered: Oct 2012
Posts: 96

Original Poster
Rep: Reputation: Disabled
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
 
Old 10-16-2012, 12:07 AM   #13
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,359

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
The rpm name is likely ultraedit (eg see google)
Code:
rpm -qa |grep -i ultraedit
 
Old 10-16-2012, 09:28 PM   #14
slowerogue
Member
 
Registered: Oct 2012
Posts: 96

Original Poster
Rep: Reputation: Disabled
thx guys!
but how do i unistall it?
just rm -rf or rmdir will do?
ty

Last edited by slowerogue; 10-16-2012 at 09:35 PM.
 
Old 10-17-2012, 12:38 AM   #15
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,359

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
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
 
  


Reply



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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Is it possible to install softwares from an ISO file located on a Windows partition? kevintse Linux - Software 1 05-25-2008 03:22 AM
Where is the .config file located? BluePyre Linux - Software 7 08-29-2004 06:13 AM
Crontab file located in,,, where? jon_k Linux - Software 4 07-04-2004 01:26 PM
Yum update complains missing file (broken dep), but file can be located. davidas Linux - Software 0 03-27-2004 09:11 PM
where is the wine config file located? osat3ch Fedora 2 02-13-2004 08:09 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:39 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration