Most RAID levels are for redundancy, not speed and software RAID doesn’t need drives of the same size.
- 0 Posts
- 107 Comments
if one drive dies it’s got a copy on another drive
Do you want JBOD or a RAID? Cause dealing with disk failure is a feature of RAID
I hate arch users btw
InnerScientist@lemmy.worldto Selfhosted@lemmy.world•Questions regarding k8s ingressEnglish1·6 days agometallb sounds like what you need, basicall you give it a range in your subnet (excluded from dhcp/Router!) and it assigns those ips to your loadbalancer services, it broadcasts this IP over Arp or bgp which makes automatic failover work.
InnerScientist@lemmy.worldto Linux@lemmy.ml•What have been your costliest mistakes in using Linux?4·14 days agoYou do backup important data, right?
InnerScientist@lemmy.worldto Linux@lemmy.ml•What have been your costliest mistakes in using Linux?1·14 days agoGood to know
InnerScientist@lemmy.worldto Mildly Infuriating@lemmy.world•Canon requires an account to transfer images from your camera. Forces you to sign up using Chrome.English2·21 days agoI’m just waiting for that WebAntivirus support to land in chrome, for all those websites that tell you to install an antivirus.
InnerScientist@lemmy.worldto Selfhosted@lemmy.world•Your help needed: PhD research on why people choose to self-hostEnglish7·21 days agoWhen making an application instead of coding for one platform you have to code for 5 and also convince Apple and Google to accept your app (Nextcloud is really feeling this one).
Meanwhile HTML + JavaScript works on most smart fridges.
InnerScientist@lemmy.worldto Steam Deck@sopuli.xyz•Steam Deck sales still going strong over three years later2·1 month agoIt has exclusives iirc, steam deck “just” has the rest.
The switch also has coop multiplayer and a few other things going for it as well.
InnerScientist@lemmy.worldto Android@lemmy.world•Exclusive: 39-Image Sony Xperia 1 VII Leak Reveals Design, Colors & FeaturesEnglish4·1 month agoJust waiting for someone to “leak” a phone and it turns out to be last years phone, just to see how long it takes people to notice.
deleted by creator
InnerScientist@lemmy.worldto Android@lemmy.world•ADB push large folder eats up all RAMEnglish11·1 month agoCreate a tar, push it, then untar using adb shell?
Tldr:
Rootful podman with
podman run --userns=auto
is more secure than one rootless host user running many pods, because those pods could (theoretically) attack each other.
though you still have the possibility of an exploit in the image pullRootless podman running one pod (as in service including database and so on) per host user with different subuid Ranges is the most secure, but you have to actually set that up which can be a lot of work depending on distribution.
InnerScientist@lemmy.worldto Linux@lemmy.ml•Immich 1.132 Brings Smoother Syncing, Mobile UI Enhancements2·2 months agoNo Problem!
If you want to fix the issue: That seems like the hostname for one of the databases is wrongly set in the environment file, the hostname of containers is the same as the container name which can be read using
podman ps
.
InnerScientist@lemmy.worldto Linux@lemmy.ml•Immich 1.132 Brings Smoother Syncing, Mobile UI Enhancements4·2 months agoSure, I set it up in nixos though this is the short form of that:
spoiler
- Install Podman and passt + slirp4netns for networking
- Setup subuid and subgid
usermod --add-subuids 100000-165535 --add-subgids 100000-165535 johndoe
- I’m using quadlet’s so we need to create those: $HOME/.config/containers/systemd/immich-database.container
[Unit] Description=Immich Database Requires=immich-redis.service immich-network.service [Container] AutoUpdate=registry EnvironmentFile=${immich-config} # add your environment variables file here Image=registry.hub.docker.com/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0 # hash from the official docker-compose, has to be updated from time to time Label=registry Pull=newer # update to newest image, though this image is specified by hash and will never update to another version unless the hash is changed Network=immich.network # attach to the podman network UserNS=keep-id:uid=999,gid=999 # This makes uid 999 and gid 999 map to the user running the service, this is so that you can access the files in the volume without any special handling otherwise root would map to your uid and the uid 999 would map to some very high uid that you can't access without podman - This modifies the image at runtime and may make the systemd service timeout, maybe increase the timeout on low-powered machines Volume=/srv/services/immich/database:/var/lib/postgresql/data # Database persistance Volume=/etc/localtime:/etc/localtime:ro # timezone info Exec=postgres -c shared_preload_libraries=vectors.so -c 'search_path="$user", public, vectors' -c logging_collector=on -c max_wal_size=2GB -c shared_buffers=512MB -c wal_compression=on # also part of official docker-compose.....last time i checked anyways [Service] Restart=always
$HOME/.config/containers/systemd/immich-ml.container
[Unit] Description=Immich Machine Learning Requires=immich-redis.service immich-database.service immich-network.service [Container] AutoUpdate=registry EnvironmentFile=${immich-config} #same config as above Image=ghcr.io/immich-app/immich-machine-learning:release Label=registry Pull=newer # auto update on startup Network=immich.network Volume=/srv/services/immich/ml-cache:/cache # machine learning cache Volume=/etc/localtime:/etc/localtime:ro [Service] Restart=always
$HOME/.config/containers/systemd/immich.network
[Unit] Description=Immich network [Network] DNS=8.8.8.8 Label=app=immich $HOME/.config/containers/systemd/immich-redis.container [Unit] Description=Immich Redis Requires=immich-network.service [Container] AutoUpdate=registry Image=registry.hub.docker.com/library/redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8 # should probably change this to valkey.... Label=registry Pull=newer # auto update on startup Network=immich.network Timezone=Europe/Berlin [Service] Restart=always
$HOME/.config/containers/systemd/immich-server.container
[Unit] Description=Immich Server Requires=immich-redis.service immich-database.service immich-network.service immich-ml.service [Container] AutoUpdate=registry EnvironmentFile=${immich-config} #same config as above Image=ghcr.io/immich-app/immich-server:release Label=registry Pull=newer # auto update on startup Network=immich.network PublishPort=127.0.0.1:2283:2283 Volume=/srv/services/immich/upload:/usr/src/app/upload # i think you can put images here to import, though i never used it Volume=/etc/localtime:/etc/localtime:ro # timezone info Volume=/srv/services/immich/library:/imageLibrary # here the images are stored once imported [Service] Restart=always [Install] WantedBy=multi-user.target default.target
- systemctl --user daemon-reload
- systemctl --user enable --now immich-server.service
- enable linger so systemd user services run even if the user is logged of
loginctl enable-linger $USER
- Setup a reverse proxy like caddy so you can make access to it simple like immich.mini-pc.localnet
InnerScientist@lemmy.worldto Linux@lemmy.ml•Immich 1.132 Brings Smoother Syncing, Mobile UI Enhancements6·2 months agoCan confirm, works without problems in rootless podman.
InnerScientist@lemmy.worldto Android@lemmy.world•Samsung says mysterious One UI 7 delay is to 'ensure the best possible experience'English3·2 months agoUpdate: April 15, 2025 (3:35 AM ET): Samsung has confirmed that the One UI 7 update will resume shortly. According to a solutions manager on Samsung’s Korean community forums, the rollout was temporarily paused due to maintenance-related issues. However, the inspection is now complete, and the update is expected to restart soon. Here’s the full statement:
https://www.androidauthority.com/one-ui-7-rollout-resuming-3544322/
InnerScientist@lemmy.worldto cybersecurity@infosec.pub•AMD confirms security vulnerability in every Zen 1 to Zen 5 processor3·2 months agoweakness in signature verification algorithm that could allow an administrator privileged attacker to load arbitrary microcode patches
I don’t think this will affect performance unless you depend on having to quickly update the CPU microcode multiple times a second.
I’m talking about software RAID, for example btrfs.