Linux blogpost: start

This commit is contained in:
Rien Maertens 2016-11-01 22:00:42 +01:00
parent 62cbc805a2
commit 3cac652852
No known key found for this signature in database
GPG key ID: 943CAB70C511D23C

View file

@ -0,0 +1,68 @@
---
title: "Installing GNU/Linux: before you start "
created_at: 01-11-2016
description: A collection of usefull things to know before you install GNU/Linux.
author: Rien
---
So, you want to install GNU/Linux for the first time but you don't know where to start. You're afraid the installation process will wipe your precious data or even brick your newly bought laptop. This checklist will help you to avoid the most common pitfalls.
# 0. When you get stuck
Before you start, you have to know that installing Linux takes time. It takes time to solve possible issues, to get used to the workflow of Linux and once you know Linux from the inside out, you can't stop tweaking your system configuration.
Don't let your hopes down, the internet is full of useful resources and the more issues you fix on your own, the more you learn.
# 1. Choose the right distro
Before you install GNU/Linux, you have to know which one you want. GNU/GNU/Linux comes in a range of different flavours. Some want it stable while others like to experiment a lot. The main differences between GNU/Linux distributions is the package manager and the default look.
## Package Managers
The package manager adds a layer of abstraction to the installation process of software. It allows you to just type `sudo apt-get install firefox`, which is much easier and faster than compiling firefox from source and managing the dependencies one by one. In the world of package management you have two different paths you can take:
- **Long Term Support**
The distribution has stable version updating your whole system or a single package within the same version is guaranteed to not break your current system. Updates are almost entirely security fixes.
- Pro: your system is more stable
- Con: you get less new features and upgrading to the next version can have drastic changes
- **Rolling Release**
There is only one version. You get security and feature updates which break your current system, although this does not happen very often.
- Pro: you receive more features and you learn faster how Linux works under the hood
- Cons: every update has a chance to break your system
## Look & feel
# 2. Fix your windows
## Reserve some space for Linux
## Disable fast boot
## Set the hardware time to UTC
# 2. Fiddle in your BIOS
## Secure boot
## Boot to installation medium
# 3. Install Linux
## UEFI
## Partitioning
## Swap?
## Bootloaders
# 4. Customizing Linux