This is a discussion on question about linux editor within the PHP General forums, part of the PHP Programming Forums category; i need to connect to the linux server using an editor. can anyone suggest which would be an ideal linux ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
i need to connect to the linux server using an editor. can anyone suggest
which would be an ideal linux editor to connect to the server. apart from the ip address, username and password are there any other details i would need to connect to the server. please advice. thanks. |
|
|||
|
On Mon, Mar 24, 2008 at 7:28 PM, Sudhakar <sudhakararaog@gmail.com> wrote:
> i need to connect to the linux server using an editor. can anyone suggest > which would be an ideal linux editor to connect to the server. > apart from the ip address, username and password are there any other details > i would need to connect to the server. > > please advice. > > thanks. > Putty! -- -Casey |
|
|||
|
Casey wrote:
> On Mon, Mar 24, 2008 at 7:28 PM, Sudhakar <sudhakararaog@gmail.com> wrote: >> i need to connect to the linux server using an editor. can anyone suggest >> which would be an ideal linux editor to connect to the server. >> apart from the ip address, username and password are there any other details >> i would need to connect to the server. >> >> please advice. >> >> thanks. >> > > Putty! > er... no... he said from Linux! :) -- Mark ------------------------- the rule of law is good, however the rule of tyrants just plain sucks! Real Tax Reform begins with getting rid of the IRS. ============================================== Powered by CentOS5 (RHEL5) |
|
|||
|
On Mon, Mar 24, 2008 at 8:09 PM, Mark Weaver <mdw1982@mdw1982.com> wrote:
> > Casey wrote: > > On Mon, Mar 24, 2008 at 7:28 PM, Sudhakar <sudhakararaog@gmail.com> wrote: > >> i need to connect to the linux server using an editor. can anyone suggest > >> which would be an ideal linux editor to connect to the server. > >> apart from the ip address, username and password are there any other details > >> i would need to connect to the server. > >> > >> please advice. > >> > >> thanks. > >> > > > > Putty! > > > > er... no... he said from Linux! :) > No, he said /to/ Linux! :0 -- -Casey |
|
|||
|
Sudhakar wrote:
> i need to connect to the linux server using an editor. can anyone suggest > which would be an ideal linux editor to connect to the server. > apart from the ip address, username and password are there any other details > i would need to connect to the server. > > please advice. > > thanks. > gedit |
|
|||
|
On Tue, 25 Mar 2008 11:28:07 +0900, Sudhakar wrote:
>i need to connect to the linux server using an editor. can anyone suggest >which would be an ideal linux editor to connect to the server. Geany - http://geany.uvena.de/ Also look at: Quanta Plus - http://quanta.kdewebdev.org/ Bluefish - http://bluefish.openoffice.nl/ Zend Studio (not free) - http://www.zend.com/en/products/studio/ >apart from the ip address, username and password are there any other details >i would need to connect to the server. How are you proposing to connect? e.g. * FTP down the files, edit them, FTP them up again * mount the remote server via NFS * mount the remote server locally via SFTP * run the editor remotely: ssh -Y username@remoteserver etc. A conventional way would be to have a development environment locally, into which you transfer the files from the Linux server, edit them, TEST! them, and transfer back the changes (e.g. via FTP). -- Ross McKay, Toronto, NSW Australia "Let the laddie play wi the knife - he'll learn" - The Wee Book of Calvin |
|
|||
|
On Mon, Mar 24, 2008 at 10:28 PM, Sudhakar <sudhakararaog@gmail.com> wrote:
> i need to connect to the linux server using an editor. can anyone suggest > which would be an ideal linux editor to connect to the server. > apart from the ip address, username and password are there any other details > i would need to connect to the server. An editor would be what you would use once you're already connected to the server (or once you've synchronized files with your local machine). I'm a command-line junkie, and a full-time Linux user (with the exception of my PDA and half of my laptop). So I SSH into the remote server and use 'vi' to edit the files. From the command line on an SSH connection, some of the editors you'll have available to you in almost all cases are vi/vim, pico/nano, and ed, among others. -- </Daniel P. Brown> Forensic Services, Senior Unix Engineer 1+ (570-) 362-0283 |
|
|||
|
Sudhakar wrote:
> i need to connect to the linux server using an editor. can anyone suggest > which would be an ideal linux editor to connect to the server. > apart from the ip address, username and password are there any other details > i would need to connect to the server. > > please advice. > > thanks. > I also will typically use SSH + vi, but Zend Studio (not sure about Eclipse) can open an SSH connection and edit files that way. -- Ray Hauge www.primateapplications.com |