Impossibile scrivere su / usr anche con sudo

9

Ecco il mio problema:

sudo php -d detect_unicode=0 go-pear.phar

... dovrebbe lasciarmi girare come root e modificare /usr & /usr/share directory, ma ottengo questo:

Below is a suggested file layout for your new PEAR installation.  To
change individual locations, type the number in front of the
directory.  Type 'all' to change all of them or simply press Enter to
accept these locations.

 1. Installation base ($prefix)                   : /usr
 2. Temporary directory for processing            : /tmp/pear/install
 3. Temporary directory for downloads             : /tmp/pear/install
 4. Binaries directory                            : /usr/bin
 5. PHP code directory ($php_dir)                 : /usr/share/pear
 6. Documentation directory                       : /usr/docs
 7. Data directory                                : /usr/data
 8. User-modifiable configuration files directory : /usr/cfg
 9. Public Web Files directory                    : /usr/www
10. System manual pages directory                 : /usr/man
11. Tests directory                               : /usr/tests
12. Name of configuration file                    : /private/etc/pear.conf

1-12, 'all' or Enter to continue: 
Unable to create PHP code directory ($php_dir) /usr/share/pear.
Run this script as root or pick another location.

Perché sudo non riesce a darmi il privilegio di root? * Nota: * Sono nel gruppo wheel, anche se questo non dovrebbe avere nulla con questo divertente comportamento sudo .

Gabbar-Singh:~ anadi$ id anadi
uid=XXX(anadi) gid=XX(staff) groups=XX(staff),0(wheel)
    
posta Anadi Misra 10.05.2016 - 05:03
fonte

1 risposta

13

Stai provando ad installare in /usr che è protetto da SIP (System Integrity Protection), una funzionalità introdotta con 10.11 (vedi Qual è la caratteristica "senza radici" di El Capitan, davvero ? per i dettagli).

Utilizza invece /usr/local , che è la posizione destinata alle installazioni sul lato utente.

    
risposta data 10.05.2016 - 08:54
fonte

Leggi altre domande sui tag