Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just create an instance. type : Amazon Linux AMI 2012.09 64bit.

I am confuse when I want to download or do something. I need to choose OS type like Debian,Ubuntu,CentOS, RHEL, Fedora etc.

now I want to download Node.js

https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager

what OS should I choose ? thanks.

share|improve this question
1  
AWS AMI uses the RPM format like CentOS. However, I would like to download the source rpm and rebuild it for AWS AMI. – qrtt1 Nov 20 '12 at 2:03

closed as off topic by Thilo, Greg Hewgill, Sirko, dda, Blazemonger Nov 20 '12 at 15:26

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

The Amazon Linux AMI is based on RHEL and might thus not be the best match if your goal is to easily set up node.js.

Either follow the RHEL instructions on the page you linked or alternatively install an Ubuntu AMI if you want an easier installation of node.

share|improve this answer
My purpose is to install underscore-cli. npmjs.org/package/underscore-cli. To do that I need to install npm first. Is there any other way to install underscore-cli OR npm? – stefanus Nov 20 '12 at 2:22
To my understanding both require the node base system. So to make your life easier, I recommend choosing a distribution that is well supported by node. – 0x90 Nov 20 '12 at 2:32
I need to implement this underscore-cli to a running server(not my new instance) So I can't choose distribution now. Can you guys tell me how to install npm in a aws linux ami? – stefanus Nov 20 '12 at 2:46
Yes, you can follow the installation instructions for RHEL on the site you provided. It won't be the easiest way but it should work. Also, I strongly recommend you look into EC2 usage patterns. It seems you are running EC2 instances as server replacements which is generally a horrible idea as AWS does not give any guarantees regarding uptime. Any EC2 instance should be replacable and not require any manual configuration. – 0x90 Nov 20 '12 at 2:51
It works. thanks for your comment. – stefanus Nov 20 '12 at 3:29
show 1 more comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.