Quick Start
Build Easy RSH, configure the server, and open your first remote shell session.
Easy RSH is a compact C++17 remote command system built to make sockets, process management, authentication, and IPC easy to see and understand.
Requirements
Easy RSH targets Linux and other POSIX-like systems. You need:
- A C++17 compiler such as
g++ - GNU Make
- OpenSSL development headers and libraries
- A terminal for the server and another for the client
On Ubuntu or Debian:
sudo apt update
sudo apt install build-essential libssl-dev makeBuild the project
From the repository root, compile all three binaries:
makeFor an optimized release build:
make DEBUG=0Start the server
The first run opens an interactive setup wizard. It creates the initial administrator, checks the port, and records the selected server mode.
./serverThe default configuration listens on port 8080, enables command execution, and can use fork-based multi-client handling.
Connect a client
Open another terminal and connect using the address printed by the server:
./client 127.0.0.1 8080Enter the administrator credentials created by the setup wizard. After authentication, commands are executed from the server's current working directory.
remote> pwd
/home/user/Easy-RSH
remote> uname -a
Linux server 6.x ...Easy RSH currently uses plaintext TCP. Use it only on trusted networks or inside an appropriately secured environment. See Security before exposing a server beyond your machine.
Where to go next
- Installation explains build targets and dependencies.
- Server setup covers the wizard and runtime options.
- Architecture follows a command from socket to child process.