# RemoteFS Simple server-client remote filesystem ## How to use 1. Create an SSL certificate for the server `openssl req -nodes -new -x509 -keyout key.pem -out cert.pem` 1. Create a password hash for the user `echo -n "password" | openssl dgst -sha256` 1. Copy the password hash into a `users` file 1. Start the server `remotefs --mode:server --path: --users_path:users` 1. Copy `cert.pem` to the client working directory 1. Connect with the client `remotefs --mode:client --username: --password: --path:` ## Advanced options Various options can be overridden using `--