Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct note about re-flashing HBAs #917

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/posts/budget-nas/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ With scarce physical space and motherboard ports, I didn't want a dedicated grap

Many NAS builds include a [host bus adaptor](https://www.truenas.com/community/threads/whats-all-the-noise-about-hbas-and-why-cant-i-use-a-raid-controller.81931/) (HBA). An HBA is a chip that goes into the PCI slot of a motherboard and increases the number of disks the motherboard can support.

ZFS requires you to [reflash the HBA's firmware](https://www.servethehome.com/ibm-serveraid-m1015-part-4/) in a process that sounds tedious and confusing. I decided to punt on the HBA until I need more storage. The ASUS A320I-K has four SATA ports, which is enough for my initial needs. I made sure to leave a PCI slot empty for a future HBA.
~~ZFS requires you to [reflash the HBA's firmware](https://www.servethehome.com/ibm-serveraid-m1015-part-4/) in a process that sounds tedious and confusing~~ (Edit: Apparently, [re-flashing is only necessary on RAID HBAs](https://mtlynch.io/budget-nas/#comment-6)). I decided to punt on the HBA until I need more storage. The ASUS A320I-K has four SATA ports, which is enough for my initial needs. I made sure to leave a PCI slot empty for a future HBA.

### ECC RAM

Expand Down
3 changes: 3 additions & 0 deletions tests/lint-html
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ IGNORE_PATTERNS+=("/www.sciencedirect.com/")
IGNORE_PATTERNS+=("/developer.github.com/")
IGNORE_PATTERNS+=("/docs.github.com/")
IGNORE_PATTERNS+=("/calculator.aws/")
# Ignore links to comments that only load in production.
IGNORE_PATTERNS+=("/mtlynch.io\/.*#comment-.*/")


URL_IGNORE="$(join_by , "${IGNORE_PATTERNS[@]}")"

Expand Down