this post was submitted on 08 May 2024
127 points (95.7% liked)
Linux
48077 readers
830 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
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I will keep this as easy as possible, but if you installed Windows 10 that's much harder than installing most Linux distros. If you want a lengthier tutorial but with pictures go to https://linuxmint-installation-guide.readthedocs.io/en/latest/index.html
As you can see it's 99% of the same you did with Windows, the hardest part of it (boot via USB drive) you already know how to do.
Now, that being said I do have one small recommendation, while installing you'll see this screen https://linuxmint-installation-guide.readthedocs.io/en/latest/_images/installer-install.png I personally recommend you select the "Something Else" option there and manually partition your drive to have:
512MB
vfat
(orfat32
not sure how the Mint installer calls it) partition to be mounted on/boot
(this might not be needed, but if you're in UEFI mode, which is very likely because the machine originally had Windows 11, it is needed)60GB
ext4
partition to be mounted on/
(this is your system, 60GB should be enough, but if your disk is large enough you can give it 100 or whatever you like, just bear in mind that every program you install will be here)<Amount of RAM>
swap
partition (e.g. if you have 16GB of RAM then 16GB swap partition) (Swap is a place in the disk that can be used as RAM, you want it at least the same size as your RAM so you can hibernate the computer since RAM gets wiped when the computer powers off)Remaining
as anext4
partition to be mounted on/home
(This is where your data, games, photos, etc will be, having this in a different partition is the reason I recommended to go with the custom partitioning. Unlike Windows on Linux partitions are just folders, so if your data is in a different partition than your system you can wipe your system, reinstall it or even install a completely different distro, without touching your data. In short this means that even if you screw up and end up with a non working system, you can follow the installation again, ensure that this partition is not marked for formatting, and you should be back in a new system but without losing any data or configurations)That's just a recommendation for future-proofing, but if you just want to try it and are okay with wiping everything later if needed then feel free to choose the default.
I'm not certain, but I think the current recommendation is a swap file, not a swap partition. A swap file can also be resized a lot easier. The main benefit is that it doesn't write to the same part of the disk constantly, so for SSDs in particular it extends the lifetime.
Yes, I use a swap file, but I don't think the installer gives that option, so I'm trying to play it safe. Also a file will always write to the same part of the disk too because you allocated it first, but it's easier to create another file and migrate to it.
Future-proofing with ext4? Come on.