💾 Archived View for metasyn.pw › linux.gmi captured on 2023-01-29 at 02:29:29. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-06-03)

➡️ Next capture (2023-03-20)

🚧 View Differences

-=-=-=-=-=-=-

linux

a collection of notes for sysadmin and general linux tasks that i find myself having to look up over and over again.

ubuntu

dist upgrade

sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
sudo apt autoremove
sudo do-release-upgrade
sudo reboot now

sometimes after that there are some random dpkg / apt errors:

sudo dpkg --configure -a
sudo apt --fix-broken install

add desktop launcher

- example file in `/usr/share/applications/wally.desktop`

[Desktop Entry]
Type=Application
Name=Wally
Comment=USB Flasher for Ergodox EZ
Version=3.0.23
Exec=/usr/local/bin/wally
Icon=/opt/wally/appicon.png
Terminal=False
Categories=Firmware

clean up

sudo apt-get clean
sudo apt-get autoremove --purge

arch linux

These are some notes for myself when setting up arch.

pacman

setup

before you can use the package manager `pacman` you need to run:

pacman-key --init

This sets up your abilit to set some keys and then use them to check the fingerprints on packages you're going to install.

If you're on a raspberry pi, you'll need to add the keys for `archlinuxarm` in particular:

pacman-key --populate archlinuxarm

Thereafter you can go about installing whatever you need.

If you need to remove all the keys you have added to start over, you can:

rm -rf /etc/pacman.d/gnupg

before running the init again.

base packages

In order to get make, and a bunch of basic tooling:

pacman -S base-devel

AUR client

I always need to download some AUR packages. Usually we still need to download a client:

git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si

Pop!\_OS

Sometimes my system76 laptop's audio just stops working. This seems to fix it:

systemctl --user restart pulseaudio
rm -r ~/.config/pulse
pulseaudio -k

inserting emojis

I can _never_ remember this:

- `Ctrl + Shift + E + Space`: then search via word tags

disk space

df -h
du -h -d 1 . --exclude proc

journal logs

journalctl --rotate
journalctl --vacuum-size=100M
journalctl --vacuum-time=10d

docker

docker system prune -a
docker volume prune -a

snap

snap set system refresh.retain=2

Gemini Links:

index and recent changes

directory of all pages

Web Links: