aboutsummaryrefslogtreecommitdiff
path: root/docs/gnulinux/guix_system.md
blob: 1c89254ffbd0d0e2e62aeee24cfdd0df5e8422b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
# Guix System with Full Disk Encryption on Libreboot

##  1  Objective

To provide step-by-step guide for setting up guix system (stand-alone guix)
with full disk encryption (including /boot) on devices powered by libreboot.

##  2  Scope

Any users, for their generalised use cases, need not stumble away from this
guide to accomplish the setup.

Advanced users, for deviant use cases, will have to explore outside this
guide for customisation; although this guide provides information that is
of paramount use.

##  3  Process

###  3.1  Preparation

In your current GNU/Linux System, open terminal as root user.

Insert USB drive and get the USB device name /dev/sdX, where “X” is the
variable to make a note of.

`lsblk`

Unmount the USB drive just in case if it’s auto-mounted.

`umount /dev/sdX`

Download the latest (a.b.c) Guix System ISO Installer Package (sss) and
it’s GPG Signature; where “a.b.c” is the variable for version number and
“sss” is the variable for system architecture.

`wget https://ftp.gnu.org/gnu/guix/guix-system-install-a.b.c.sss-linux.iso.xz`

`wget https://ftp.gnu.org/gnu/guix/guix-system-install-a.b.c.sss-linux.iso.xz.sig`

Import required public key.

`gpg --keyserver pool.sks-keyservers.net --recv-keys 3CE464558A84FDC69DB40CFB090B11993D9AEBB5`

Verify the GPG Signature of the downloaded package.

`gpg --verify guix-system-install-a.b.c.sss-linux.iso.xz.sig`

Extract the ISO Image from the downloaded package.

`xz -d guix-system-install-a.b.c.sss-linux.iso.xz`

Write the extracted ISO Image to the USB drive.

`dd if=guix-system-install-a.b.c.sss-linux.iso of=/dev/sdX; sync`

Reboot the device.

`reboot`

###  3.2  Pre-Installation

On reboot, as soon as you see the Libreboot Graphic Art, press arrow keys
to change the menu entry.

Choose “Search for GRUB2 configuration on external media [s]” and wait
for the Guix System from USB drive to load.

Set your keyboard layout lo, where “lo” is the two-letter keyboard layout
code (example: us or uk).

`loadkeys lo`

Unblock network interfaces (if any).

`rfkill unblock all`

Get the names of your network interfaces.

`ifconfig -a`

Bring your required network interface nwif (wired or wireless) up, where
“nwif” is the variable for interface name. For wired connections,
this should be enough.

`ifconfig nwif up`

For wireless connection, create a configuration file using text editor,
where “fname” is the variable for any desired filename.

`nano fname.conf`

Choose, type and save ONE of the following snippets, where ‘nm’ is the
name of the network you want to connect, ‘pw’ is the corresponding
network’s password or passphrase and ‘un’ is user identity.

For most private networks:
```
network={
  ssid="nm"
  key_mgmt=WPA-PSK
  psk="pw"
}
```

(or)

For most public networks:
```
network={
  ssid="nm"
  key_mgmt=NONE
}
```

(or)

For most organisational networks:
```
network={
  ssid="nm"
  scan_ssid=1
  key_mgmt=WPA-EAP
  identity="un"
  password="pw"
  eap=PEAP
  phase1="peaplabel=0"
  phase2="auth=MSCHAPV2"
}
```

Connect to the configured network, where “fname” is the filename and
“nwif” is the network interface name.

`wpa_supplicant -c fname.conf -i nwif -B`

Assign an IP address to your network interface, where “nwif” is the
network interface name.

`dhclient -v nwif`

Obtain the device name /dev/sdX in which you would like to deploy and
install Guix System, where “X” is the variable to make a note of.

`lsblk`

Wipe the respective device. Wait for the command operation to finish.

`dd if=/dev/urandom of=/dev/sdX; sync`

Load device-mapper module in the current kernel.

`modprobe dm_mod`

Partition the respective device. Just do, GPT --> New --> Write --> Quit;
defaults will be set.

`cfdisk /dev/sdX`

Encrypt the respective partition.

`cryptsetup -v --cipher serpent-xts-plain64 --key-size 512 --hash whirlpool --iter-time 500 --use-random --verify-passphrase luksFormat /dev/sdX1`

Obtain and note down the “LUKS UUID”.

`cryptsetup luksUUID /dev/sdX1`

Open the respective encrypted partition, where “partname” is any
desired partition name.

`cryptsetup luksOpen /dev/sdX1 partname`

Make filesystem on the respective partition, where “fsname” is any
desired filesystem name.

