Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Read-only file system" with SIP disabled in macOS Catalina

I am trying to copy some files from a path to my libs path (/usr/lib), I am trying with sudo cp {my file}/usr/lib/ bit I got this error.

/usr/lib/{my_file} Read-only file system

I have validated and indeed System Integrity Protection is disabled (SIP) I am using macOs Catalina 10.15.4 I Hope you can help me thanks.

like image 626
Alexandra Pierce Avatar asked Dec 18 '22 13:12

Alexandra Pierce


1 Answers

You just should try with

sudo mount -uw / 

it should work

like image 71
Juanse Avatar answered Dec 28 '22 09:12

Juanse