diff options
author | login (tilde.institute) <login@tilde.institute> | 2020-07-11 13:20:43 -0400 |
---|---|---|
committer | login (tilde.institute) <login@tilde.institute> | 2020-07-11 13:20:43 -0400 |
commit | c3cf1ffea6d49096936d7e910bde4c95536de323 (patch) | |
tree | 33f76eef27503290b60f7872bf999c2ddbf99f42 /README.md | |
parent | e9332c1e44631864f3fdf7fe65e7a6a1d480960c (diff) | |
download | tcoin-c3cf1ffea6d49096936d7e910bde4c95536de323.tar.gz |
Fixed README.md again
Removed references to realpath.c, which is no longer included. Added a few more requirements to the README.md for "ntcoin" to run.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md index 288b186..b240777 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Currency simulator on tilde.town and other tildeboxes on tildeverse.org ## Instructions to get started 1. Clone the repo. 2. Create a service user specifically for tcoin. -3. Make sure you have `bash`, `realpath`, `echo`, `touch`, `mkdir` and `g++` available. The source code for `realpath` is provided, in case it is not installed. These are required to run `ntcoin`. +3. Make sure you have `bash`, `realpath`, `echo`, `touch`, `mkdir`, `g++`, `head`, `true`, `base64`, and `cat` are available. 4. Run `./ntcoin a b c` as the service user, where `a`, `b` and `c` are defined as follows: * `a`: the absolute path to the directory (without the trailing slash) where the `tcoin` folder containing all the users' data will be stored (i.e., the script will create the directory `a/tcoin/`) * `b`: the absolute path to the directory (without the trailing slash) where the `tcoin` and `pcoin` executables will be located, i.e., all users will have to have `r-x` permissions on `b` so that they can access the executables `b/tcoin` and `b/pcoin`. Please note that `b/tcoin` and `b/pcoin` will have the suid bit set. This means that when they run `b/tcoin` and `b/pcoin`, it will be with the uid of the service user (not their own uid). This is how they are able to send and receive coins only through the executables but not modify the `a/tcoin/` themselves. |