11
submitted 11 months ago* (last edited 11 months ago) by GustavoM@lemmy.world to c/raspberrypi@lemmy.ml

Title. Asides from setting the whole disk to read-only. (It's not an option since apparently docker dislikes that for some reason.). I'm trying to increase my microsd's lifespan.

For instance, here's my current /etc/fstab

tmpfs /tmp tmpfs rw,size=10M,nr_inodes=5k,noexec,nodev,nosuid,uid=gus,gid=notgus,noatime,mode=1700

tmpfs /var/log tmpfs rw,size=10M,nr_inodes=5k,noexec,nodev,nosuid,uid=gus,gid=notgus,noatime,mode=1700

tmpfs /var/tmp tmpfs rw,size=0M,nr_inodes=5k,noexec,nodev,nosuid,uid=gus,gid=notgus,noatime,mode=1700

tmpfs /var/run tmpfs rw,size=0M,nr_inodes=5k,noexec,nodev,nosuid,uid=gus,gid=notgus,noatime,mode=1700

tmpfs /var/spool tmpfs rw,size=0M,nr_inodes=5k,noexec,nodev,nosuid,uid=gus,gid=notgus,noatime,mode=1700

tmpfs /var/lock tmpfs rw,size=0M,nr_inodes=5k,noexec,nodev,nosuid,uid=gus,gid=notgus,noatime,mode=1700

tmpfs /var/cache tmpfs rw,size=0M,nr_inodes=5k,noexec,nodev,nosuid,uid=gus,gid=notgus,noatime,mode=1700

Thanks in advance.

you are viewing a single comment's thread
view the rest of the comments
[-] theit8514@lemmy.world 2 points 11 months ago

It would work like the existing tmpfs that you already have. It overlays the tmpfs over the readonly filesystem mount:

/dev/mmcblk0p2 on /media/root-ro type ext4 (ro,relatime)
tmpfs-root on /media/root-rw type tmpfs (rw,relatime)
overlayroot on / type overlay (rw,relatime,lowerdir=/media/root-ro,upperdir=/media/root-rw/overlay,workdir=/media/root-rw/overlay-workdir/_)

df will tell you how much ram has been reserved for the tmpfs and how much has been "written." On my 4GB Pi that is ~1.5GB. Mine is usually pretty idle and has been up for 40 days, so at 12% used ~1.5GB will last me quite a bit.

$ df /media/root-*
Filesystem     1K-blocks    Used Available Use% Mounted on
/dev/mmcblk0p2  59839564 1857276  55517464   4% /media/root-ro
tmpfs-root       1964220  234828   1729392  12% /media/root-rw
this post was submitted on 21 Dec 2023
11 points (100.0% liked)

raspberrypi

3255 readers
1 users here now

Community about the single-board computers, micro-controllers and related projects.

https://www.raspberrypi.com/

Other RaspberryPi communities on Lemmy

founded 4 years ago
MODERATORS