Install Raspbian packages directly from Ubuntu with chroot to Raspbian file system (on SD card)

Saturday, March 12, 2016 7:57 PM 0 Comments

update or install package directly from ubuntu on raspbian sd card

sudo apt-get install qemu proot
sudo proot -q qemu-arm -B -r /mnt/path/to/raspbian/

source : http://raspberrypi.stackexchange.com/questions/23675/install-raspbian-packages-directly-from-ubuntu-with-chroot-to-raspbian-file-syst

0 comments:

[GIT] Specify git author and email

Sunday, March 6, 2016 6:36 PM 0 Comments

go to your project path

git config user.name "YOUR_NAME_ON_PROJECT"
git config user.email "YOUR_EMAIL_ON_PROJECT"

Done.

0 comments: