oe7drt-website/content/notes/archlinux/index.md

86 lines
1.5 KiB
Markdown
Raw Normal View History

2024-01-26 12:16:05 +01:00
---
title: Archlinux
date: 2023-11-29T20:33:48+0100
2024-03-02 10:56:32 +01:00
lastmod: 2024-03-02T09:56:32+0000
2024-01-26 12:16:05 +01:00
tags:
- archlinux
#showDate: false
showReadingTime: false
showWordCount: false
showPagination: false
#showAuthor: false
showBreadcrumbs: true
feed_exclude: true
# site_exclude: true
draft: true
2024-02-16 18:43:27 +01:00
2024-01-26 12:16:05 +01:00
---
2024-01-28 11:08:53 +01:00
## Predictable network interfaces
### systemd.link
This might be useful, sometimes.
<https://www.freedesktop.org/software/systemd/man/latest/systemd.link.html>
## Prefer local DNS instead of systemd-resolved defaults
<https://unix.stackexchange.com/a/442599>
2024-01-26 12:16:05 +01:00
## Setup WiFi networks
### Using **iwctl**
~~~console
$ iwctl device list
$ iwctl station wlan0 scan
$ iwctl station wlan0 get-networks
$ iwctl station wlan0 connect {ssid}
~~~
### Using **nmcli** (NetworkManager)
~~~console
~~~
2024-01-28 11:08:53 +01:00
## CPU frequency scaling
<https://wiki.archlinux.org/title/CPU_frequency_scaling>
## YubiKeys
<https://wiki.archlinux.org/title/YubiKey>
## LunarVim custom key mappings
I know, this is an Arch Linux post but hey, I don't care.
<https://github.com/LunarVim/LunarVim/issues/2602>
## Mounting nfs shares with systemd
<https://wiki.archlinux.org/title/NFS#Mount_using_/etc/fstab_with_systemd>
### Arch Linux ARM installation on a Raspberry Pi 2
The wiki page is for Raspberry Pi 4.
<https://archlinuxarm.org/platforms/armv8/broadcom/raspberry-pi-4>
2024-03-02 10:56:32 +01:00
## Create a 32-bit Wine prefix
I create my wine prefixes usually like this:
~~~console
$ export WINEPREFIX=/home/dominic/.wine-winlink
$ export WINEARCH=win32
$ wine wineboot
~~~