I have this PHP old legacy code that I have inherited. There is hardcode references to /home/project everywhere I can not change them.
I am on MacOS/Sierra and it will not let me create a folder in /home
sudo mkdir /home/myproj
mkdir: /home/myproj: Operation not supported
I am not new to Linux but new to MacOS
I tried sudo as well and still will not let me.
I also thought maybe a symlink but still not allowed.
$ csrutil status
System Integrity Protection status: disabled.
I still get the same error
mkdir: /home/foo: Operation not supported
sudo mkdir -p /home/foo
one time after you’ve loosened the SIP shackles. – bmike Aug 19 '17 at 01:16