Im not sure why i want to do this by i find it annoying to have to reinstall a game with every new computer and console ive gotten over time. How would one make a offline installer or backup, I would also want to make them look like retro media if possible.
By chance are there better ways of re installing games without torrents?
You can just use a USB. Cloning your directories and copying them over is how backups work. Copying the files over as they belong accomplishes installing the game.
Cloning on Linux
Use the rsync command in Bash to clone directories.
- Open Terminal
- Command:
rsync -avh /path/to/source/ /path/to/destination/
Replace /path/to/source/ with the path of your game directory. Replace /path/to/destination/ with the path to where you want to clone the directory.
On Windows
You can use PowerShell
- Right click PowerShell; run as admin
- command:
Copy-Item -Path “C:\path\to\source*” -Destination "C:\path\to\destination" -Recurse
Replace C:\path\to\source\ with the path of your game directory. Replace C:\path\to\destination\ with the path for where you want to put the files. Probably the USB
Due to how they are affected by Bit Rot, I would bot use any kind of flash based media (USB Flash Drive, SSD, MicroSD, etc) for any kind of long-term backup.
For torrented games, just don’t delete the installation files?
For GOG, burning your games on DVD is not even piracy. According to the EULA, you are legally allowed to keep one backup copy.
I used to do this for work, repackage installs for automatic deployment. It’s probably not worth your time, but you’ll definitely learn a few things trying.
Get the games from GOG wherever possible. No DRM and easy to use installers.
You should support them, but if you don’t, their installers are still DRM free and easy to install from! Also if the game is bigger than 4.3GB they break it up so you just keep inserting the next disc.
Safe to say my Steam library is DRM locked? Is there anyway to migrate?
Different games use different types of DRM. If the game just uses the basic Steam DRM, you can remove it with Steamless. If it uses something else, you have to wait for someone to crack it or for a DRM free release.
Steam has its own DRM, in addition to DRM added by the manufacturer. So at the very least it’s going to ask Valve if you’re authorized to run the software. Whereas GOG doesn’t do that. (Steam can also make backup installers.)
Not necessarily, there are games that you can run directly from the installation folder without having to start Steam.
Nope.
Uh… just burn whatever installer you used in the first place?
You could also just move the drive to the new PC without reinstalling anything.
It’s crazy, but people nowadays install games through online stores, and they pay to not own games :S
The only time I will purchase a game from steam is to:
*Support a developer (looking at you Warhorse Studios)
*Get the latest updates and/or improvements that otherwise may not make its way to a repack (if I care that much about the experience I get from the game)
Have you heard of USB sticks?
If it’s a Windows game, you could use something like Inno Setup. Most of what you’d need is possible to do via easy to use GUI dialogs, and it has a scripting language to do more complex things if the need arises.
For Linux games you’ll probably use a Flatpak, or a package for your distro (e.g.
.debpackages or such). You can look for a guide somewhere.Games usually come already in installers if needed by the game. You can get away with just zipping up the directory if it doesn’t need things like e.g. Windows registry entries or additional supporting software like runtime libraries.








