Ejecutando MacOS Sierra (10.12.6)
me $ sudo su root
sh-3.2# bash
bash-3.2# pwd
/usr/share
bash-3.2# mkdir tomcat6
mkdir: tomcat: Operation not permitted
bash-3.2# chmod g+w /usr/share/
chmod: Unable to change file mode on /usr/share/: Operation not permitted
bash-3.2# chflags nouchg /usr/share/
bash-3.2# mkdir tomcat
mkdir: tomcat: Operation not permitted
bash-3.2# chmod g+w /usr/share/
chmod: Unable to change file mode on /usr/share/: Operation not permitted
Tengo una aplicación web que espera encontrar archivos de registro en / usr / share / tomcat6 / logs /. Como este directorio no existe, estoy intentando crear / usr / share / tomcat6, y luego crear un enlace flexible desde allí (llamado registros) al directorio de registros real.
¿Cómo derroto a OS / X y me salgo con la mía?