Skip to content

Instantly share code, notes, and snippets.

@StefanWallin
Created August 19, 2011 11:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StefanWallin/1156587 to your computer and use it in GitHub Desktop.
Save StefanWallin/1156587 to your computer and use it in GitHub Desktop.
nodejs installed on centos 5
[stefan@dev36 src]$ rpm -ivh nodejs-0.4.9-1.1.x86_64.rpm
warning: nodejs-0.4.9-1.1.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID dfef6298
error: Failed dependencies:
libcares.so.2()(64bit) is needed by nodejs-0.4.9-1.1.x86_64
libev.so.4()(64bit) is needed by nodejs-0.4.9-1.1.x86_64
libv8.so.3()(64bit) is needed by nodejs-0.4.9-1.1.x86_64
libv8_g.so.3()(64bit) is needed by nodejs-0.4.9-1.1.x86_64
[stefan@dev36 lib]$ sudo yum install c-ares
[stefan@dev36 lib]$ sudo yum install --nogpgcheck libev
[stefan@dev36 lib]$ curl http://download.opensuse.org/repositories/home:/SannisDev/CentOS_CentOS-5/x86_64/libv8-3-3.1.8-1.1.x86_64.rpm > libv8-3-3.1.8-1.1.x86_64.rpm
[stefan@dev36 lib]$ sudo yum --nogpgcheck install libv8-3-3.1.8-1.1.x86_64.rpm
[stefan@dev36 lib]$ curl http://download.opensuse.org/repositories/home:/SannisDev/CentOS_CentOS-5/x86_64/nodejs-0.4.9-1.1.x86_64.rpm > nodejs-0.4.9-1.1.x86_64.rpm
[stefan@dev36 lib]$ sudo yum install --nogpgcheck nodejs-0.4.9-1.1.x86_64.rpm
[stefan@dev36 lib]$ node
node: symbol lookup error: node: undefined symbol: ev_rt_now
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment