2016-05-07 19 views
2

私はlimeツールでHTML5/JavaScriptで私のhaXeのプロジェクトをビルドしようとすると、私はこのエラーを取得し、これらの警告を構築しようとしているとき:権限エラーhaXeのプロジェクト

[email protected] ~/C/Similar-Game> lime test html5 
chmod: changing permissions of ‘/usr/share/haxelib/lime/2,9,1/templates/bin/webify-linux64’: Operation not permitted 
chmod: changing permissions of ‘/usr/share/haxelib/lime/2,9,1/templates/bin/webify-linux64’: Operation not permitted 
Warning: Could not find generated font file "/usr/share/haxelib/flixel/4,0,1/assets/fonts/nokiafc22.eot" 
Warning: Could not find generated font file "/usr/share/haxelib/flixel/4,0,1/assets/fonts/nokiafc22.woff" 
Warning: Could not find generated font file "/usr/share/haxelib/flixel/4,0,1/assets/fonts/nokiafc22.svg" 
Warning: Could not find generated font file "/usr/share/haxelib/flixel/4,0,1/assets/fonts/monsterrat.eot" 
Warning: Could not find generated font file "/usr/share/haxelib/flixel/4,0,1/assets/fonts/monsterrat.woff" 
Warning: Could not find generated font file "/usr/share/haxelib/flixel/4,0,1/assets/fonts/monsterrat.svg" 
chmod: changing permissions of ‘/usr/share/haxelib/lime/2,9,1/templates/bin/node/node-linux64’: Operation not permitted 
sh: 1: /usr/share/haxelib/lime/2,9,1/templates/bin/node/node-linux64: Permission denied 
[email protected] ~/C/Similar-Game> 

どのように私はこれらを解決します警告とエラー?そして、sudoとは言わないので、ゲームを作るためにそれをする必要はありません。あなたはおそらく、sudoを使用して、石灰をインストール

答えて

2

ので、これを試してみてください。

sudo chmod a+x /usr/share/haxelib/lime/2,9,1/templates/bin/webify-linux64 
sudo chmod a+x /usr/share/haxelib/lime/2,9,1/templates/bin/node/node-linux64 

これは、すべてのユーザーに「実行の権利を与えます。

関連する問題