Skip to content

Instantly share code, notes, and snippets.

@zolem
Forked from itsmepetrov/nvm_fix.sh
Created April 15, 2019 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zolem/f61e6ece0da2e28e8aae04517b511f6b to your computer and use it in GitHub Desktop.
Save zolem/f61e6ece0da2e28e8aae04517b511f6b to your computer and use it in GitHub Desktop.
Fix NVM to use from root (or sudo)
# StackOverflow: http://stackoverflow.com/questions/21215059/cant-use-nvm-from-root-or-sudo
# Source: https://www.digitalocean.com/community/tutorials/how-to-install-node-js-with-nvm-node-version-manager-on-a-vps
# The below command seems to fix the problem
n=$(which node);n=${n%/bin/node}; chmod -R 755 $n/bin/*; sudo cp -r $n/{bin,lib,share} /usr/local
# The above command is a bit complicated, but all it's doing is copying whatever version of node
# you have active via nvm into the /usr/local/ directory (where user installed global files should
# live on a linux VPS) and setting the permissions so that all users can access them.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment