Add links for further information

This commit is contained in:
this.ven 2024-10-17 18:36:23 +02:00
parent b140568ad7
commit 54d5949648

View file

@ -196,14 +196,14 @@ potentionally unused or legacy applications by invoking the following command:
sudo pacman -Qqe | sudo tee /etc/pkglist.txt
```
If you are curious which package occupies how much disk space (and you may decide to remove it), you can run this command to scroll through a list using the `less` pager:
If you are curious which package occupies how much disk space (and you may decide to remove it), you can run this command to scroll through a list using the `less` pager[^5]:
```bash
pacman -Qi | grep -E '^(Name|Installed)' | cut -f2 -d':' | paste - - | column -t | sort -nrk 2 | grep MiB | less
```
{{< callout type="info" >}}
Keep in mind that you may need to adapt the strings for the grep search pattern as pacman uses localization in its output. In my case I run:
Keep in mind that you may need to adapt the strings for the grep search pattern as pacman uses [localization](../system-preparation/#localization) in its output. In my case I run:
```bash
pacman -Qi | grep -E '^(Name|Installationsgröße)' | cut -f2 -d':' | paste - - | column -t | sort -nrk 2 | grep MiB | less
@ -363,7 +363,7 @@ sudo pacman -S sane xsane
### Storage
Additional removable storage such as an USB flash drive[^5] or an external HDD/
Additional removable storage such as an USB flash drive[^6] or an external HDD/
SSD may be necessary for archiving data at rest. While I tend to use data at
rest [encryption](https://wiki.archlinux.org/title/Data-at-rest_encryption) such filesystems can be mounted automatically by using a key stored in and read from
the root filesystem for convenience.
@ -467,5 +467,6 @@ capabilities or go back to the overview and follow instructions for specific
Wikipedia
[^4]: [Symbolic link](https://en.wikipedia.org/wiki/Symbolic_link) in the
Wikipedia
[^5]: [USB flash drive](https://en.wikipedia.org/wiki/USB_flash_drive) in the
[^5]: [Forum post](https://bbs.archlinux.org/viewtopic.php?pid=1585788#p1585788) discussing the command
[^6]: [USB flash drive](https://en.wikipedia.org/wiki/USB_flash_drive) in the
Wikipedia