Any and all help is greatly appreciated.
Using FreeBSD 10.3 STABLE
I am new to FreeBSD and have been following this guide for thin jails and this guide for jail.conf.
This is what I get when I try to run
This is my /etc/fstab:
This is my /etc/rc.conf:
This is my /etc/jail.conf:
Using FreeBSD 10.3 STABLE
I am new to FreeBSD and have been following this guide for thin jails and this guide for jail.conf.
This is what I get when I try to run
service jail start
:
Code:
Starting jails:jail: qa: mount.fstab: /etc/fstab.qa: No such file or directory
This is my /etc/fstab:
Code:
/home/j/mroot /home/j/sb nullfs ro 0 0
/home/j/mroot /home/j/dev nullfs ro 0 0
/home/j/mroot /home/j/demo nullfs ro 0 0
/home/j/mroot /home/j/qa nullfs ro 0 0
/home/js/sb /home/j/sb/s nullfs rw 0 0
/home/js/dev /home/j/dev/s nullfs rw 0 0
/home/js/demo /home/j/demo/s nullfs rw 0 0
/home/js/qa /home/j/qa/s nullfs rw 0 0
This is my /etc/rc.conf:
Code:
hostname="warden.euphrus.com"
ifconfig_em0="inet 192.168.1.3 netmask 255.255.255.0"
defaultrouter="192.168.1.254"
sshd_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
zfs_enable="YES"
jail_enable="YES"
This is my /etc/jail.conf:
Code:
exec.start += "/bin/sh /etc/rc";
exec.stop = "/bin/sh /etc/rc.shutdown";
exec.clean;
mount.devfs;
path = "/usr/home/j/$name";
sb {
host.hostname = "sb.euphrus.com";
ip4.addr = "192.168.1.11";
}
dev {
host.hostname = "dev.euphrus.com";
ip4.addr = "192.168.1.12";
}
demo {
host.hostname = "demo.euphrus.com";
ip4.addr = "192.168.1.13";
}
qa {
host.hostname = "qa.euphrus.com";
ip4.addr = "192.168.1.14";
}