UBUNTU: ошибка NPM EACCES, хотя я сменил владельца папки - PullRequest
0 голосов
/ 19 сентября 2019

Я пытался установить expo-cli.Ошибка несколько permission denied.Вот шаги, которые я выполнил:

  1. сменил владельца / usr / lib / node_modules с root на anurag (my_current_user)
  2. сменил владельца ~ / .npm с root на anurag (my_current_user)
  3. смена владельца ~ / .config с root на anurag (my_current_user)
  4. смена владельца ~ / home / anurag / .npm с root на anurag (my_current_user)
  5. сменил владельца ~ / .npm с root на anurag (my_current_user)
  6. сменил владельца / usr / bin / node с root на anurag (my_current_user)
  7. сменил владельца / usr /bin / nodejs из root в anurag (my_current_user)
  8. изменил владельца / usr / bin / node-sass из root в anurag (my_current_user)
  9. изменил владельца / usr / bin / expo сroot to anurag (my_current_user)
  10. смена владельца / usr / bin / expo-cli с root на anurag (my_current_user)

Вот фрагмент моего владения папками для моей выставки& expo-cli

lrwxrwxrwx  1 anurag anurag        40 সেপ্টে 18 19:45  expo -> ../lib/node_modules/expo-cli/bin/expo.js
lrwxrwxrwx  1 anurag anurag        40 সেপ্টে 18 19:45  expo-cli -> ../lib/node_modules/expo-cli/bin/expo.js

журнал миссии для node_modules:

total 32
drwxr-xr-x   6 anurag anurag  4096 সেপ্টে 19 14:43 .
drwxr-xr-x 142 root   root   12288 সেপ্টে 17 12:33 ..
drwxr-xr-x   5 anurag anurag  4096 সেপ্টে 18 19:45 expo-cli
drwxr-xr-x   3 anurag anurag  4096 মে    14 12:13 n
drwxr-xr-x   8 anurag anurag  4096 আগস্ট  18 13:57 npm
drwxr-xr-x   3 anurag anurag  4096 সেপ্টে 19 12:24 react-native-cli

Вот журнал ошибок:

npm ERR! path /usr/bin/expo
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall unlink
npm ERR! Error: EACCES: permission denied, unlink '/usr/bin/expo'
npm ERR!  { [Error: EACCES: permission denied, unlink '/usr/bin/expo']
npm ERR!   cause:
npm ERR!    { Error: EACCES: permission denied, unlink '/usr/bin/expo'
npm ERR!      errno: -13,
npm ERR!      code: 'EACCES',
npm ERR!      syscall: 'unlink',
npm ERR!      path: '/usr/bin/expo' },
npm ERR!   stack: 'Error: EACCES: permission denied, unlink \'/usr/bin/expo\'',
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'unlink',
npm ERR!   path: '/usr/bin/expo' }
npm ERR! 
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR! 
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator (though this is not recommended).

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/anurag/.npm/_logs/2019-09-19T08_43_22_377Z-debug.log

1 Ответ

0 голосов
/ 22 сентября 2019

Я не знаю, почему это не сработало.Но я нашел работу вокруг.Я решил проблему путем смены владельца терминала.

sudo -i

Затем успешно установлен.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...