summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyo Nakamura <upa@haeena.net>2022-10-30 23:49:28 +0900
committerRyo Nakamura <upa@haeena.net>2022-10-30 23:51:53 +0900
commit3de70300f76ecfb720acd9816d280e4827e8ec8c (patch)
tree236558fed206ff70002233190988e0c95b6577d8
parent548565d888e9b974162ec07046bce0c39c2a789a (diff)
update README. add rhel instruction and fix build steps
-rw-r--r--README.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index 71a58a4..677b788 100644
--- a/README.md
+++ b/README.md
@@ -24,16 +24,20 @@ brew install libssh
sudo apt-get install libssh-dev
```
+- rhel
+
+```console
+sudo yum install libssh-devel
+```
+
Clone and build this repositoy.
```console
git clone https://github.com/upa/mscp.git
cd mscp
-mkdir build
-cd build
-cmake ..
-make
+mkdir build && cd build
+cmake .. && make
# install the mscp binary to CMAKE_INSTALL_PREFIX/bin (usually /usr/local/bin)
make install