Auto saved by Logseq
This commit is contained in:
parent
5cf616cd75
commit
1aab2ea22f
2 changed files with 58 additions and 1 deletions
|
@ -49,7 +49,7 @@
|
|||
- Nel REPL di `iwctl` eseguire
|
||||
- ```
|
||||
station wlan0 get-networks
|
||||
station wlan0
|
||||
station wlan0 connect SSID
|
||||
```
|
||||
- Per montare un volume creando la cartella per il mount point
|
||||
- ```bash
|
||||
|
|
57
pages/Installazione base di %23archlinux.md
Normal file
57
pages/Installazione base di %23archlinux.md
Normal file
|
@ -0,0 +1,57 @@
|
|||
- Configurare la tastiera italiana
|
||||
- ```bash
|
||||
loadkeys it
|
||||
```
|
||||
- Aumentare (eventualmente) le dimensioni dei caratteri
|
||||
- ```bash
|
||||
setfont ter-132b
|
||||
```
|
||||
- Verificare la modalità con cui è stato eseguito il boot (UEFI o no)
|
||||
- ```bash
|
||||
cat /sys/firmware/efi/fw_platform_size
|
||||
```
|
||||
- Se l'output è 64 allora la macchina è stata avviata in modalità UEFI
|
||||
- Per collegarsi ad una rete wifi
|
||||
- Eseguire il comando `iwctl`
|
||||
- Nel REPL di `iwctl` eseguire
|
||||
- ```
|
||||
station wlan0 get-networks
|
||||
station wlan0 connect SSID
|
||||
```
|
||||
- Per montare un volume creando la cartella per il mount point
|
||||
- ```bash
|
||||
mount --mkdir /dev/sda1 /mnt
|
||||
```
|
||||
- Installare i pacchetti base
|
||||
- ```bash
|
||||
pacstrap -K /mnt base linux linux-firmware
|
||||
```
|
||||
- Fare un `chroot` dentro /mnt
|
||||
- ```bash
|
||||
arch-chroot /mnt
|
||||
```
|
||||
- Installare e configurare il boot manager (dopo aver fatto `chroot`)
|
||||
- ```bash
|
||||
pacman -S grub
|
||||
grub-install /dev/vda
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
```
|
||||
- Installare e configurare `NetworkManager`
|
||||
- ```bash
|
||||
pacman -S networkmanager
|
||||
```
|
||||
- Installare il pacchetto `sudo`
|
||||
- ```bash
|
||||
pacman -S sudo
|
||||
sudo -lU andrea # mostra la configurazione di sudo per l'utente andrea
|
||||
```
|
||||
- Configurare `sudo`
|
||||
- ```bash
|
||||
visudo ## togliere i commenti da %wheel ALL=(ALL:ALL) ALL
|
||||
usermod -a -G wheel andrea # aggiungere l'utente al gruppo wheel
|
||||
```
|
||||
- Installare il window manager `sway` compatibile con #i3wm
|
||||
- ```bash
|
||||
pacman -S sway swayidle swaylock
|
||||
```
|
||||
- [Video](https://www.youtube.com/watch?v=OIV8n_KWXWQ) utile su come installare #archlinux su #qemu
|
Loading…
Reference in a new issue