You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
467 B

5 years ago
  1. # Shape Game
  2. ## Setup
  3. * use 3 linux computers connecting in a lan
  4. * clone the repo `git clone <repo url>`
  5. * install `sh install.sh`
  6. * compile `make`
  7. * Start server `./bin/server.out 4444`
  8. * get server ip `ifconfig`
  9. * Take note of `eth0` or `enp2s0`; **note::** the numbers might be different
  10. * Start a client
  11. * Alice `./bin/server.out 1 4444 <server ip>`
  12. * Bob `./bin/server.out 2 4444 <server ip>`
  13. * Eve `./bin/server.out 3 4444 <server ip>`
  14. ## How it works