`mkfs.ext4 -L fsname /dev/mapper/partname`

Mount the respective filesystem under the current system.

`mount LABEL=fsname /mnt`

Create a swap file and make it readable cum writable only by root.

`dd if=/dev/zero of=/mnt/swapfile bs=1MiB count=2048`

`chmod 600 /mnt/swapfile`

`mkswap /mnt/swapfile`

`swapon /mnt/swapfile`

###  3.3  Installation

Make the installation packages to be written on the respective
mounted filesystem.

`herd start cow-store /mnt`

Create the required directory.

`mkdir /mnt/etc`

Create, edit and save the configuration file by typing the following
code snippet. WATCH-OUT for variables in the code snippet and
replace them with your relevant values.

`nano /mnt/etc/config.scm`

Snippet:

```
(use-modules
	(gnu)
	(gnu system nss))
(use-service-modules
	xorg
	desktop)
(use-package-modules
	certs
	gnome)
(operating-system
	(host-name "hostname")
	(timezone "Zone/SubZone")
	(locale "ab_XY.1234")
	(keyboard-layout
		(keyboard-layout
			"xy"
			"altgr-intl"))
	(bootloader
		(bootloader-configuration
			(bootloader
				(bootloader
					(inherit grub-bootloader)
					(installer #~(const #t))))
			(keyboard-layout keyboard-layout)))
	(mapped-devices
		(list
			(mapped-device
				(source
					(uuid "luks-uuid"))
					(target "partname")
					(type luks-device-mapping))))
	(file-systems
		(append
			(list
				(file-system
					(device
						(file-system-label "fsname"))
					(mount-point "/")
					(type "ext4")
					(dependencies mapped-devices)))
			%base-file-systems))
	(users
		(append
			(list
				(user-account
					(name "username")
					(comment "Full Name")
					(group "users")
					(supplementary-groups '("wheel" "netdev" "audio" "video" "lp" "cdrom" "tape" "kvm"))))
			%base-user-accounts))
	(packages
		(append
			(list
				nss-certs
				gvfs)
			%base-packages))
	(services
		(append
			(list
				(extra-special-file "/usr/bin/env"
					(file-append coreutils "/bin/env"))
				(set-xorg-configuration
					(xorg-configuration
						(keyboard-layout keyboard-layout)))
				(service gnome-desktop-service-type))
			%desktop-services))
	(name-service-switch %mdns-host-lookup-nss))
```
    
Initialise new Guix System.

`guix system init /mnt/etc/config.scm /mnt`

Reboot the device.

`reboot`

###  3.4  Post-Installation

On reboot, as soon as you see the Libreboot Graphic Art, choose
the option 'Load Operating System [o]'

Enter LUKS Key, for libreboot's grub, as prompted.

You may have to go through warning prompts by repeatedly
pressing the "enter/return" key.

You will now see guix's grub menu from which you can go with the
default option.

Enter LUKS Key again, for kernel, as prompted.

Upon GNOME Login Screen, login as "root" with password field empty.

Open terminal from the GNOME Dash.

Set passkey for "root" user. Follow the prompts.

`passwd root`

Set passkey for "username" user. Follow the prompts.

`passwd username`

Update the guix distribution. Wait for the process to finish.

`guix pull`

Update the search paths.

`export PATH="$HOME/.config/guix/current/bin:$PATH"`

`export INFOPATH="$HOME/.config/guix/current/share/info:$INFOPATH"`

Update the guix system. Wait for the process to finish.

`guix system reconfigure /etc/config.scm`

Reboot the device.

`reboot`

##  4  Conclusion

Everything should be stream-lined from now. You can follow your
regular boot steps without requiring manual intervention. You can
start logging in as regualar user with the respective "username".

You will have to periodically (at your convenient time) login as root
and do the latter part of section 3.4, to keep your guix distribution
and guix system updated.

That is it! You have now setup guix system with full-disk encryption
on your device powered by libreboot. Enjoy!

##  5  References

[1] Guix Manual (http://guix.gnu.org/manual/en/).

[2] Libreboot Documentation (https://libreboot.org/docs/).

##  6  Acknowledgements

[1] Thanks to Guix Developer, Clement Lassieur (clement@lassieur.org),
for helping me with the Guile Scheme Code for the Bootloader Configuration.

[2] Thanks to Libreboot Founder and Developer,
Leah Rowe (leah@libreboot.org), for helping me to understand the
libreboot’s functionalities better.

##  7  License

Copyright (C)  RAGHAV GURURAJAN (rvgn@disroot.org).

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.

A copy of the license can be found at
"https://www.gnu.org/licenses/fdl-1.3.en.html".