Notepad++ NppFTP alternative in linux












2















I know there are questions about notepad++ here but mine is a bit different. I am developing a website and with the NppFTP plugin in Notepad++ I am able to directly connect to the server that contains the site I am working on. I am able to create/edit/delete pages/content etc. Is there something similiar in Linux. Any tool that will let me edit pages directly on the server. Any help would be appreciated.










share|improve this question



























    2















    I know there are questions about notepad++ here but mine is a bit different. I am developing a website and with the NppFTP plugin in Notepad++ I am able to directly connect to the server that contains the site I am working on. I am able to create/edit/delete pages/content etc. Is there something similiar in Linux. Any tool that will let me edit pages directly on the server. Any help would be appreciated.










    share|improve this question

























      2












      2








      2








      I know there are questions about notepad++ here but mine is a bit different. I am developing a website and with the NppFTP plugin in Notepad++ I am able to directly connect to the server that contains the site I am working on. I am able to create/edit/delete pages/content etc. Is there something similiar in Linux. Any tool that will let me edit pages directly on the server. Any help would be appreciated.










      share|improve this question














      I know there are questions about notepad++ here but mine is a bit different. I am developing a website and with the NppFTP plugin in Notepad++ I am able to directly connect to the server that contains the site I am working on. I am able to create/edit/delete pages/content etc. Is there something similiar in Linux. Any tool that will let me edit pages directly on the server. Any help would be appreciated.







      server plugins webserver websites






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 7 '13 at 21:07









      SashoSasho

      2124




      2124






















          4 Answers
          4






          active

          oldest

          votes


















          0














          Sublime text with Ftpsync plugin. https://github.com/NoxArt/SublimeText2-FTPSync or



          Sublime SFTP(paid)



          2 Install curlftpfs and use this to mount ftp site locally.



          sudo apt-get install curlftpfs


          Let's say here's the detail



          My ftp User: surendra_a



          My ftp password: redhat



          My ftp Server: ftp2.linuxnix.com



          My mount point: /ftpmount



          Now create the mount point and mount ftp account data.



          mkdir /ftpmount
          curlftpfs -o allow_other surendra_a:redhat@ftp2.linuxnix.com /ftpmount


          This way you can use any text editor.



          More details here.






          share|improve this answer































            0














            Just use nautilus to connect to the server, then you can use any program that you like to edit those files.



            To connect to the server, open the file manager (Nautilus), hit CTRL+L and type in the bar the server address (somthing like ftp://ftp.server.com). A window will open asking for an user name and a password. Afterwards the remote folder will appear on the left bar and you can use any program to save or edit files in it.






            share|improve this answer































              0














              You can use jEditInstall jEdit with the FTP plugin.



              jEdit FTP Plugin description:



              The FTP plugin plugs into jEdit's virtual filesystem to allow transparent access to 
              (S)FTP servers. It integrates with the filesystem browser (hence you can do things like
              add favorites which point to remote servers, and such), caches remote directory listings
              for improved performance, remembers passwords, and has optional support for passive-mode
              FTP.

              In addition, when running on Java 2 version 1.5, the FTP plugin can edit and browse files
              stored on SFTP servers.


              jEdit Website






              share|improve this answer

































                0














                Emacs and the Tramp extension does that and more. It supports ssh, sftp and the old insecure ftp extension. And yes, it works like editing the file locally. No need to anything extra installed.
                Just open the file like this in Emacs: C-x C-f /user@machine:/path/to/file



                But if you are serious working with a website or something like that, you should use a version control system like git or subversion. So when you want to put the data on the server, you just check it out from the repository into the server. That allows you to make lots of tests, and always back upp to previous version if it doesn't work. Even work on many different versions at the same time.



                Yes, Emacs have good support for many different version controll systems too.






                share|improve this answer

























                  Your Answer








                  StackExchange.ready(function() {
                  var channelOptions = {
                  tags: "".split(" "),
                  id: "89"
                  };
                  initTagRenderer("".split(" "), "".split(" "), channelOptions);

                  StackExchange.using("externalEditor", function() {
                  // Have to fire editor after snippets, if snippets enabled
                  if (StackExchange.settings.snippets.snippetsEnabled) {
                  StackExchange.using("snippets", function() {
                  createEditor();
                  });
                  }
                  else {
                  createEditor();
                  }
                  });

                  function createEditor() {
                  StackExchange.prepareEditor({
                  heartbeatType: 'answer',
                  autoActivateHeartbeat: false,
                  convertImagesToLinks: true,
                  noModals: true,
                  showLowRepImageUploadWarning: true,
                  reputationToPostImages: 10,
                  bindNavPrevention: true,
                  postfix: "",
                  imageUploader: {
                  brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                  contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                  allowUrls: true
                  },
                  onDemand: true,
                  discardSelector: ".discard-answer"
                  ,immediatelyShowMarkdownHelp:true
                  });


                  }
                  });














                  draft saved

                  draft discarded


















                  StackExchange.ready(
                  function () {
                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f317539%2fnotepad-nppftp-alternative-in-linux%23new-answer', 'question_page');
                  }
                  );

                  Post as a guest















                  Required, but never shown

























                  4 Answers
                  4






                  active

                  oldest

                  votes








                  4 Answers
                  4






                  active

                  oldest

                  votes









                  active

                  oldest

                  votes






                  active

                  oldest

                  votes









                  0














                  Sublime text with Ftpsync plugin. https://github.com/NoxArt/SublimeText2-FTPSync or



                  Sublime SFTP(paid)



                  2 Install curlftpfs and use this to mount ftp site locally.



                  sudo apt-get install curlftpfs


                  Let's say here's the detail



                  My ftp User: surendra_a



                  My ftp password: redhat



                  My ftp Server: ftp2.linuxnix.com



                  My mount point: /ftpmount



                  Now create the mount point and mount ftp account data.



                  mkdir /ftpmount
                  curlftpfs -o allow_other surendra_a:redhat@ftp2.linuxnix.com /ftpmount


                  This way you can use any text editor.



                  More details here.






                  share|improve this answer




























                    0














                    Sublime text with Ftpsync plugin. https://github.com/NoxArt/SublimeText2-FTPSync or



                    Sublime SFTP(paid)



                    2 Install curlftpfs and use this to mount ftp site locally.



                    sudo apt-get install curlftpfs


                    Let's say here's the detail



                    My ftp User: surendra_a



                    My ftp password: redhat



                    My ftp Server: ftp2.linuxnix.com



                    My mount point: /ftpmount



                    Now create the mount point and mount ftp account data.



                    mkdir /ftpmount
                    curlftpfs -o allow_other surendra_a:redhat@ftp2.linuxnix.com /ftpmount


                    This way you can use any text editor.



                    More details here.






                    share|improve this answer


























                      0












                      0








                      0







                      Sublime text with Ftpsync plugin. https://github.com/NoxArt/SublimeText2-FTPSync or



                      Sublime SFTP(paid)



                      2 Install curlftpfs and use this to mount ftp site locally.



                      sudo apt-get install curlftpfs


                      Let's say here's the detail



                      My ftp User: surendra_a



                      My ftp password: redhat



                      My ftp Server: ftp2.linuxnix.com



                      My mount point: /ftpmount



                      Now create the mount point and mount ftp account data.



                      mkdir /ftpmount
                      curlftpfs -o allow_other surendra_a:redhat@ftp2.linuxnix.com /ftpmount


                      This way you can use any text editor.



                      More details here.






                      share|improve this answer













                      Sublime text with Ftpsync plugin. https://github.com/NoxArt/SublimeText2-FTPSync or



                      Sublime SFTP(paid)



                      2 Install curlftpfs and use this to mount ftp site locally.



                      sudo apt-get install curlftpfs


                      Let's say here's the detail



                      My ftp User: surendra_a



                      My ftp password: redhat



                      My ftp Server: ftp2.linuxnix.com



                      My mount point: /ftpmount



                      Now create the mount point and mount ftp account data.



                      mkdir /ftpmount
                      curlftpfs -o allow_other surendra_a:redhat@ftp2.linuxnix.com /ftpmount


                      This way you can use any text editor.



                      More details here.







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Jul 7 '13 at 22:03









                      jahid65jahid65

                      1,639195




                      1,639195

























                          0














                          Just use nautilus to connect to the server, then you can use any program that you like to edit those files.



                          To connect to the server, open the file manager (Nautilus), hit CTRL+L and type in the bar the server address (somthing like ftp://ftp.server.com). A window will open asking for an user name and a password. Afterwards the remote folder will appear on the left bar and you can use any program to save or edit files in it.






                          share|improve this answer




























                            0














                            Just use nautilus to connect to the server, then you can use any program that you like to edit those files.



                            To connect to the server, open the file manager (Nautilus), hit CTRL+L and type in the bar the server address (somthing like ftp://ftp.server.com). A window will open asking for an user name and a password. Afterwards the remote folder will appear on the left bar and you can use any program to save or edit files in it.






                            share|improve this answer


























                              0












                              0








                              0







                              Just use nautilus to connect to the server, then you can use any program that you like to edit those files.



                              To connect to the server, open the file manager (Nautilus), hit CTRL+L and type in the bar the server address (somthing like ftp://ftp.server.com). A window will open asking for an user name and a password. Afterwards the remote folder will appear on the left bar and you can use any program to save or edit files in it.






                              share|improve this answer













                              Just use nautilus to connect to the server, then you can use any program that you like to edit those files.



                              To connect to the server, open the file manager (Nautilus), hit CTRL+L and type in the bar the server address (somthing like ftp://ftp.server.com). A window will open asking for an user name and a password. Afterwards the remote folder will appear on the left bar and you can use any program to save or edit files in it.







                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered Jul 7 '13 at 22:15









                              Javier RiveraJavier Rivera

                              30k978101




                              30k978101























                                  0














                                  You can use jEditInstall jEdit with the FTP plugin.



                                  jEdit FTP Plugin description:



                                  The FTP plugin plugs into jEdit's virtual filesystem to allow transparent access to 
                                  (S)FTP servers. It integrates with the filesystem browser (hence you can do things like
                                  add favorites which point to remote servers, and such), caches remote directory listings
                                  for improved performance, remembers passwords, and has optional support for passive-mode
                                  FTP.

                                  In addition, when running on Java 2 version 1.5, the FTP plugin can edit and browse files
                                  stored on SFTP servers.


                                  jEdit Website






                                  share|improve this answer






























                                    0














                                    You can use jEditInstall jEdit with the FTP plugin.



                                    jEdit FTP Plugin description:



                                    The FTP plugin plugs into jEdit's virtual filesystem to allow transparent access to 
                                    (S)FTP servers. It integrates with the filesystem browser (hence you can do things like
                                    add favorites which point to remote servers, and such), caches remote directory listings
                                    for improved performance, remembers passwords, and has optional support for passive-mode
                                    FTP.

                                    In addition, when running on Java 2 version 1.5, the FTP plugin can edit and browse files
                                    stored on SFTP servers.


                                    jEdit Website






                                    share|improve this answer




























                                      0












                                      0








                                      0







                                      You can use jEditInstall jEdit with the FTP plugin.



                                      jEdit FTP Plugin description:



                                      The FTP plugin plugs into jEdit's virtual filesystem to allow transparent access to 
                                      (S)FTP servers. It integrates with the filesystem browser (hence you can do things like
                                      add favorites which point to remote servers, and such), caches remote directory listings
                                      for improved performance, remembers passwords, and has optional support for passive-mode
                                      FTP.

                                      In addition, when running on Java 2 version 1.5, the FTP plugin can edit and browse files
                                      stored on SFTP servers.


                                      jEdit Website






                                      share|improve this answer















                                      You can use jEditInstall jEdit with the FTP plugin.



                                      jEdit FTP Plugin description:



                                      The FTP plugin plugs into jEdit's virtual filesystem to allow transparent access to 
                                      (S)FTP servers. It integrates with the filesystem browser (hence you can do things like
                                      add favorites which point to remote servers, and such), caches remote directory listings
                                      for improved performance, remembers passwords, and has optional support for passive-mode
                                      FTP.

                                      In addition, when running on Java 2 version 1.5, the FTP plugin can edit and browse files
                                      stored on SFTP servers.


                                      jEdit Website







                                      share|improve this answer














                                      share|improve this answer



                                      share|improve this answer








                                      edited Mar 11 '17 at 19:02









                                      Community

                                      1




                                      1










                                      answered Jul 7 '13 at 22:23









                                      rahulesrahules

                                      3421313




                                      3421313























                                          0














                                          Emacs and the Tramp extension does that and more. It supports ssh, sftp and the old insecure ftp extension. And yes, it works like editing the file locally. No need to anything extra installed.
                                          Just open the file like this in Emacs: C-x C-f /user@machine:/path/to/file



                                          But if you are serious working with a website or something like that, you should use a version control system like git or subversion. So when you want to put the data on the server, you just check it out from the repository into the server. That allows you to make lots of tests, and always back upp to previous version if it doesn't work. Even work on many different versions at the same time.



                                          Yes, Emacs have good support for many different version controll systems too.






                                          share|improve this answer






























                                            0














                                            Emacs and the Tramp extension does that and more. It supports ssh, sftp and the old insecure ftp extension. And yes, it works like editing the file locally. No need to anything extra installed.
                                            Just open the file like this in Emacs: C-x C-f /user@machine:/path/to/file



                                            But if you are serious working with a website or something like that, you should use a version control system like git or subversion. So when you want to put the data on the server, you just check it out from the repository into the server. That allows you to make lots of tests, and always back upp to previous version if it doesn't work. Even work on many different versions at the same time.



                                            Yes, Emacs have good support for many different version controll systems too.






                                            share|improve this answer




























                                              0












                                              0








                                              0







                                              Emacs and the Tramp extension does that and more. It supports ssh, sftp and the old insecure ftp extension. And yes, it works like editing the file locally. No need to anything extra installed.
                                              Just open the file like this in Emacs: C-x C-f /user@machine:/path/to/file



                                              But if you are serious working with a website or something like that, you should use a version control system like git or subversion. So when you want to put the data on the server, you just check it out from the repository into the server. That allows you to make lots of tests, and always back upp to previous version if it doesn't work. Even work on many different versions at the same time.



                                              Yes, Emacs have good support for many different version controll systems too.






                                              share|improve this answer















                                              Emacs and the Tramp extension does that and more. It supports ssh, sftp and the old insecure ftp extension. And yes, it works like editing the file locally. No need to anything extra installed.
                                              Just open the file like this in Emacs: C-x C-f /user@machine:/path/to/file



                                              But if you are serious working with a website or something like that, you should use a version control system like git or subversion. So when you want to put the data on the server, you just check it out from the repository into the server. That allows you to make lots of tests, and always back upp to previous version if it doesn't work. Even work on many different versions at the same time.



                                              Yes, Emacs have good support for many different version controll systems too.







                                              share|improve this answer














                                              share|improve this answer



                                              share|improve this answer








                                              edited Jul 8 '13 at 20:21

























                                              answered Jul 8 '13 at 20:11









                                              AndersAnders

                                              1,363712




                                              1,363712






























                                                  draft saved

                                                  draft discarded




















































                                                  Thanks for contributing an answer to Ask Ubuntu!


                                                  • Please be sure to answer the question. Provide details and share your research!

                                                  But avoid



                                                  • Asking for help, clarification, or responding to other answers.

                                                  • Making statements based on opinion; back them up with references or personal experience.


                                                  To learn more, see our tips on writing great answers.




                                                  draft saved


                                                  draft discarded














                                                  StackExchange.ready(
                                                  function () {
                                                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f317539%2fnotepad-nppftp-alternative-in-linux%23new-answer', 'question_page');
                                                  }
                                                  );

                                                  Post as a guest















                                                  Required, but never shown





















































                                                  Required, but never shown














                                                  Required, but never shown












                                                  Required, but never shown







                                                  Required, but never shown

































                                                  Required, but never shown














                                                  Required, but never shown












                                                  Required, but never shown







                                                  Required, but never shown







                                                  Popular posts from this blog

                                                  How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

                                                  is 'sed' thread safe

                                                  How to make a Squid Proxy server?