https://mediaexperience.com/raspberry-pi-xbmc-with-raspbmc/
https://www.ubuntupit.com/useful-raspberry-pi-commands/
HOW TO AUTOSTART A GUI APPLICATIONS (all other suggestions failed)
https://www.instructables.com/id/Autostart-a-Program-When-Raspberry-Pi-Boots-Newbie/
https://lifehacker.com/how-to-clone-your-raspberry-pi-sd-card-for-super-easy-r-1261113524
Image How To…
So which one should I choose to clone? The boot partition or the other partition?
Select the Boot one and Win32DiskImager will copy the whole card (I think it just needs the logical drive letter to find out where the physical drive/card really is).
https://www.raspberrypi.org/forums/viewtopic.php?f=38&t=155835&p=1017572
https://www.hifiberry.com/blog/small-is-beautiful/
https://www.hifiberry.com/build/documentation/setting-up-volumio-to-get-great-audio/
http://www.instructables.com/id/Raspberry-Pi-Multi-Room-Music-Player/
http://blog.davidsingleton.org/raspberry-pi-timelapse-controller/
https://www.raspberrypi.org/forums/viewtopic.php?t=176797&p=1127970
https://medium.com/@cgulabrani/controlling-your-dslr-through-raspberry-pi-ad4896f5e225
https://github.com/gonzalo/gphoto2-updater/
http://theta360.guide/blog/api/2016/09/14/ricoh-theta-usb-api-raspberry-pi.html
https://www.youtube.com/channel/UCEXoiRx_rwsMfcD0KjfiMHA
https://www.youtube.com/watch?v=V-794Ug4sNM
https://www.youtube.com/watch?v=V-794Ug4sNM
Kaffine - PVR
Cheap close up lens trick http://raspi.tv/2013/adapt-your-raspberry-pi-camera-for-close-up-use
Just did it
How to make an image of SD card
http://lifehacker.com/how-to-clone-your-raspberry-pi-sd-card-for-super-easy-r-1261113524
http://elinux.org/RPi_raspi-config
https://coderwall.com/p/mhj8jw/raspbian-how-to-resize-the-root-partition-to-fill-sd-card
Apparent a Noobs install is an issue. Maybe this
https://www.raspberrypi.org/forums/viewtopic.php?t=156004&p=1018531
or maybe us gparted?
http://raspberrypi.stackexchange.com/questions/499/how-can-i-resize-my-root-partition
Or move folders to extra space and remount?
https://unix.stackexchange.com/questions/131311/moving-var-home-to-separate-partition
Well I tried moving var folder to new partition and edited fstab to say this
/dev/sda3 /usr ext4 defaults 0 0
But but I couldn't boot and ended up just starting from scratch and installed the non NOOBS version.
BUT, while getting out of the shower this morning I remembered that I forgot to make an empty new VAR folder for the new partition to be mounted into…Dang if it actually worked! it took a few reboots for the OS to adjust the file structure but on the third boot it all worked.
Still I went back to my new install, but it is good to know it works
https://www.raspberrypi.org/forums/viewtopic.php?t=219739
https://makezine.com/projects/raspberry-pi-plex-server/
https://www.raspberrypi.org/forums/viewtopic.php?t=214655
https://www.howtogeek.com/400958/how-to-turn-a-raspbery-pi-into-a-plex-server/
https://forums.plex.tv/t/how-not-to-transcode/296110
https://geextor.com/2018/04/03/raspberry-pi-media-server-using-plex/
This is what I used to mount the USB stick on the Raspberry Pi
Use this to figure out the UUID of the usb stick
sudo blkid
then edit the fstab to mount it
sudo nano /etc/fstab
proc /proc proc defaults 0 0 /dev/mmcblk0p6 /boot vfat defaults 0 2 /dev/mmcblk0p7 / ext4 defaults,noatime 0 1 # UUID=42981DB8981DAC03 /mnt/plexlib ntfs defaults 0 0 # The above stopped working, osm sort for file check problem caused it to stop booting # so I changed to this and the problem stopped /dev/sda1 /mnt/plexlib ntfs defaults 0 0