2016-08-16 24 views
0

私のMAC OSにnet-keepaliveモジュールをインストールできますが、私のUbuntu 16.04にインストールできない理由はわかりません。 このモジュールを使用する理由は、node.JSネットモジュールのクローズイベントが期待どおりに動作しなかったためです。イベントを閉じるためにTCPサーバーがEtghernetケーブルのプラグを抜いてしまいます。私が望むのは、TCPサーバーのイーサネットケーブルが抜かれたり電源が切れたときに、ノードサーバーがそのことを知ることができることです。ネットキープアライブモジュールがUbuntuにインストールできない場合は、他にも何かお勧めします。Ubuntu 16.04にnet-keepaliveモジュールをインストールできない

次のようにエラーメッセージを表示:Ubuntuの/ Debianでは

[email protected]:~$ sudo npm install net-keepalive 
[sudo] password for chroma: 

> [email protected] install /home/chroma/node_modules/net-keepalive/node_modules /ref 
> node-gyp rebuild 

/bin/sh: 1: node: not found 
gyp: Call to 'node -e "require('nan')"' returned exit status 127 while in binding.  
gyp. while trying to load binding.gyp 
gyp ERR! configure error 
gyp ERR! stack Error: `gyp` failed with exit code: 1 
gyp ERR! stack  at ChildProcess.onCpExit (/usr/share/node-gyp/lib   
/configure.js:354:16) 
gyp ERR! stack  at emitTwo (events.js:87:13) 
gyp ERR! stack  at ChildProcess.emit (events.js:172:7) 
gyp ERR! stack  at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12) 
gyp ERR! System Linux 4.4.0-31-generic 
gyp ERR! command "/usr/bin/nodejs" "/usr/bin/node-gyp" "rebuild" 
gyp ERR! cwd /home/chroma/node_modules/net-keepalive/node_modules/ref 
gyp ERR! node -v v4.2.6 
gyp ERR! node-gyp -v v3.0.3 
gyp ERR! not ok 
/home/chroma 
├─┬ [email protected] 
│ └─┬ [email protected] 
│ └── [email protected] 
└── [email protected] 

npm WARN enoent ENOENT: no such file or directory, open '/home/chroma/package.json' 
npm WARN chroma No description 
npm WARN chroma No repository field. 
npm WARN chroma No README data 
npm WARN chroma No license field. 
npm ERR! Linux 4.4.0-31-generic 
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install" "net-keepalive" 
npm ERR! node v4.2.6 
npm ERR! npm v3.5.2 
npm ERR! code ELIFECYCLE 

npm ERR! [email protected] install: `node-gyp rebuild` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] install script 'node-gyp rebuild'. 
npm ERR! Make sure you have the latest version of node.js and npm installed. 
npm ERR! If you do, this is most likely a problem with the ref package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  node-gyp rebuild 
npm ERR! You can get information on how to open an issue for this project with: 
npm ERR!  npm bugs ref 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR!  npm owner ls ref 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR!  /home/chroma/npm-debug.log 
+0

'sudo apt-get install nodejs-legacy'ですか? 'node'のシンボリックリンクがないようです。 – mscdex

+0

こんにちはmscdex、ありがとうございます。出来た。それは私の最初のUbuntuのマシンは、それがシンボリックリンクする必要があることを認識していない、答えとしてあなたのコメントを再投稿できますか?私はそれに答えてマークします。 Thx ~~~ –

答えて

1

あなたはまた、追加されます​​パッケージをインストールしたいと思うでしょう、通常のディストリビューションのリポジトリからパッケージマネージャ経由でのNode.jsをインストールする場合(nodejs実行可能ファイルを持つ代わりに)node実行可能なsymlinkがよく使われます。

関連する問題