But they are not running debian sid
Eskuero
I like sysadmin, scripting, manga and football.
- 4 Posts
- 105 Comments
Eskuero@lemmy.fromshado.wsto
Selfhosted@lemmy.world•Do you backup your docker images?English
3·1 month agoYes I do. I cooked a small python script that runs at the end of every daily backup
import subprocess import json import os # Output directory OUTPUT_DIR = "/data/dockerimages" try: os.mkdir(OUTPUT_DIR) except: pass # Grab all the docker images. Each line a json string defining the image imagenes = subprocess.Popen(["docker", "images", "--format", "json"], stdout = subprocess.PIPE, stderr = subprocess.DEVNULL).communicate()[0].decode().split("\n") for imagen in imagenes[:-1]: datos = json.loads(imagen) # ID of the image to save imageid = datos["ID"] # Compose the output name like this # ghcr.io-immich-app-immich-machine-learning:release:2026-01-28:3c42f025fb7c.tar outputname = f"{datos["Repository"]}:{datos["Tag"]}:{datos["CreatedAt"].split(" ")[0]}:{imageid}.tar".replace("/", "-") # If the file already exists just skip it if not os.path.isfile(f"{OUTPUT_DIR}/{outputname}"): print(f"Saving {outputname}...") subprocess.run(["docker", "save", imageid, "-o", f"{OUTPUT_DIR}/{outputname}"]) else: print(f"Already exists {outputname}")
Eskuero@lemmy.fromshado.wsto
Selfhosted@lemmy.world•How many containers are you all running?English
3·1 month ago26 tho this include multi container services like immich or paperless who have 4 each.
Eskuero@lemmy.fromshado.wsto
Linux@lemmy.ml•What are some of your most useful or favorite terminal commands?
9·3 months agoecho 'dXIgbW9tCmhhaGEgZ290dGVtCg==' | base64 -d
From the thumbnail I though linus was turned into a priest
Eskuero@lemmy.fromshado.wsto
Selfhosted@lemmy.world•Keeping .yaml files up to date...English
8·3 months agoI run changedetection and monitor the samples .yml files projects usually host directly at their git repos
Eskuero@lemmy.fromshado.wsto
Selfhosted@lemmy.world•Framework stops selling separate DDR5 RAM modules to fight scalpersEnglish
1·3 months agoBring back my computer as well
Eskuero@lemmy.fromshado.wsto
Selfhosted@lemmy.world•Framework stops selling separate DDR5 RAM modules to fight scalpersEnglish
2·3 months agopeople say go back in time to pick the correct lotto number
I say go back in time and sell my 8TB disk for 80 billion
Eskuero@lemmy.fromshado.wsto
Selfhosted@lemmy.world•Recommendations for an all-SSD home server?English
3·3 months agoFor the price of the car I would expect the SSD drive to grow wheels and be able to actually drive it
Eskuero@lemmy.fromshado.wsto
Linux@lemmy.ml•What's the experience for using AMD GPUs for **COMPUTE** on GNU/Linux?
2·4 months agogpt-oss:20b is only 13GB
Eskuero@lemmy.fromshado.wsto
Linux@lemmy.ml•How arch-delta Saves 80+% Of Bandwidth On Upgrades
5·4 months agoThis includes everything for a total of 261G

Eskuero@lemmy.fromshado.wsto
Linux@lemmy.ml•How arch-delta Saves 80+% Of Bandwidth On Upgrades
5·4 months agoI have 4 Arch machines so I actually hold a local mirror of the entire arch repo in my homeserver and just sync from there at full speed
Eskuero@lemmy.fromshado.wsto
Linux@lemmy.ml•What's the experience for using AMD GPUs for **COMPUTE** on GNU/Linux?
10·4 months agoollama works fine on my 9070 XT.
I tried gpt-oss:20b and it gives around 17tokens per second which seems as fast a reply as you can read.
Idk how to compares to the nvidia equivalent tho
I tried it in the past and it felt too heavy for my use case. Also for some reason the sidebar menu doesn’t show all the items at all times but instead keeps only showing the ones related to the branch you just went into.
Also it seems pretty dead updates wise
Mdbook is really nice if you mind the lack of dyanimic editing in a web browser
Eskuero@lemmy.fromshado.wsto
Linux@lemmy.ml•Linux phones are more important now than ever
23·6 months agoI have a Pixel 9 Pro which is supposed to get security updates until 2031 but at the pace Google is closing Android down I wonder if it will even be viable to stay on an AOSP degoogled ROM until then.
I feel like the future is leading us to a place where we will have to reduce our mobile computing to a trusted but slow and unreliable main phone while keeping a secondary mainstream device for banking/government apps.
Eskuero@lemmy.fromshado.wsto
Linux@lemmy.ml•How often do I have to buy a new pixel if I fully degoogle with GrapheneOS? A support question
15·7 months agoPixel 8A you can get probably very affordable now and will get updates until 2031. It’s more likely that by that time you will have dropped your phone and break it or simply want a hardware upgrade.
It also supports playing AV1 in hardware even at 4k resolution.
Eskuero@lemmy.fromshado.wsto
Selfhosted@lemmy.world•Tailscale addressing concerns over potential enshittification of the platformEnglish
17·8 months agoI always run headscale on my own server for my own network.


mb i was too busy running arch to watch it btw