Archivo de la categoría: Raspberry

RaspberryPi as a NVR solution

https://medium.com/@turhan.oz/raspberrypi-shinobi-as-a-nvr-solution-5e4bcca64c32 Install Shinobi Now that our OS is properly configured and that we can access to our device through ssh, let’s install Shinobi. The easiest way is to run the following command on your PI (as defined on the documentation) : $ sudo su$ sh <(curl -s https://gitlab.com/Shinobi-Systems/Shinobi-Installer/raw/master/shinobi-install.sh) The installation will be interactive, as follow : # install… Leer más »

Builing ZFS on Raspberry Pi 3 running Rasbpian

Introduction This is a tutorial for building and installing the latest release version (0.7.3 as of writing) of «ZFS on Linux» on a Raspberry Pi 3 running Raspbian Stretch. Specifically, we’ll be building the dkms version of ZoL, which saves you the hassle of re-compiling the kernel modules after every kernel update. Even though ZoL… Leer más »

add fstab raspberry

blkid # blkid /dev/mmcblk0p1: LABEL=»boot» UUID=»70CI-CB26″ TYPE=»vfat» PARTUUID=»e3cbft8b-01″ /dev/mmcblk0p2: UUID=»f2100b2f-ed84-4647-b5ai-081234512716″ TYPE=»ext4″ PARTUUID=»e3cbfe8b-02″ /dev/sda1: UUID=»ab34fc7c-0f1c-1234-5678-9f9f7065e672″ TYPE=»ext4″ PARTUUID=»6b905dde-01″ /dev/mmcblk0: PTUUID=»e3fdfe4b» PTTYPE=»dos» /dev/sda1 UUID=»ab34fc7c-0f1c-1234-5678-9f9f7065e672″ add /etc/fstab UUID=ab34fc7c-0f1c-1234-5678-9f9f7065e672 /mnt ext4 defaults,noatime,auto 0 0 También ls -l /dev/disk/by-uuid/ Da los UIDs

pyload raspberry

Installing pyLoad on a Raspberry Pi with Raspbian Jessie All credits for this guide go to eNBeWe. Thanks, mate! In the following I assume that you are running a Raspberry Pi with a recent version of Raspbian. At the point of writing this means you are running some version of Debian Jessie. First we are… Leer más »

Connecting to Raspberry Pi via SSH: Connection Timeout

When trying to connect to my new Raspberry Pi via SSH, this only worked when done locally. It turned out to be caused by the /ect/hosts file. I had set the hostname using the raspi-config tool, which linked it with the loopback address instead of the real one (192.168.x.x). Changing it to the proper address… Leer más »

raspberry USB to serial cable it the PL-2303 workaround

workaround However. There is a strange work around. I did: # sudo modprobe -r pl2303 # sudo modprobe pl2303 cambiar el usuario al grupo para utilizar el serial usermod -g dialout usuario   #chmod a+rwx /dev/ttyUSB0   UDEV With current, udev-based, kernels its necessary to reset the permissions of /dev/ttyS[0-9] each time the device is… Leer más »