[beagleboard] Need help locating the pre-compiled versions of Node.js and Cloud 9 IDE for Debian

2014-06-16 Thread macarr
I've compiled Debian 3.8 for the Beaglebone Black (from the RCN git repository) and have it running on an SD card. My Beaglebone Black has an active Ethernet connection. I opened a Firefox connection to the BBB from my PC (running Ubuntu). The connection is successful but with the following mes

Re: [beagleboard] Need help locating the pre-compiled versions of Node.js and Cloud 9 IDE for Debian

2014-06-16 Thread Robert Nelson
On Mon, Jun 16, 2014 at 12:59 PM, wrote: > I've compiled Debian 3.8 for the Beaglebone Black (from the RCN git > repository) and have it running on an SD card. My Beaglebone Black has an > active Ethernet connection. I opened a Firefox connection to the BBB from my > PC (running Ubuntu). The conn

Re: [beagleboard] Need help locating the pre-compiled versions of Node.js and Cloud 9 IDE for Debian

2014-06-16 Thread macarr
Many thanks, Robert! On Monday, June 16, 2014 11:05:07 AM UTC-7, RobertCNelson wrote: > > On Mon, Jun 16, 2014 at 12:59 PM, > wrote: > > I've compiled Debian 3.8 for the Beaglebone Black (from the RCN git > > repository) and have it running on an SD card. My Beaglebone Black has > an > > acti

Re: [beagleboard] Need help locating the pre-compiled versions of Node.js and Cloud 9 IDE for Debian

2014-06-16 Thread William Hermans
Which version of Node.js is the Debian image using that does not include npm ? I've never used the prebuilt Debian image but have built my own, and compile node.js from source ( also not the absolute latest ) but apparently new enough to include npm. I want to say 0.10.6 but I'd have to find and re

Re: [beagleboard] Need help locating the pre-compiled versions of Node.js and Cloud 9 IDE for Debian

2014-06-16 Thread Robert Nelson
On Mon, Jun 16, 2014 at 9:00 PM, William Hermans wrote: > Which version of Node.js is the Debian image using that does not include npm > ? I've never used the prebuilt Debian image but have built my own, and > compile node.js from source ( also not the absolute latest ) but apparently > new enough

Re: [beagleboard] Need help locating the pre-compiled versions of Node.js and Cloud 9 IDE for Debian

2014-06-16 Thread William Hermans
Hmm, odd. I followed the "how to from source" instructions from the git repo for Node, and it mentions that npm is now part of the Node.js build now. When I did get a workign build, sure enough npm was already installed. Those instructions as is did not work, but was very close( required some MAKE

Re: [beagleboard] Need help locating the pre-compiled versions of Node.js and Cloud 9 IDE for Debian

2014-06-16 Thread Robert Nelson
On Mon, Jun 16, 2014 at 9:11 PM, William Hermans wrote: > Hmm, odd. I followed the "how to from source" instructions from the git repo > for Node, and it mentions that npm is now part of the Node.js build now. > When I did get a workign build, sure enough npm was already installed. Those > instruc

Re: [beagleboard] Need help locating the pre-compiled versions of Node.js and Cloud 9 IDE for Debian

2014-06-16 Thread William Hermans
The instructions I noted were as follows . . . apt-get install python build-essential mkdir /nodejs cd /nodejs wget http://nodejs.org/dist/v0.10.15/node-v0.10.15.tar.gz tar xzvf node-v0.10.15.tar.gz cd node-v0.10.15 *./configure --without-snapshot* make ./node -e 'console.log("Testing . . .");' ma