Last active
December 14, 2015 05:39
-
-
Save pschwede/5036652 to your computer and use it in GitHub Desktop.
Install Factorio http://www.factorio.com/ on Fedora 17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install alien | |
sudo yum install rpm-build rpmdevtool | |
sudo yum -y localinstall http://sourceforge.net/projects/postinstaller/files/data/alien-8.85-2.noarch.rpm | |
# there's no official libjpeg8 for F17 | |
sudo yum -y localinstall http://download.opensuse.org/distribution/12.2/repo/oss/suse/i586/libjpeg8-8.3.0-12.1.4.i586.rpm | |
# install other requirements | |
sudo yum -y install openssl-static.x86_64 libpng-compat.i686 alsa-plugins-pulseaudio.i686 | |
# download factorio | |
wget http://www.factorio.com/download/direct/0.2.8/demo/ubuntu -O factorio.deb | |
alien -r -c factorio.deb | |
sudo yum -y localinstall factorio.rpm | |
# start factorio | |
/usr/games/factorio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So far, by using
strace /usr/games/factorio | g open
I see that Factorio slowly opens tile files while waiting for Non Available Resources with recv. Does someone know what this means?