If your only concern is noise (and not saving power), then the easiest solution is to just sound-proof your case - install some foam pads or something to dampen the noise. Check out https://www.quietpc.com/acousticmaterials to get an idea of what's out there and what you can use, but even simple random foam that you'd get in parcels would work to start off with.
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
You may want to research this some more. Spinning the drive up and down adds wear on the mechanical parts, and will lead to the drive failing a lot sooner.
Maybe you're okay with that tradeoff, just thought you should at least be aware of it.
Checkout smartctl. You can either force shutdown immediately or after some idle time. Command is something like this:
smartctl -n -s standby,VALUE /dev/sda with value either "now" or something between 0 and 255. From the manpage:
Values from 1 to 240 specify timeouts from 5 seconds to 20 minutes in 5 second increments. Values from 241 to 251 specify timeouts from 30 minutes to 330 minutes in 30 minute increments. Value 252 specifies 21 minutes. Value 253 specifies a vendor specific time between 8 and 12 hours. Value 255 specifies 21 minutes and 15 seconds.
Value 252 specifies 21 minutes.
That's interestingly specific. Any idea why?
@Revan343 @Unimeron
The ATA specification takes the values that way. https://people.freebsd.org/~imp/asiabsdcon2015/works/d2161r5-ATAATAPI_Command_Set_-_3.pdf
252 * 5 sec = 1260 sec or 21 min. I wonder what 254 does...
I tried it and it does not seem to work unfortunately, at this point I think my HDD does not support the function to enter standby, although in Windows it does.
Did reformat the drive recently to ext4? there's a background process running that's doing deferred stuff which keeps the drive busy. try to unmount the drive to ensure it's idle.
Hdparm has 2 -(Yy) flags that should work for you
In fact I tried it and it did work, and I could create a script that does it automatically, the only problem is that how can I make the script detect that there are no processes that depend on the HDD?
If that's your goal I would set the apm on the disk so it spins down quickly when not active.
hdparm -B 50 -S 30 /dev/disk
Maybe you can unmount the HDD, then no process can access it and hd-idle could work.
I tried it and it didn't work... Thanks for the idea actually, I hadn't thought about it.