Emulador de terminal baseado na web multi-plataforma

1

Existe um emulador de terminal baseado na web compatível com todos os dispositivos, como navegador de PC, smarthphone e tablets (android e iOs)?

Eu tentei o shellinabox, mas no iOS não funciona corretamente (não consigo ativar o teclado no navegador Safari).

    
por anerdev 28.02.2015 / 18:04

1 resposta

0

É este o bug que você está falando? Aparentemente, há alguns códigos de hackers que precisam ser feitos ... para que funcione.

I found out that on iPad this.isEmbedded isn't set correctly. It seems that the Mobile Safari doesn't support some attributes for the screen. So this.isEmbedded is set to true, when it shouldn't be. A quick hack: In vt100.js add the following code lines after the first occurence of this.isEmbedded

var isMobile = navigator.userAgent.match(/iPad|iPhone|iPod/i) != null; if (isMobile) { this.isEmbedded = false; }

It's only a quick hack;-) It's sad that the iPad keyboard doesn't have a tab key. http://code.google.com/p/shellinabox/issues/detail?id=64

De qualquer forma, para esse tipo de coisa, acho que o link do site é ótimo para isso. Apenas digite alternativeto e o nome do programa em seu mecanismo de busca favorito e você normalmente acabará com algumas outras alternativas viáveis (por exemplo, TinyShell, KeyBox, Gate One, Onion Terminal, AnyTerm, AjaxTerm, etc ...).

link

    
por 28.02.2015 / 21:36

Tags