惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
D
Docker
J
Java Code Geeks
腾讯CDC
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
博客园 - Franky
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News

Danb Blog

August 2026: What I've Been Working On · Danb Blog Great Tech: Intel 2500k CPU · Danb Blog July 2026: What I've Been Working On · Danb Blog My Experience with Ubuntu Desktop 26.04 · Danb Blog Thumbnails for Orca 3MF in GNOME Files · Danb Blog Cheaper Sodastream Gas with a Big Tank · Danb Blog June 2026: What I've Been Working On · Danb Blog Running Snyk On Forgejo/Codeberg Actions · Danb Blog Tuta & Proton: An Open Source Client Does Not Result in an Open Source Service · Danb Blog May 2026: What I've Been Working On · Danb Blog 3D Printing Parts for my Greenhouse, Round 2 · Danb Blog Great Devices: Nexus 7 2013 · Danb Blog R36S Console RetroArch Stuck Menu Issue · Danb Blog April 2026: What I've Been Working On · Danb Blog Basic OpenCode Sandboxing with Docker · Danb Blog Games Played in 2025 · Danb Blog March 2026: What I've Been Working On · Danb Blog Shivam Mathur's "node-docker" Images are Awesome for PHP CI · Danb Blog February 2026: What I've Been Working On · Danb Blog Your BookStackApp project was assigned as a project for my Software Architecture course · Danb Blog My Sovol SV08 3D Printer Setup in 2026 · Danb Blog January 2026: What I've Been Working On · Danb Blog Epson Printer: The administrator password you entered was not recognized · Danb Blog Pressure to Follow Process · Danb Blog Online Shopping Email Notifications · Danb Blog My HomeLab Setup in 2026 · Danb Blog Linux Label Printing with the Phomemo D30 · Danb Blog Reporting to the CMA: Google Android Developer Verification · Danb Blog OPNsense & Dnsmasq: Responding with specific DNS servers · Danb Blog An Impromptu Introduction to ZFS Drive Replacement at 1am · Danb Blog
Scheduling Proxmox Storage to Reduce Disk Activity · Danb...
2022-10-03 · via Danb Blog

This year I’ve been enjoying the use of Proxmox as a way to create & manage container & virtual environments for self-hosting my applications and scripts, while also providing a useful location to quickly spin-up development test environments.

To retain backups, I attach my local Synology NAS storage over SMB. There’s a nightly backup task within Proxmox to copy over container images. This was all easy to setup and has been rock-solid since setting it up at the start of the year.

I have found one negative of this approach though. The SMB connection from Proxmox to the NAS seems to query the storage every few seconds. This prevents the disks from ever sleeping, which therefore causes the NAS to consume more power, and it causes the NAS activity LEDs to constantly flash which makes it harder to identify potentially suspicious usage.

To work around these issues, I setup a couple of commands via cron to automatically enable and disable the storage at certain times of the day:

29 1 * * * /usr/sbin/pvesm set storage-name-here -disable 0
45 3 * * * /usr/sbin/pvesm set storage-name-here -disable 1

This is set via accessing the Proxmox host via the shell/ssh, then altering the root crontab via crontab -e, then add these lines to the bottom. The first line enables the storage at 1:29am, and the second line disables it at 3:45am, leaving a window between these times where the storage will be active to receive backups, otherwise inactive for the rest of the day. My backups are scheduled to run at about 2am. You’ll need to replace storage-name-here with the unique storage id name shown in Proxmox.

Taking some rough readings from my UPS, allowing HDDs to hibernate seems to reduce power draw by about 10W, which should add up to a fair bit over a year. I’d also imagine that allowing the HDDs to rest most of the time may help their longevity.