no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
— | nas4free [2014/07/18 15:33] (current) – created - external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== nas4free ====== | ||
+ | * [[FreeBSD]] | ||
+ | * [[FreeNAS]] | ||
+ | * [[ZFS]] | ||
+ | |||
+ | == Add packages from FreeBSD == | ||
+ | |||
+ | **Do NOT install remote packages. | ||
+ | |||
+ | < | ||
+ | export PACKAGESITE ftp:// | ||
+ | pkg_add -r wget | ||
+ | </ | ||
+ | |||
+ | == Add data partition == | ||
+ | |||
+ | This would happen in a situation where you've done a full install onto an extra drive, and want to use the extra space for storage. | ||
+ | |||
+ | Add DATA partition, and DO NOT FORMAT. | ||
+ | |||
+ | == Add swap partition == | ||
+ | |||
+ | Enable swap at '' | ||
+ | |||
+ | == Add encrypted partition == | ||
+ | |||
+ | First import the disk at '' | ||
+ | |||
+ | Create a new encrypted disk at '' | ||
+ | |||
+ | Format the disk at '' | ||
+ | |||
+ | Finally, mount the disk as normal. | ||
+ | |||
+ | === Notes === | ||
+ | |||
+ | I tried setting up nas4free on a server, so that it could act primarily as a netatalk NAS. I wanted to use one user that everyone could read and write to (macuser, macgroup), and so I created separate users with different passwords, but had the same UID and GID: | ||
+ | |||
+ | < | ||
+ | vi /etc/passwd | ||
+ | vi / | ||
+ | pwd_mkdb / | ||
+ | </ | ||
+ | |||
+ | This worked fine once the server was setup. | ||
+ | |||
+ | Aside from that, everything worked fine. Mac clients didn't have any issues seeing the server or the shares on the network, and the general issues that usually accompany an install were gone too. Finder was not finicky. | ||
+ | |||
+ | All in all, it was a good test run, but ultimately I couldn' |