update README. add rhel instruction and fix build steps

This commit is contained in:
Ryo Nakamura
2022-10-30 23:49:28 +09:00
parent 548565d888
commit 3de70300f7

View File

@@ -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