diff options
| author | Robert Massaioli <robertmassaioli@gmail.com> | 2021-10-02 09:26:08 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-02 09:26:08 +1000 |
| commit | 63ebe89af3c31054bda4720d5f79a9beb221369c (patch) | |
| tree | 8beb9da818fbadbcc129163769bc9f94b3a515af | |
| parent | 15f7c4cbdec9e0dfe3de00c82cc8ad258449992e (diff) | |
Save File Setup
Help people understand how to put their save files on the server.
| -rw-r--r-- | readme.md | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -44,6 +44,16 @@ If you know what you're doing, you might want to SSH onto the Linux instance to Note that this assumes some familiarity with SSH. The Linux instance will have a user `ec2-user` which you may connect to via SSH. If you want to upload saves, it's easiest to upload them to `/home/ec2-user` via SCP as the `ec2-user` user (this is `ec2-user`'s home directory), and then `sudo mv` these files to the right location in the factorio installation via SSH.
+For example, here is how you copy your Save File to the running server:
+
+``` bash
+scp MySave.zip ec2-user@<my-domain-or-EC2-ip>:~/
+ssh ec2-user@<my-domain-or-EC2-ip>
+mv ~/MySave.zip /opt/factorio/saves
+```
+
+Then your save should be in place.
+
For remote access, you'll need to:
1. Create a [Key Pair](https://console.aws.amazon.com/ec2/v2/home#KeyPairs:sort=keyName) (Services > EC2 > Key Pairs). You'll need to use this to connect to the instance for additional setup.
|
