【发布时间】:2017-11-13 11:59:29
【问题描述】:
只是想知道是否有人可以对在 Virtualbox 机器上运行的 npm install 有所了解(安装了 Ubuntu v16.4).. 我很抱歉这个错误
osboxes@osboxes:/media/sf_ubuntu/angular$ npm install
app@0.0.0 /media/sf_ubuntu/angular
├── UNMET PEER DEPENDENCY @angular/compiler@2.2.3
└── UNMET PEER DEPENDENCY @angular/core@2.2.3
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules/chokidar/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.0.15: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN codelyzer@1.0.0-beta.3 requires a peer of @angular/compiler@~2.1.1 but none was installed.
npm WARN codelyzer@1.0.0-beta.3 requires a peer of @angular/core@~2.1.1 but none was installed.
npm WARN app@0.0.0 No repository field.
npm ERR! Linux 4.8.0-22-generic
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install"
npm ERR! node v6.9.1
npm ERR! npm v3.10.8
npm ERR! path ../acorn/bin/acorn
npm ERR! code EROFS
npm ERR! errno -30
npm ERR! syscall symlink
npm ERR! rofs EROFS: read-only file system, symlink '../acorn/bin/acorn' -> '/media/sf_ubuntu/angular/node_modules/.bin/acorn'
npm ERR! rofs This is most likely not a problem with npm itself
npm ERR! rofs and is related to the file system being read-only.
npm ERR! rofs
npm ERR! rofs Often virtualized file systems, or other file systems
npm ERR! rofs that don't support symlinks, give this error.
npm ERR! Please include the following file with any support request:
npm ERR! /media/sf_ubuntu/angular/npm-debug.log
npm ERR! code 1
【问题讨论】:
-
是否为您的共享 Virtualbox 文件夹选择了“只读”?
-
什么是 /media/sf_ubuntu/angular ?它是网络路径还是可移动驱动器?如果是这样,您需要检查其权限。
-
这似乎是一个权限问题。我不得不将 package.json 移动到 ubuntu HDD 内的文件夹中。现在运行正常。谢谢
标签: node.js ubuntu npm webpack virtualbox