0
When I go to check the version of Apache Cordova on Ubuntu appears the message below.
Error: EACCES: permission denied, open '/home/henrique/.config/configstore/insight-cordova.json' You don't have access to this file.
How do I fix?
0
When I go to check the version of Apache Cordova on Ubuntu appears the message below.
Error: EACCES: permission denied, open '/home/henrique/.config/configstore/insight-cordova.json' You don't have access to this file.
How do I fix?
0
You must change the owner of the directory files:
# Se estiver usando distribuições Linux
/home/NOME_DO_USUARIO/.config/configstore/
# Se estiver utilizando Mac
/Users/NOME_DO_USUARIO/.config/configstore/
Just run the following by eating in the terminal:
# Se estiver usando distribuições Linux
sudo chown -R NOME_DO_USUARIO /home/NOME_DO_USUARIO/.config/configstore/
# Se estiver utilizando Mac
sudo chown -R NOME_DO_USUARIO /Users/NOME_DO_USUARIO/.config/configstore/
Browser other questions tagged apache-cordova ubuntu
You are not signed in. Login or sign up in order to post.
Related: "EACCES" error when using Cordova on OS X
– NoobSaibot
Try this command:
sudo chown -R henrique /home/henrique/.config/configstore/
– NoobSaibot
Fixed the problem, thank you!!!
– enriq