VIMAGE on FreeBSD 10-ALPHA5

Installed a VNET Jail on FreeBSD 10-ALPHA5 and am running into some problems that may have to do with /dev/null.

Code:
-rw-r--r--  1 root  wheel    0 Oct 15 00:12 null
-rw-r--r--  1 root  wheel  178 Oct 14 21:05 stdout

That certainly isn't right, but after deleting it and running:
Code:
# rm /dev/null
# mknod /dev/null c 2 2
mknod: /dev/null: Operation not permitted

Likewise, I have /usr/ports nullfs mounted in the Jail, but when trying to build a port:
Code:
===> Compilation failed unexpectedly.
Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer.
*** Error code 1

Stop.
make[3]: stopped in /usr/ports/ports-mgmt/pkg
*** Error code 1

Stop.
make[2]: stopped in /usr/ports/ports-mgmt/pkg
*** Error code 1

Stop.
make[1]: stopped in /usr/ports/www/apache22
*** Error code 1

Stop.
make: stopped in /usr/ports/www/apache22

Both solved using:
Code:
# mount -t devfs devfs $D/dev
 
Back
Top