2015-03-06 16:07:22 +01:00
|
|
|
|
|
|
|
shellinabox
|
|
|
|
===========
|
|
|
|
|
|
|
|
This is unofficial fork of project **shellinabox**. Fork was created because
|
2015-03-13 13:09:19 +01:00
|
|
|
original project is not maintained anymore and we cannot contact original
|
2015-03-06 16:07:22 +01:00
|
|
|
repository owners.
|
|
|
|
|
2015-03-12 15:28:14 +01:00
|
|
|
Our aim is to continue with maintanince of shellinabox project. For list of
|
|
|
|
recent changes please see [CHANGELOG.md](/CHANGELOG.md).
|
2015-03-06 16:07:22 +01:00
|
|
|
|
|
|
|
If you have any questions, issues or patches, please fell free to submit pull
|
2015-03-13 13:09:19 +01:00
|
|
|
request or report an issue. You can also drop an email to original project
|
|
|
|
[issue #261](https://code.google.com/p/shellinabox/issues/detail?id=261) discusion
|
2015-03-06 16:07:22 +01:00
|
|
|
from where this fork started.
|
|
|
|
|
|
|
|
|
|
|
|
About shellinabox
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
Shell In A Box implements a web server that can export arbitrary command line
|
|
|
|
tools to a web based terminal emulator. This emulator is accessible to any
|
|
|
|
JavaScript and CSS enabled web browser and does not require any additional
|
|
|
|
browser plugins.
|
|
|
|
|
2015-03-12 15:28:14 +01:00
|
|
|
![Shell In A Box preview](/misc/preview.png?raw=true)
|
|
|
|
|
2015-03-13 13:09:19 +01:00
|
|
|
More information:
|
2015-03-06 16:07:22 +01:00
|
|
|
|
|
|
|
* [Official site](https://code.google.com/p/shellinabox)
|
|
|
|
* [Official wiki](https://code.google.com/p/shellinabox/wiki/shellinaboxd_man)
|
|
|
|
|
2015-03-12 15:28:14 +01:00
|
|
|
|
|
|
|
Build
|
|
|
|
-----------------
|
|
|
|
|
2015-03-13 13:09:19 +01:00
|
|
|
For building **shellianbox** from source on Debian based systems use commands listed
|
|
|
|
below. This will create executable file `shellinaboxd` in project directory.
|
2015-03-12 15:28:14 +01:00
|
|
|
|
|
|
|
1. Install dependencies
|
2015-03-13 13:09:19 +01:00
|
|
|
|
2015-03-12 15:28:14 +01:00
|
|
|
```
|
2015-03-13 13:09:19 +01:00
|
|
|
apt-get install git dpkg-dev debhelper autotools-dev libssl-dev libpam0g-dev zlib1g-dev libssl1.0.0 libpam0g
|
2015-03-12 15:28:14 +01:00
|
|
|
```
|
2015-03-13 13:09:19 +01:00
|
|
|
|
|
|
|
2. Clone source files and move to project directory
|
|
|
|
|
2015-03-12 15:28:14 +01:00
|
|
|
```
|
2015-03-13 13:09:19 +01:00
|
|
|
git clone https://github.com/shellinabox/shellinabox.git && cd shellinabox
|
2015-03-12 15:28:14 +01:00
|
|
|
```
|
2015-03-13 13:09:19 +01:00
|
|
|
|
2015-03-12 15:28:14 +01:00
|
|
|
3. Run autotools in project directory
|
2015-03-13 13:09:19 +01:00
|
|
|
|
2015-03-12 15:28:14 +01:00
|
|
|
```
|
2015-03-13 13:09:19 +01:00
|
|
|
autoreconf -i
|
2015-03-12 15:28:14 +01:00
|
|
|
```
|
2015-03-13 13:09:19 +01:00
|
|
|
|
|
|
|
4. Run configure and make in project directory
|
|
|
|
|
2015-03-12 15:28:14 +01:00
|
|
|
```
|
2015-03-13 13:09:19 +01:00
|
|
|
./configure && make
|
2015-03-12 15:28:14 +01:00
|
|
|
```
|
|
|
|
|
2015-03-13 13:09:19 +01:00
|
|
|
For building and installing `.deb` packages you can use commands listed bellow.
|
|
|
|
|
|
|
|
1. Build package
|
|
|
|
|
|
|
|
```
|
|
|
|
dpkg-buildpackage -b
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Install package
|
|
|
|
|
|
|
|
```
|
|
|
|
dpkg -i ../shellianbox_{ver}_{arch}.deb
|
|
|
|
```
|
|
|
|
|
|
|
|
For more information about `.deb` packages please see [INSTALL.Debian](/INSTALL.Debian) file.
|
|
|
|
|
2015-03-12 15:28:14 +01:00
|
|
|
Issues
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
All reported issues were imported from [Google Code Project Issues](https://code.google.com/p/shellinabox/issues/list).
|
2015-03-13 13:09:19 +01:00
|
|
|
You can report new issues here, but first please try to reproduce them with package
|
|
|
|
created from our sources.
|
2015-03-12 15:28:14 +01:00
|
|
|
|