mirror of https://github.com/cowrie/cowrie.git
install
This commit is contained in:
parent
2f13930061
commit
2037e71c08
|
@ -0,0 +1,42 @@
|
||||||
|
# Installation
|
||||||
|
|
||||||
|
Installing cowrie in six easy steps.
|
||||||
|
It's recommended to install under a separate non-root user id:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ sudo adduser --disabled-password cowrie
|
||||||
|
Adding user `cowrie' ...
|
||||||
|
Adding new group `cowrie' (1002) ...
|
||||||
|
Adding new user `cowrie' (1002) with group `cowrie' ...
|
||||||
|
The home directory `/home/cowrie' already exists. Not copying from `/etc/skel'.
|
||||||
|
Changing the user information for cowrie
|
||||||
|
Enter the new value, or press ENTER for the default
|
||||||
|
Full Name []:
|
||||||
|
Room Number []:
|
||||||
|
Work Phone []:
|
||||||
|
Home Phone []:
|
||||||
|
Other []:
|
||||||
|
Is the information correct? [Y/n]
|
||||||
|
|
||||||
|
$ sudo su - cowrie
|
||||||
|
|
||||||
|
$ git clone http://github.com/micheloosterhof/cowrie
|
||||||
|
Cloning into 'cowrie'...
|
||||||
|
remote: Counting objects: 2965, done.
|
||||||
|
remote: Compressing objects: 100% (1025/1025), done.
|
||||||
|
remote: Total 2965 (delta 1908), reused 2962 (delta 1905), pack-reused 0
|
||||||
|
Receiving objects: 100% (2965/2965), 3.41 MiB | 2.57 MiB/s, done.
|
||||||
|
Resolving deltas: 100% (1908/1908), done.
|
||||||
|
Checking connectivity... done.
|
||||||
|
cowrie@oxygen:~$
|
||||||
|
|
||||||
|
$ cd cowrie
|
||||||
|
|
||||||
|
$ cp cowrie.cfg.dist cowrie.cfg
|
||||||
|
|
||||||
|
$ ./start.sh
|
||||||
|
$ ./start.sh
|
||||||
|
Starting cowrie in the background...
|
||||||
|
```
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ contents_path = honeyfs
|
||||||
# a real template linux installation.
|
# a real template linux installation.
|
||||||
#
|
#
|
||||||
# (default: fs.pickle)
|
# (default: fs.pickle)
|
||||||
filesystem_file = fs.pickle
|
filesystem_file = data/fs.pickle
|
||||||
|
|
||||||
# Directory for miscellaneous data files, such as the password database.
|
# Directory for miscellaneous data files, such as the password database.
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue