Update README.md with Debian info
This update is related to issues: #227, #181, #193 ...
This commit is contained in:
parent
1fc7a14c19
commit
57cb829be9
1 changed files with 37 additions and 12 deletions
49
README.md
49
README.md
|
@ -3,15 +3,15 @@ shellinabox
|
||||||
===========
|
===========
|
||||||
|
|
||||||
This is unofficial fork of project **shellinabox**. Fork was created because
|
This is unofficial fork of project **shellinabox**. Fork was created because
|
||||||
original project is not maintained anymore and we cannot contact original
|
original project is not maintained anymore and we cannot contact original
|
||||||
repository owners.
|
repository owners.
|
||||||
|
|
||||||
Our aim is to continue with maintanince of shellinabox project. For list of
|
Our aim is to continue with maintanince of shellinabox project. For list of
|
||||||
recent changes please see [CHANGELOG.md](/CHANGELOG.md).
|
recent changes please see [CHANGELOG.md](/CHANGELOG.md).
|
||||||
|
|
||||||
If you have any questions, issues or patches, please fell free to submit pull
|
If you have any questions, issues or patches, please fell free to submit pull
|
||||||
request or report an issue. You can also drop an email to original project
|
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
|
[issue #261](https://code.google.com/p/shellinabox/issues/detail?id=261) discusion
|
||||||
from where this fork started.
|
from where this fork started.
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ browser plugins.
|
||||||
|
|
||||||
![Shell In A Box preview](/misc/preview.png?raw=true)
|
![Shell In A Box preview](/misc/preview.png?raw=true)
|
||||||
|
|
||||||
More information:
|
More information:
|
||||||
|
|
||||||
* [Official site](https://code.google.com/p/shellinabox)
|
* [Official site](https://code.google.com/p/shellinabox)
|
||||||
* [Official wiki](https://code.google.com/p/shellinabox/wiki/shellinaboxd_man)
|
* [Official wiki](https://code.google.com/p/shellinabox/wiki/shellinaboxd_man)
|
||||||
|
@ -34,28 +34,53 @@ More information:
|
||||||
Build
|
Build
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
For building **shellinabox** from source on Ubuntu use commands listed below.
|
For building **shellianbox** from source on Debian based systems use commands listed
|
||||||
|
below. This will create executable file `shellinaboxd` in project directory.
|
||||||
|
|
||||||
1. Install dependencies
|
1. Install dependencies
|
||||||
|
|
||||||
```
|
```
|
||||||
apt-get install git dpkg-dev debhelper autotools-dev libssl-dev libpam0g-dev zlib1g-dev libssl1.0.0 libpam0g
|
apt-get install git dpkg-dev debhelper autotools-dev libssl-dev libpam0g-dev zlib1g-dev libssl1.0.0 libpam0g
|
||||||
```
|
```
|
||||||
2. Clone sources and move to project directory
|
|
||||||
|
2. Clone source files and move to project directory
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone https://github.com/shellinabox/shellinabox.git && cd shellinabox
|
git clone https://github.com/shellinabox/shellinabox.git && cd shellinabox
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Run autotools in project directory
|
3. Run autotools in project directory
|
||||||
|
|
||||||
```
|
```
|
||||||
autoreconf -i
|
autoreconf -i
|
||||||
```
|
```
|
||||||
4. Configure and make in project directory
|
|
||||||
|
4. Run configure and make in project directory
|
||||||
|
|
||||||
```
|
```
|
||||||
./configure && make
|
./configure && make
|
||||||
```
|
```
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
Issues
|
Issues
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
All reported issues were imported from [Google Code Project Issues](https://code.google.com/p/shellinabox/issues/list).
|
All reported issues were imported from [Google Code Project Issues](https://code.google.com/p/shellinabox/issues/list).
|
||||||
You can report new issues here, but please try to reproduce them on our sources.
|
You can report new issues here, but first please try to reproduce them with package
|
||||||
|
created from our sources.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue