48
Package up and transport a linux?
(sh.itjust.works)
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
NixOS and to a lesser extent nix package manager is great for this. Write a config for your entire setup, which will take a long time, but then you can carry that config with you through any and all future machines, and have every one of them setup just the way you like from the beginning
I would highly suggest using NixOS for something like this, however if you don't want to/can't the following should apply to pretty much any other distro
Most applications in Linux save their config in ~/. config/ or ~/.configname , if you copy these files and directories over to your new machine all your old settings should persist (this won't copy applications themselves but will copy their settings for when you reinstall them)
(though be warned this is a messy way to do it if you just copy absolutely everything without thinking, some settings you probably don't want copied over)
tbh, messy way it is, or maybe I'll clean the data up becore transfer, we'll see. thx!