this post was submitted on 30 Nov 2023
90 points (95.0% liked)

Linux

47812 readers
590 users here now

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.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

EDIT: I am thrilled with so many awesome responses! I'm taking notes and looking into all the recommendations. Again, thank you so much for taking the time to help me out (and many others, i'm sure), i'm glad i asked!

Hi,

I'm getting ready to switch to Linux. I'm looking for a kind of checklist of what to do beforehand. When i search online, there is a lot of advice on which distribution to choose and how to set it up, which i already know, but my question is the step before. I made a list of which programs i currently use (almost all have a linux variant or i can use them in the browser) and i am making screenshots of their settings. I have basically everything important backupped, both on my ProtonDrive and on a private server in the house. Is there anything else i need to prepare before switching? I wouldn't want to overlook something.

(I already have the distribution and am trying it out, but my plan is to actually install debian and without dual boot. Also, many, many years ago i already used debian but then i had the luxury of someone who basically arranged everything for me)

Currently, i run windows 10 with Nvidia GeForce. I already am in the process of degoogling and de-microsofting so to speak, so i don't use google drive or onedrive, or MS Office anymore (nor a lot of other things).

Apologies if this is not appropriate for this community. Have a great day :-)

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 10 months ago* (last edited 10 months ago)

Definitely create a home partition, if you ever need to start over, you can just wipe your root partition and set the home partition as /home during the install (just be certain you don't format it).

Another great piece of advice is to make an application re-install script.

Open up terminal, type:

nano /home/user/applications.sh

Then type in:

#!/bin/bash

pacman -S vlc steam gimp etc.

Then Ctrl+S, Ctrl+X

If you're not on an Arch distro, replace it with whatever your package manager command is.

Update this file every time you find a new application you like.

If you ever do a fresh install, just run the command:

sudo bash /home/user/applications.sh

This will reinstall all your programs, and you'll be right back where you were before.