07
Oct
Updating Immich
To update immich running docker compose:
docker compose pull && docker compose up -d
25
Sep
How to mount NFS in ubuntu
Follow the instructions
sudo apt install nfs-common
sudo mkdir -p /mnt/nfs_shared
sudo mount nfs_server_ip:/path/to/exported_share /mnt/nfs_shared
not sure why you'd want to
- Cost of iCloud storage
- Better backup options
- More control of actual photos
source and inspiration
full credit to this guy, he did it first and did a great writeup which i followed.
These are things I have to do everytime for Ubuntu it seems
sudo update-alternatives --config editor
if you have a drive formatted in Apple Filesystem (APFS)
You can use the apfs-fuse driver to mount it
to build apfs-fuse
note: on more current ubuntu's the apt-install command included a library that doesn't seem to exist anymore "gcc-c++". but otherwise the instructions work great.
sudo a...