Page 1 of 1

Change the default headless link to contain `.tar.gz`

Posted: Fri Aug 30, 2024 1:27 pm
by Dimava
Downloads page says "If you are running a server, you can use this link to always download the latest stable version."
Currently the link is https://factorio.com/get-download/stabl ... ss/linux64
So if you just

Code: Select all

wget
it, it'll create

Code: Select all

linux64
file, which is not unzippable by

Code: Select all

tar -xz
Please change the recommended link to https;//factorio.com/get-download/stable/headless/linux64/factorio-stable.tar.gz so its use is more obvious

Re: Change the default headless link to contain `.tar.gz`

Posted: Fri Aug 30, 2024 2:06 pm
by vinzenz
it's using xz for compression so you need to unpack it with

Code: Select all

tar -xJf
and with -O

Code: Select all

wget -O "myfavouritefilename.tar.xz"
you can set the name of the downloaded file.