红联Linux门户
Linux帮助

使用浏览器访问Linux终端的方法

发布时间:2015-12-18 21:41:52来源:linux网站作者:独钓渔

wssh 可以让我们通过 HTTP 来调用远程的一个 shell,也就是说我们可以用浏览器来访问某个 Linux 服务器/虚拟机的终端(只要这个服务器上运行了 wsshd 服务器端)。wssh 客户端通过 ssh 帐号连接到 wsshd 服务器端。wssh 更多的是当作库来开发一些应用,比如开发云计算、虚拟机后台控制面板的虚拟机控制台等等。我们先来玩一下简单的。


安装一些必要软件:

$ sudo apt-get install git gcc python libevent-dev python-dev python-pip

安装 wssh 需要的各种 Python 库:

$ sudo pip install gevent gevent-websocket paramiko flask


下载并安装 wssh:

$ git clone https://github.com/aluzzardi/wssh.git
$ cd wssh
$ sudo python setup.py install


运行 wsshd:

$ wsshd
wsshd/0.1.0 running on 0.0.0.0:5000


从浏览器打开 http://IP:5000 后会看到如下登陆界面:

使用浏览器访问Linux终端的方法

使用 ssh 帐号登陆后就可以看到终端了:

使用浏览器访问Linux终端的方法

 
大话Linux终端:http://www.linuxdiyf.com/linux/16556.html

个性化您的Ubuntu Linux终端:http://www.linuxdiyf.com/linux/14074.html

看这些孩子在Ubuntu的Linux终端下玩耍:http://www.linuxdiyf.com/linux/13679.html

11个无用而有趣的Linux终端彩蛋:http://www.linuxdiyf.com/linux/12674.html

11个让你吃惊的Linux终端命令:http://www.linuxdiyf.com/linux/12138.html