你好,我使用谷歌云示例来运行我的代码,techonepl@instance-1:/opt/wpscan$ sudo gem install bundler && bundle install --without test Fetching: bundler-1.14.6.gem (100%) Successfully installed bundler-1.14.6 Parsing documentation for bundler-1.14.6 Installing ri documentation for bundler-1.14.6 Done installing documentation for bundler after 7 seconds 1 gem installed There was an error while trying to write to
/opt/wpscan/.bundle/config . It is likely that you need to grant write permissions for that path.
即使我使用sudo运行它,我还需要授予什么?系统信息:Ubuntu 14.04 Trusty 2GB Ram在Google Cloud上运行。我试图安装“wpscan”
3条答案
按热度按时间um6iljoc1#
通过
curl -sSL https://get.rvm.io | bash -s stable source ~/.rvm/scripts/rvm echo "source ~/.rvm/scripts/rvm" >> ~/.bashrc rvm install 2.2.3 rvm use 2.2.3 --default echo "gem: --no-ri --no-rdoc" > ~/.gemrc gem install bundler
修复和
sudo chmod -R 777 /opt/wpscan/.bundle
很好,谢谢。
l7wslrjt2#
3xiyfsfu3#
将环境变量
BUNDLE_PATH
设置为用户有权写入的文件夹,例如参见GitHub issue。