https://github.com/dgasmith/digitalocean-factorio
https://github.com/dgasmith/digitalocean-factorio
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dgasmith/digitalocean-factorio
- Owner: dgasmith
- Created: 2023-03-24T00:22:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-28T15:51:16.000Z (about 2 years ago)
- Last Synced: 2025-10-06T14:41:47.584Z (9 months ago)
- Language: Shell
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
This is a loose collection of commands to run factorio, without instructions.
Mix a few blogs together, it'll work out.
## Download
```bash
wget -O factorio_headless.tar.gz https://factorio.com/get-download/1.1.61/headless/linux64
tar -xf factorio_headless.tar.gz factorio_161
```
## Create new save
```bash
1.1.76/factorio/bin/x64/factorio --create omsf.zip
```
## Sync mods
```bash
cd ~/Library/Application Support/factorio
rsync -hrvP mods openfactorio_server:/opt/factorio
```
## Service
```bash
cp factorio.service /etc/systemd/system/factorio.service
systemctl daemon-reload
systemctl start factorio
systemctl status factorio
systemctl restart factorio
systemctl enable factorio # Starts on boot
```