Start by using base arch and eventually you can try to use the cachyos repos if you want to try and get some performance uplift.
I like sysadmin, scripting, manga and football.
Start by using base arch and eventually you can try to use the cachyos repos if you want to try and get some performance uplift.
Note that using headscale transfers the anxiety of contril from tailscale as a company to whatever vps you would be hosting the headscale on
I used to run a mastodon bot in termux on a galaxy s3 mini many years ago.
Clean all the cache downloads of Arch Linux Packages
pacman -Scc
Remove unused docker networks and images
docker system prune --all
Cleanup untracked git files that might be in .gitignore such as build and out directories (beware of losing data, use “n” instead of “f” for a dry run)
git clean -xdf
Do an aggresive pruning of objects in git (MIGHT BE VERY SLOW)
git gc --aggressive --prune=now
Remove old journal logs, keeping last seven days
journalctl --vacuum-time 7days
Remove pip cache
pip cache purge
The easiest way by far is downloading an existing dump from kiwix
Per example wikipedia_en_all_nopic_2024-06.zim is only 54GB since it only contains text. Then via docker you could use this compose file where you have your .zim files in the wikis volume:
services: kiwix: image: ghcr.io/kiwix/kiwix-serve container_name: kiwix_app command: '*' ports: - '8080:8080' volumes: - "/wikis:/data" restart: always
Theorically you can actually one of the wikipedia database dumps with mediawiki but I don’t known of any easy plug and play guide