Jeff Geerling
Jeff Geerling
Some responses: - n|fused modified Active Coolers using a similar technique that I used for the Radxa Penta SATA HAT — physically removing three of the heatsink fins (I used...
I also received the cutest little PCIe card (that's not a PCIe card) along with this TimeHAT V1 prototype:  It's called the 'Time Stick', and it has an ASIX...
It's on the site here: https://pipci.jeffgeerling.com/hats/ocp-tap-timehat.html
Note: There's a V2, which I'm documenting here: https://github.com/geerlingguy/raspberry-pi-pcie-devices/issues/674 It has fixed a few hardware bugs in V1, so I'll close out this issue and move on to there.
I'm currently having this issue with 12.0.0 on my Pi 5 and a 5GHz network. 2.4GHz network seems fine for now, after I had the 5G network issues. The first...
Would love to see this as well :)
Note that the `{{ ansible_managed }}` string is now static by default—see https://github.com/ansible/ansible/pull/18094/files.
I've added a new [`geerlingguy.hdparm`](https://galaxy.ansible.com/geerlingguy/hdparm/) role on Ansible Galaxy for control over this parameter. I will also need to see about setting it on-the-fly or if I can get hdparm...
To set spin-down on the fly: ``` # Enable power management on USB HDD. sudo hdparm -B 127 /dev/sda # Set spindown time to 10 minutes. sudo hdparm -S120 /dev/sda...
Looks like this works nicely with the following in `/etc/hdparm.conf`: ``` /dev/sda { spindown_time = 120 } ```