Howdy 
If I understood correctly, bsdinstall(8) recommends to turn off SUJ for SSD but what is recommended for HDD?

If I understood correctly, bsdinstall(8) recommends to turn off SUJ for SSD but what is recommended for HDD?
fsck
should scan every file-system object to check for corruption, basically walk thru all directories and files, meaning lots of mostly random I/O. That being said, I had cases, where journal were not enough and a manual fsck
were still necessary after system crash.Are /var (1G) and /tmp (1G) not good sizes?/var (10G+) and /tmp (10G+) partitions
Lots of things are inside /var (including log and temporary files, including freebsd-update(8), cached downloaded binary packages, port updates, or databases, if you go this way), and lots of programs use /tmp for various purposes.Are /var (1G) and /tmp (1G) not good sizes?
du
command ran for several minutes, but /usr/obj contains compiled kernel and a nanobsd image):# du -sh /usr /var
13G /usr
2.5G /var
What is the difference between /tmp and tmpfs?
Edit: This answers my question.
After I posted #8, I immediately searched in tmpfs(5), FreeBSD's wiki and FreeBSD's forumsI've always used a ramdisk for temporary files ever since the good old days of MS-DOS (my uncle had set TMP to reside on a Turbodisk drive) and it's really a bless to speed things up, unless you're low in physical RAM and want to save the maximum possible for standard user processes
I would advise against referring to the Arch wiki unless for quick tips about configuring specific programs. It's a common practice in Linux communties to address it as 'the official UNIX reference', whereas it's just an appendix of articles, often redundant and sometimes contradictory, outdated or mistaken, written by different users, with different competence, opinions, targets, and and different confidence with English language. There's not an official way about how to write a Arch wiki page and quality check in not that strict outside pages related to pacman, installation and Arch Linux in general. That wiki often doesn't teach users how to deal with their system, rather it often suggests a list of commands, script and conf files to blindly copy and paste, ad this results in all Linux users adopting the same configuration as the wiki author of interest, which isn't necessarily th best, the most secure, the most up to date and easiest one.
There are soo many official wikis available online for this or that specific programs, while for smaller utilities the are Github READMEs and docs. Besides those, FreeBSD provides the handbook, the wiki, pkg-messages and samples, and an awesome database of exhaustive man pages. In this particular case a quick look to tmpfs(5) would have been more than enough, especially considering FreeBSD's tmpfs is different from Linux'![]()