Backing up Beaglebone Black SD card image

Run fdisk to see the SD card partition table (use p command) sudo fdisk /dev/sdbCommand (m for help): pDisk /dev/sdb: 7948 MB, 7948206080 bytes245 heads, 62 sectors/track, 1021 cylinders, total 15523840 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x00000000 Device Boot Start End Blocks Id System/dev/sdb1 * 2048 133119 65536 e W95 FAT16 (LBA)/dev/sdb2 133120 1638399 752640 83 Linux Add one to the end of second partition, this number will be used as count parameter of dd command, for example:...

October 16, 2013 · 1 min · Elyézer Rezende

How to install OpenVPN on BeagleBone Black

September 17, 2013 · 0 min · Elyézer Rezende

Instalando o node-sqlite3 na BeagleBone Black

Para instalar o node-sqlite3 na BeagleBone Black é necessário que o npm esteja atualizado: npm install -g npm Em seguida basta instalar o pacote node-sqlite3: npm install -g sqlite3 Observe que a flag -g foi utilizada para instalar no sistema. Para instalar localmente é só não utilizar a flag. O npm precisa ser atualizado pois a versão que vem instalada com a BeagleBone Black falha ao instalar pacotes que precisam ser compilados devido a um bug ao comparar a versão do Python....

September 4, 2013 · 1 min · Elyézer Rezende

Installing node-sqlite3 on BeagleBone Black

To install node-sqlite3 on BeagleBone Black, first install the latest version of npm: npm install -g npm Then install the node-sqlite3 module: npm install -g sqlite3 Note the -g flag used to install system wide. To install locally don’t use the -g flag. Npm must be updated because the version that comes with BeagleBone Black fails comparing Python version when installing compiled packages.

September 3, 2013 · 1 min · Elyézer Rezende