Wednesday, November 5, 2014

Raspberry Pi - How to check Free space in Raspberry Pi

I was actually looking  how to check free space in Raspberry. The linux df command helps to check the disk file system.
 
You can try df -BM to get the disk space .
 
Raspberry Pi Using ‘-h‘ parameter with (df -h) will shows the file system disk space statistics in “human readable” format, means it gives the details in bytes, mega bytes and gigabyte. For more details on Df command visit http://www.tecmint.com/how-to-check-disk-space-in-linux/ 

Sunday, November 2, 2014

Express node first program ran in Raspberry pi

Express is a framework for node.js. It will easy build application using Express. Started to try some applications with Express in Raspberry Pi.

Express is a minimal and flexible Node.js web application framework that provides a robust set of features.http://expressjs.com/

installation - http://expressjs.com/starter/installing.html

examples - http://expressjs.com/guide/error-handling.html