--
http://nodered.org
---
You received this message because you are subscribed to the Google Groups "Node-RED" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-red+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Having installed it, I'm happily running it and have installed additional nodes without any problems.
Rgds. Mark
--
http://nodered.org
---
You received this message because you are subscribed to a topic in the Google Groups "Node-RED" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/node-red/32a4woIKeZo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to node-red+u...@googlegroups.com.
Currently using init.d as we are not actually installing as a running service. (As not everyone may want Node-RED running by default on their new install... ) so we installed it so it could be enabled simply, but also run using the same script. So the new node-red-start command starts the service and then tails the log file so the user can see the output.
That way we can use the same menu shortcut whether it is stopped, running or running as a service.
This may also be possible with systemd but I'm not yet familiar enough with it, so went with what does the job.
So what version of Raspbian do I need to look for to getbNR built in?
Raspbian Jessie
I have a zero and plan to test the latest development next week but bear in mind the zero has no Ethernet and is not fast like pi2. I have only moderate ambition for it.
So what version of Raspbian do I need to look for to getbNR built in?
And is password security already in place or does that need adding?
Pete
You received this message because you are subscribed to a topic in the Google Groups "Node-RED" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/node-red/32a4woIKeZo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to node-red+u...@googlegroups.com.
Slight clarification please. Is that included in the November NOOBS version – or do we need to download the separate Raspbian Jessie standalone version?
Pete.
--
http://nodered.org
---
You received this message because you are subscribed to a topic in the Google Groups "Node-RED" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/node-red/32a4woIKeZo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to node-red+u...@googlegroups.com.
Julian,
In Raspbian Jessie, node.js and npm are packaged separately and the preinstalled version of node-red depends on just the node.js package. This was done to keep the footprint of the node-red package as small as possible as previously node.js was not preinstalled on the image.
It is good enough to try node-red out and if you want to install additional nodes, as the updated Raspberry Pi docs state, you have to first "apt-get install npm" - this is guaranteed to get you the right version of npm as it is also the version packaged for Raspbian Jessie.
If you want to run with a different version of node.js then, as full explained in our RPi docs, you have to remove the apt installed version of node-red and node.js and (if you had added it) npm, before following the instructions for installing node and the rest. Those instructions should always get you npm installed alongside node.js.
Nick
inodered package only depends on the nodejs package. It does not depend on the npm package -
--
As noted in another thread you do see to have hit the perfect bad news combination. We are trying to resolve this now.The particular node you are trying to add does not fix it's own dependancies to versions that are known to work, instead relying on the underlying author not to make breaking changes... The underlying package meanwhile has been "enhanced" such that it now requires the newer version of node - which then breaks. I have asked the author to "pin" the required version back to an older level that does compile without problems against the node v0.10.x . This then does compile and works fine - I have posted the workaround in the other thread - while we wait for the author to accept the pull request.
--
http://nodered.org
---
You received this message because you are subscribed to a topic in the Google Groups "Node-RED" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/node-red/32a4woIKeZo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to node-red+u...@googlegroups.com.
To do this you must uninstall the built-in version and re-install using the instructions below. To uninstall:
sudo apt-get remove nodered
sudo apt-get remove nodejs nodejs-legacy
sudo apt-get remove npm # if you installed npm
This will remove all the built in packages but leave your workspace - by default at ~/.node-red
. You may then proceed to re-install as per instructions below.
and
To install Node.js on Pi 2 - and other Arm7 processor based boards, run the following commands:
curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
sudo apt-get install -y build-essential python-dev python-rpi.gpio nodejs
and
The easiest way to install Node-RED is to use node’s package manager, npm:
sudo npm install -g --unsafe-perm node-red
When I run
node-red-pi --max-old-space-size=128
I get the following error
pi@raspberrypi:~ $ node-red-pi --max-old-space-size=128
/usr/lib/node_modules/node-red/node_modules/fs-extra/lib/mkdirs/mkdirs-sync.js:39
throw err0
^
Error: ENOSPC, no space left on device '/home/pi/.node-red'
at Error (native)
at Object.fs.mkdirSync (fs.js:747:18)
at Object.mkdirsSync (/usr/lib/node_modules/node-red/node_modules/fs-extra/lib/mkdirs/mkdirs-sync.js:22:9)
at Object.copySync (/usr/lib/node_modules/node-red/node_modules/fs-extra/lib/copy-sync/copy-sync.js:30:36)
at Object.<anonymous> (/usr/lib/node_modules/node-red/red.js:89:20)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
Any Idea ?? I think I'm starting to become a PIA
Jeff
Well, the error message says it all:
error: ENOSPC, no space left on device
Your disk is full!
What size SD card are you using? Can you share the output of the command 'df'?
Nick
--
http://nodered.org
---
You received this message because you are subscribed to a topic in the Google Groups "Node-RED" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/node-red/32a4woIKeZo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to node-red+u...@googlegroups.com.
Is that a 4GB SD card?
(Will pick this up in the morning.)
You need to run
sudo raspi-config
https://www.raspberrypi.org/documentation/configuration/raspi-config.md