this post was submitted on 09 Oct 2023
1220 points (96.4% liked)
Technology
59197 readers
2890 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each another!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
Approved Bots
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I've recently read about how to fix corrupted SD-cards in Raspberry Pis. Corruption can happen when the Pi is unexpectedly losing power during a write to the SD card.
To avoid corruption, you can change the (boot partition of the) SD to read-only, requiring either USB storage (flash/HDD/SSD) or a writable secondary partition on the SD card) if you need to save anything locally. The system itself will run fine without write access. Only your files could be at risk if you lose power mid-write.
You can also configure your system to boot from USB storage instead of SD card. Keeping the system partition read-only is probably still a good idea, if possible in your setup.
Source: Shane S. @ https://raspberrypi.stackexchange.com/questions/7978/how-can-i-prevent-my-pis-sd-card-from-getting-corrupted-so-often
It wasn't ever an issue of power or corruption. It was hitting the rewrite limit of the SD card itself. I had it on a UPS with my other network equipment and maintained a 100% uptime other than intentional outages with clean reboots. Literally wrote so much log info the card would die. You could still read the card but writing would no longer function.
The suggestion to do a read-only setup would be optimal, I'd prefer it be ram based though as I wouldn't have such dire need of logs that losing them during a power cycle would cause me any grief.