forked from emptymonkey/revsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
42 lines (29 loc) · 1.09 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
################################################################################
# Build OpenSSL
################################################################################
# Download OpenSSL source.
git clone --branch OpenSSL_1_1_0-stable https://github.com/openssl/openssl.git
cd openssl/
# Configure OpenSSL to be used in building static applications.
./config no-shared -static
# Build the libraries and leave the directory.
make && make test
cd ..
################################################################################
# Build revsh
################################################################################
# Download the revsh source code.
git clone https://github.com/emptymonkey/revsh.git
cd revsh
# Set up new defaults that fit your situation. (Optional.)
vi config.h
# Set install directories and pick build type. (Optional.)
vi Makefile
# Build revsh.
## This *can* take a very long time, though it usually doesn't.
make
make install
# Add your favorite startup commands to really customize the feel of your remote shell. (Optional.)
vi ~/.revsh/rc
# Ready to go!
revsh -h