I've been attempting to run FreeBSD off USB stick and to speed things up moved my /var to fast NVMe SSD and /tmp to in-memory tmpfs. Sadly, package extraction phase during
End of the day I can move everything to SSD but as a temp workaround would there be a way to manually
pkg install
still takes forever. Does pkg
extract to somewher in / or /usr or smth?End of the day I can move everything to SSD but as a temp workaround would there be a way to manually
tar -xf
fetched package and then install it from that directory? So:
Code:
tar -xf /var/cache/pkg/binutils-2.33.1_4,1.txz -C /tmp/binutils
cd /tmp/binutils
pkg install ???