Do you have a revese proxy setup?
Do you have a revese proxy setup?
I’ve been learning bash and working on scripts to automate stuff in my homelab. It’s been a lot of fun. I’m currently working on a script that will rename the movies and TV shows I rip from my DVD collection.
The script queries the tmdb api, presents me with a mwnu of matches if there’s multiple matches, renames the media files according to jellyfin spec, and then places them in the proper folders to be indexed by Jellyfin and Kodi.
Perfect. I’m feeling comfortable enough with bash that next on my list is AWK. Gonna download this when I get home!
Used thinkpad is an easy choice. If you want new, I’ve been very happy with the framework 13
If it has to be a de, I’d pick gnome. Otherwise it’s hyprland.
Rsync and NFS for me.
Hahaha. Was about to comment nearly the same thing. My NFS share has a different mount. ~/Documents
is an empty directory
I’m integrating my Mac mini (running Asahi Linux) into my server setup. It’s slow going as I also have to move some data around so I can repurpose some hard drives.
Totally fair.
Another great option is Yourls. I’ve been using it for years and it’s been fabulous
Thank you! I always worry with a one liner that I’ll fuck something up in a bad way. In a script it helps me think about the process since it’s more visually structured, and for me it’s easier to test.
You can do this with the
dd
command. To prep:Set up a live boot USB stick with your distro of choice.
Install another SSD/nvme/HDD at least the same size as your bookworm install into your bookworm machine. If that’s not an option connect a USB drive that’s at least the same size as the drive with your bookworm installation.
Boot into the live USB on the bookworm machine.
Make sure the partition(s) from your bookworm install are unmounted.
Quadruple check the drives/devices for the
dd
command. Here’s the basics of the command:dd if=/device/where/bookworm/is/installed of=USB/or/second/drive/in/machine bs=8M status=progress
So, if your bookworm install is on
/dev/sda
, and the USB or secondary is/dev/sdb
, then the Cmand would be:dd if=/dev/sda of=/dev/sdb bs=8M status=progress