1

I am new to Jquery terminal. Can i use this to connect to remote unix/linux host though web browser? I don't find examples on this do you have any examples? I am also interested even if there something in angular.

Pedro Lobito
  • 94,083
  • 31
  • 258
  • 268
Kiran
  • 839
  • 3
  • 15
  • 45

1 Answers1

0

Can i use this to connect to remote unix/linux host though web browser?

NO.

JQuery Terminal Emulator is a plugin for creating command line interpreters in your applications. It can automatically call JSON-RPC service when user type commands or you can provide an object with methods, each method will be invoke on user command. Object can have nested objects which will create nested interpreter. You can also use a function in which you can parse user command by your own. It′s ideal if you want to provide additional functionality for power users. It can also be used as debuging tool.

http://terminal.jcubic.pl/

Pedro Lobito
  • 94,083
  • 31
  • 258
  • 268
  • Do you have any suggestion for embedded ssh terminal in a web page. something like this: http://stackoverflow.com/questions/36988171/web-based-ssh-terminal-to-connect-to-remote-machines – Kiran May 02 '16 at 23:45
  • You can try https://github.com/shellinabox/shellinabox or https://addons.mozilla.org/en-US/firefox/addon/firessh/ – Pedro Lobito May 02 '16 at 23:50
  • for shell in a box i need to install server on particular port number on each of the remote systems that I have. as per my requirement I can not install anything on the remote machine, i just need console to be opened in the browser tab. Users may use any kind of browser and may not force them to use plugins. – Kiran May 02 '16 at 23:54
  • https://github.com/JohnTroony/php-webshells - tons of php web-shells. **BE CAREFUL WITH THAT !** – Pedro Lobito May 02 '16 at 23:56