Dragonespine turning into Spinedragon
Eskuero
I like sysadmin, scripting, manga and football.
- 57 Posts
- 208 Comments
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.
EskueroAto Free and Open Source Software@beehaw.org•Any good FOSS music player apps for Android that are still getting updated?23·14 days agoI’ve been using Auxio for a few months since I finally moved on from Vanilla Music https://github.com/OxygenCobalt/Auxio
Make sure to send all the code minified to make it small and easier to review.
Who are the 4*
Note that using headscale transfers the anxiety of contril from tailscale as a company to whatever vps you would be hosting the headscale on
EskueroAto Selfhosted@lemmy.world•Coolest Linux app you hosted from an Android device?English21·2 months agoI used to run a mastodon bot in termux on a galaxy s3 mini many years ago.
EskueroAto KDE@lemmy.kde.social•kwin_x11 and kwin_wayland split, X11 code effectively frozen and will be maintained until Plasma 717·2 months agoJust let it die already.
I have been running Plasma 6 on wayland since release with no issues. I even recently switched SDDM to wayland mode because they still default to rootful X (WTF!). If anyone cares to do the same:
$ cat /etc/sddm.conf [General] DisplayServer=wayland
I believe systemd after targets work tho I have never tried them Try adding this to mount options
x-systemd.after=network-online.target
For automatically you need to add a keyfile to a slot in the luks device
openssl genrsa -out /root/keyfile.bin 4096
cryptsetup luksAddKey /dev/mapper/extra /root/keyfile.bin
The entry in the crypttab would be like this
extra UUID=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX /root/keyfile.bin luks
Generally, they enforce in Linux using root permissions to mount internal hard drives unlike USB drives that can be mounted by the user If you want to mount it automatically in every boot, you could modify the /etc/fstab to add an entry for it
Flying knife
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
“This memory-safe language almost killed the oldest anarchy server in minecraft”
Did she cook macaroni for dinner again? 🫠
EskueroAto Firefox@fedia.io•#Firefox 137 Enters Public Beta Testing with HEVC Playback Support on #Linux and Other Changes https://9to5linux.com/firefox-137-enters-public-beta-testing-with-hevc-playback-support-on-linux1·2 months agoIt’s hilarious how just after they fucked up all the Linux improvements are coming in.
EskueroAto Firefox@fedia.io•So, I'm staying with #Firefox, even though their CEO is tone-deaf and clumsy and destroying #Mozilla's reputation because today I had to remove 6 extensions in #Vivaldi (my sometimes alternate5·2 months agoHolding onto LibreWolf as a patched Firefox while donating and supporting Servo in hopes that if Mozilla actually shits the bed in two or three years there’s an alternative ready.
EskueroAto Linux@lemmy.ml•How to install Debian Testing... and why you might not want to25·2 months agoDebian testing is just a small resistance step of future arch users still scared to distrohop
I subscribe to email notifications on releases for all the repositories of the apps that I self-host so when something comes out I just can do a docker compose pull, down and up when I have some time.
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