Skip to main content

Posts

Showing posts with the label installation

Installing Raspberry Pi image to an SD Card

Here is a simple set of instructions to set up the SD card for your Raspberry Pi in Linux. Download desired OS image. ( https://www.raspberrypi.org/downloads/ ) Set your SD Card for image flashing: Unmount the sdcard. This should give full access to gparted. Open GParted Software. I you don't have GParted, you can install it through the Following instruction: $ sudo apt-get install gparted Delete All existing partitions in the SD card . Reformat all into fat32. Flash image to sd card through dd command: $ sudo dd bs=1M if=/home/enzero/Projects/2017-01-11-raspbian-jessie-lite.img of=/dev/mmcblk0 status=progress /dev/mmcblk0 - The SD card directory. In my case, I was using the card reader port so it is mmcblk0 /home/<DOWNLOAD_PATH>/2017-01-11-raspbian-jessie-lite.img - OS image location

Installing Qt Cross Compilation Toolchain for Beaglebone Black

This is the guide that I went through to successfully set the environment. If you get stuck on something, feel free to have a look at the references in the bottom most. These are the steps that worked for me so I hope it helps. Just making sure of the dependencies sudo apt-get update sudo apt-get upgrade sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 libstdc++6:i386 ia32-libs Assuming that you can get access to the root Set up Cross compiler Download and install wget -c https://releases.linaro.org/components/toolchain/binaries/6.4-2018.05/arm-linux-gnueabihf/gcc-linaro-6.4.1-2018.05-x86_64_arm-linux-gnueabihf.tar.xz tar xf gcc-linaro-6.4.1-2018.05-x86_64_arm-linux-gnueabihf.tar.xz export CC=`pwd`/gcc-linaro-6.4.1-2018.05-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf- Test installation ${CC}gcc --version Download qt source #do this in a directory that is not in your root filesystem, i.e. ~ git clone git://code.qt.io...