To allow sound and Flash access in a FreeBSD jail, you need to enable the necessary permissions and mount the appropriate file systems in the jail.
Here is the general process for allowing sound and Flash access in a FreeBSD jail:
/etc/jail.conf
file:allow.mount; allow.mount.devfs; allow.mount.procfs; allow.mount.linprocfs; allow.mount.tmpfs; allow.mount.fdescfs; allow.sysvipc; allow.raw_sockets; allow.socket_af;
This will enable the necessary permissions and file systems in the jail.
/etc/jail.conf
file:mount.devfs; mount.procfs; mount.linprocfs; mount.fdescfs;
This will mount the necessary file systems in the jail.
/etc/jail.conf
file, you need to restart the jail for the changes to take effect. You can do this by running the following command:service jail restart
This will restart the jail and apply the changes.