LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 01-10-2006, 02:08 AM   #1
anjanesh
Member
 
Registered: Sep 2004
Location: Navi Mumbai
Distribution: Ubuntu 14.04 64-bit
Posts: 230

Rep: Reputation: 30
Alternative to vi


Hi

I know that its possible to edit files in SSH using vi but am not used to it and not so user-friendly.

Is there anything like Microsoft' old dos Edit utility ?

Thanks
 
Old 01-10-2006, 02:12 AM   #2
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,163
Blog Entries: 1

Rep: Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032
You can use "joe" or "pico" (another name for "pico" is "nano") if they are installed on your system.
 
Old 01-10-2006, 02:24 AM   #3
anjanesh
Member
 
Registered: Sep 2004
Location: Navi Mumbai
Distribution: Ubuntu 14.04 64-bit
Posts: 230

Original Poster
Rep: Reputation: 30
Thanks - joe was ok - still none of these are as user-friendly as Edit.
 
Old 01-10-2006, 02:28 AM   #4
timmeke
Senior Member
 
Registered: Nov 2005
Location: Belgium
Distribution: Red Hat, Fedora
Posts: 1,515

Rep: Reputation: 61
If you forward your X server connection, using ssh's -X option, you can use graphical (X-windows based) programs like nedit and gedit too (if they're installed).
 
Old 01-10-2006, 02:38 AM   #5
anjanesh
Member
 
Registered: Sep 2004
Location: Navi Mumbai
Distribution: Ubuntu 14.04 64-bit
Posts: 230

Original Poster
Rep: Reputation: 30
This is possible using Putty too ? How do I call SSH -X in Putty ?
 
Old 01-10-2006, 02:55 AM   #6
timmeke
Senior Member
 
Registered: Nov 2005
Location: Belgium
Distribution: Red Hat, Fedora
Posts: 1,515

Rep: Reputation: 61
A quick search on Google showed that you can configure Putty for "X11 forwarding", which is the
same as what the -X option does (on Linux).

See:
http://www.msi.umn.edu/user_support/...in_config.html
 
Old 01-10-2006, 03:27 AM   #7
anjanesh
Member
 
Registered: Sep 2004
Location: Navi Mumbai
Distribution: Ubuntu 14.04 64-bit
Posts: 230

Original Poster
Rep: Reputation: 30
Thanks - I tried entering -X in the Remote Command textbox in the SSH option in Putty - but didnt work - infact after entering the username and password, Putty just closed.

The config options have changed in the newer Putty I guess - because mine looks like this - I checked Enable X11 but I did not give localhost:0 in X Display location.

Code:
login as: myuser
myuser@x.x.x.x's password:
/usr/X11R6/bin/xauth:  creating new authority file /home/myuser/.Xauthority
[myuser@myserver myuser]$
What am I suppossed to do from here ?

Thanks
 
Old 01-10-2006, 03:36 AM   #8
T.Hsu
Member
 
Registered: Jan 2005
Posts: 178

Rep: Reputation: 31
You have to install an X server on win box, like Exceed (commercial software) or cygwin X.

Using Exceed X Server with SSH X11 Tunneling
 
Old 01-10-2006, 04:10 AM   #9
anjanesh
Member
 
Registered: Sep 2004
Location: Navi Mumbai
Distribution: Ubuntu 14.04 64-bit
Posts: 230

Original Poster
Rep: Reputation: 30
Oh....ok - anyway I guess I got to learn vi - because I have access to server - but not a fully dedicated one - managed one. So they woundt install stuff that they think is not required. Guess I'll go back to CUI.

Thanks
 
Old 01-10-2006, 04:57 AM   #10
spooon
Senior Member
 
Registered: Aug 2005
Posts: 1,755

Rep: Reputation: 51
Also Emacs can be used from the terminal (as well as in X), if you know how to use it (and if you're not one of those diehard vi fans )

Also, the stuff mentioned before about X forwarding; that is normal functionality and doesn't involve installing anything on the server side.

Last edited by spooon; 01-10-2006 at 04:59 AM.
 
Old 01-10-2006, 05:30 AM   #11
nitinatindore
Member
 
Registered: Dec 2004
Location: India
Distribution: Mandrake, Mandriva, PclinuxOS
Posts: 114

Rep: Reputation: 15
try out mc,(certainly not as good as vi), but a breeze to use.
Anyways you will find it as good as that edit in stupid W**dows.
 
Old 01-10-2006, 08:15 AM   #12
Dtsazza
Member
 
Registered: Oct 2005
Location: Oxford, UK
Distribution: Debian Etch (w/ dual-boot XP for gaming)
Posts: 282

Rep: Reputation: 31
Something to add is that according to POSIX standards, vi is guaranteed to be installed on any UNIX-based system, anywhere. It's probably worth learning to use it (at least to a basic level) for this reason alone. Once you get used to the idea of having two modes, there are really very few commands you need to know for the purposes of changing a few lines in a file.
 
Old 01-10-2006, 08:38 AM   #13
alienDog
Member
 
Registered: Apr 2004
Location: Europe
Distribution: Debian, Slackware
Posts: 505

Rep: Reputation: 48
In my opinion the problem with vi is not with modes. Modes are actually quite handy once you get used to them. I dislike the little oddities it has (pressing ESC on insert mode moves the cursor backwards, so you'll have to compensate it with l, cursor keys up and down or k and j won't work on wrapped lines, in vim undo is u and redo CTRL+R, etc.) Yes, I know these can be fixed, but why don't they work right in a "sane" way in the first place? In my opinion it's also a really bad idea to use control keysequences in a modal editor like vi, it makes it (even more) confusing. Controlling open windows in vim for example can't be said to be very handy, why isn't it simply done in command mode? And then there is of course the size question, >12 MB for a text editor without the graphical mode (which is a joke anyway ), oh come now...

Last edited by alienDog; 01-10-2006 at 08:40 AM.
 
Old 01-10-2006, 11:57 PM   #14
anjanesh
Member
 
Registered: Sep 2004
Location: Navi Mumbai
Distribution: Ubuntu 14.04 64-bit
Posts: 230

Original Poster
Rep: Reputation: 30
Quote:
try out mc,(certainly not as good as vi), but a breeze to use.
Anyways you will find it as good as that edit in stupid W**dows.
Hey - mc is pretty good - how is that its not better than vi ?
 
Old 01-11-2006, 12:22 AM   #15
Amar Ujala
LQ Newbie
 
Registered: Jan 2006
Posts: 2

Rep: Reputation: 0
You can use ed command
 
  


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
Terragen Alternative AMMullan Linux - Software 1 09-07-2006 02:25 AM
Alternative to Cubase? little_penguin Linux - Software 7 05-13-2005 11:48 PM
IE alternative jkassemi Linux - Software 12 04-11-2005 10:35 PM
No Alternative to MS? nuka_t General 6 01-14-2005 12:32 PM
du alternative plisken Linux - General 3 07-09-2003 10:28 PM

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

All times are GMT -5. The time now is 11:56 PM.

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