February 9, 20233 yr I have an Ubuntu VM set up which I am using as a remote host in VSCode, however I'm running into an issue setting up projects. One of my projects uses create-react-app. When running `npm install`, it slows to a crawl and eventually fails: npm ERR! code ENOTSUP npm ERR! syscall symlink npm ERR! path ../acorn/bin/acorn npm ERR! dest <path>/node_modules/.bin/acorn npm ERR! errno -95 npm ERR! nospc ENOTSUP: operation not supported on socket, symlink '../acorn/bin/acorn' -> '<path>/node_modules/.bin/acorn' npm ERR! nospc There appears to be insufficient space on your system to finish. npm ERR! nospc Clear up some disk space and try again. I have the VM mapped to a share on my server. Perhaps there is an issue with how that is setup? Anyone know how I could get around this? I did find a suggestion to use the `-no-bin-links` flag, after which install does finish, but when running `npm start`, I'm told react-scripts doesn't exist even though I confirmed it is installed in `node_modules`. Edited February 9, 20233 yr by no-thanks
February 9, 20233 yr Author I believe it is something misconfigured with how the share is mounted in the VM, as I'm able to install directly to the VM disk without issue.
February 10, 20233 yr 13 hours ago, no-thanks said: When running `npm install`, it slows to a crawl and eventually fails Does it work if you add --no-bin-links? npm install --no-bin-links Update: read now that you already tried..no more suggestions Edited February 10, 20233 yr by ghost82
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.