From c0320047aeedf6a7ead80599dee965411bda72a5 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Sun, 5 Mar 2017 18:27:47 +0100 Subject: [PATCH] Update 0_install_system.md --- 0_install_system.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/0_install_system.md b/0_install_system.md index 3ad9f4d..721f1e8 100644 --- a/0_install_system.md +++ b/0_install_system.md @@ -20,22 +20,23 @@ Prepare the storage devices --------------------------- ``` fdisk /dev/sda -``` +# help: d ==> delete p ==> print table n ==> new (+128M to define 128 MO) a ==> set partition bootable (for sda1) +``` | Name | Boot | Size | Format | Mount | | ---- | :---: | -----: | :--------: | ----- | -| sda1 | * | 128M | mkfs.ext2 | /boot | +| sda1 | * | 128M | mkfs.fat | /boot | | sda2 | | 8G | mkswap | | | sda3 | | 32G | mkfs.ext4 | / | | sda4 | | ALL | mkfs.ext4 | /home | mkfs all... ``` -mkfs.ext4 /dev/sda1 +mkfs.fat /dev/sda1 mkswap /dev/sda2 mkfs.ext4 /dev/sda3 mkfs.ext4 /dev/sda4 @@ -90,6 +91,12 @@ install all package you want User Configuration ================== +Change Root pasword +------------------- +``` +passwd +``` + Adding User ----------- ``` @@ -99,6 +106,10 @@ Adding user to a group: ``` usermod -a -G ``` +Change pasword: +``` +passwd +``` Misc ==== @@ -127,3 +138,5 @@ Edit /etc/systemd/logind.conf and enable: ``` LidSwitchIgnoreInhibited=yes ``` + +Restart computer....