Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
07-23-2014, 11:42 AM
|
#1
|
LQ Newbie
Registered: Jul 2014
Location: West Michigan
Posts: 29
Rep: 
|
Need text editor on brand new CentOS 7.0 VM
We just created a new virtual machine on a server with CentOS 7.0. My client is on Win 7, and I use Putty for now. The only editor I can find on it vi. I'd like another editor but doing 'yum search' did not find anything for nedit or pine or pico.
Which editor is a bit more user-friendly that I could install via yum and works with putty?
Or, how do I add more repositories to yum? There might be more choices for me if I do that.
Thanks.
EDIT: Nevermind. I found nano on our system. It works.
EDIT: Also I have no graphical desktop going yet. I'm having problems with that.
Last edited by bulrush15; 07-24-2014 at 12:22 PM.
|
|
|
07-23-2014, 02:52 PM
|
#2
|
Moderator
Registered: Mar 2008
Posts: 22,361
|
OK, thanks for the update.
|
|
|
07-23-2014, 06:24 PM
|
#3
|
Senior Member
Registered: Dec 2005
Location: Florida
Distribution: CentOS/Fedora/Pop!_OS
Posts: 2,992
|
Quote:
Originally Posted by bulrush15
We just created a new virtual machine with CentOS 7.0. The only editor I can find on it vi. I'd like another editor but doing 'yum search' did not find anything for nedit or pine or pico.
I'm connecting via putty and ssh. Which editor is a bit more user-friendly that I could install via yum and works with putty?
Or, how do I add more repositories to yum? There might be more choices for me if I do that.
Thanks.
EDIT: Nevermind. I found nano on our system. It works.
|
correct, the other three you mentioned are NOT "FOSS" thus will never be in the default repos for any RHEL, this includes CentOS.
Vi is very user friendly and works fine with putty. nano is fine as well.
|
|
|
07-24-2014, 05:19 AM
|
#4
|
LQ Newbie
Registered: Jul 2014
Location: West Michigan
Posts: 29
Original Poster
Rep: 
|
- What does FOSS mean?
- I will be doing a lot of programming in Perl so I'm used to nedit being in a separate windows than my CLI. Is there another way to edit files to have the editor pop up in a new window?
|
|
|
07-24-2014, 06:12 AM
|
#5
|
LQ Addict
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 24,236
|
|
|
|
07-24-2014, 06:26 AM
|
#6
|
LQ Newbie
Registered: Jul 2014
Location: West Michigan
Posts: 29
Original Poster
Rep: 
|
geany editor not found in default CentOS repositories via 'yum search geany'. Is there another repository which has more software, like a Redhat repo?
Also, I don't have any graphic desktop going yet.
Last edited by bulrush15; 07-24-2014 at 06:28 AM.
|
|
|
07-24-2014, 06:31 AM
|
#7
|
LQ Addict
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 24,236
|
|
|
1 members found this post helpful.
|
07-24-2014, 08:21 AM
|
#8
|
LQ Newbie
Registered: Jul 2014
Location: West Michigan
Posts: 29
Original Poster
Rep: 
|
Thank you! yum searched the EPEL repo! I'm such a noob.
I will install geany and mark as solved if it works.
Last edited by bulrush15; 07-24-2014 at 08:22 AM.
|
|
|
07-24-2014, 08:38 AM
|
#9
|
LQ Newbie
Registered: Jul 2014
Location: West Michigan
Posts: 29
Original Poster
Rep: 
|
- I did 'yum install geany.x86_64', got "Requires VTE".
- Did 'yum install vte3.x86_64' got "VTE already installed".
- Did 'yum update vte3.x86_64' go "No packages marked for update"
- I can't find any vte file in /usr/bin or when I do 'which vte'.
- I will try to download the rpm but there are none for Centos 7, I'll try the rpm for Centos 6.
- Got the geany for Centos 6 and did 'yum installlocal fn.rpm' and got an error "Cannot open fn.rpm. Nothing to do." I downloaded the file again and got the same error.
What do I do now?
Last edited by bulrush15; 07-24-2014 at 08:51 AM.
|
|
|
07-24-2014, 03:10 PM
|
#10
|
Senior Member
Registered: Dec 2005
Location: Florida
Distribution: CentOS/Fedora/Pop!_OS
Posts: 2,992
|
do not try to mix versions of applications. if the RPM is for v6, then do not install it on any other version other then v6.
http://www.cyberciti.biz/faq/install...os-redhat-7-x/
follow the direction on that link to install EPEL for CentOS v7, I just verified that geany is in that repo so you should just be able to yum install geany once you have the repo installed and updated.
do keep in mind that running EPEL is highly discouraged by RH as it more then not conflicts with the officials repos for libraries and other applications and can cause a system to become unstable. you have been notified.
https://dl.fedoraproject.org/pub/epel/beta/7/x86_64/
you can browse the list of applications and libraries in the EPEL for RHEL7 with the above link.
|
|
|
07-25-2014, 04:37 AM
|
#11
|
LQ Newbie
Registered: Jul 2014
Location: West Michigan
Posts: 29
Original Poster
Rep: 
|
Quote:
do not try to mix versions of applications. if the RPM is for v6, then do not install it on any other version other then v6.
|
Thanks for the info. I was wondering.
I did add EPEL as a repo and I still had problems installing it. Details are already above your post.
What are the addresses of other Redhat 7 repos I can use for CentoS 7? Centos 7 does not seem ready for prime time.
|
|
|
07-25-2014, 07:41 AM
|
#12
|
LQ Guru
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.x
Posts: 18,434
|
Centos is basically an exact free copy of RHEL.
RHEL is only just released as 7.0.
Any experienced IT guy will tell you not to use X.0 of anything for serious work, even RHEL.
Always regard it as an extended Beta, suitable for R&D but not PROD; wait for 7.1 for that.
FWIW, I've added EPEL to C5 & C6 over the years and practically never had a serious issue, assuming I used http://wiki.centos.org/PackageManagement/Yum/Priorities first to protect the system integrity.
|
|
|
07-25-2014, 11:04 AM
|
#13
|
LQ Veteran
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Salix
Posts: 6,243
|
The extras repositories for RHEL/CentOS 7 will still be under development: EPEL is called beta and RPMfusion hasn't got a version 7 repo yet.
https://fedoraproject.org/wiki/EPEL
Geany is listed there. Do make sure you set yum priorities before using EPEL, as Chris recommended.
|
|
|
All times are GMT -5. The time now is 10:26 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|