Cheap eBay HDMI to USB 3.0(?) Video Capture Adapter First Look

HDMI to USB Video Capture Card 1080P: http://ebay.us/Mv0snK (eBay Affiliate)

HDMI to USB Video Capture Card 1080P (Amazon Affiliate)
US: https://amzn.to/3cwUqjv
UK: https://amzn.to/2DD2QZh
CA: https://amzn.to/2PwBNS0
ES: https://amzn.to/30w07tM
FR: https://amzn.to/31sG92a
IT: https://amzn.to/30yMOsz
DE: https://amzn.to/2XD83aO
AU: https://amzn.to/3a3ItQZ

Copy Files from Ubuntu to a Raspberry Pi using scp

In this video I go over the process of transferring files from Ubuntu to a Raspberry Pi using scp on the command line.

4 Ways to Enable an SSH Server on a Raspberry Pi: https://youtu.be/HU6Wk0hkpVQ

Log into Remote Raspberry Pi
ssh pi@raspberrypi.local
List Files in Directory
ls
Print Working (i.e. current) Directory
pwd
Change Current Directory to Desktop
cd Desktop
Move to the Parent Directory of the Current Directory
cd ../
Move to the Home Directory
cd
List Files in Directory in List Format
ls -l
List Files in Directory in List Format with Sizes in Human Readable Format
ls -lh
List Files Recursively
ls -lRh
Copy File index.htm to Raspberry Pi Home Directory
scp index.htm pi@raspberrypi.local:~/
Copy All htm Files in the Current Directory
scp *.htm pi@raspberrypi.local:~/
Copy All Files in the Current Directory Recursively
scp -r * pi@raspberrypi.local:~/
Make Directory in Current Directory (on Raspberry Pi)
mkdir bookcopy
Copy All Files in the Local Directory to the “bookcopy” Directory on the Raspberry Pi
scp -r * pi@raspberrypi.local:~/bookcopy/

Copy Files from Windows 10 to a Raspberry Pi using scp

In this video I go over the process of transferring files from Windows 10 to a Raspberry Pi using scp on the command line.

4 Ways to Enable an SSH Server on a Raspberry Pi: https://youtu.be/HU6Wk0hkpVQ

Log into Remote Raspberry Pi
ssh pi@raspberrypi.local
Move to Home Directory
cd ~
List Files in Directory
ls
Print Working (i.e. current) Directory
pwd
Change Current Directory to Desktop
cd Desktop
Move to the Parent Directory of the Current Directory
cd ../
Move to the Home Directory
cd
Copy File index.htm to Raspberry Pi Home Directory
scp index.htm pi@raspberrypi.local:~/
Copy All htm Files in the Current Directory
scp *.htm pi@raspberrypi.local:~/
Copy All Files in the Current Directory Recursively
scp -r * pi@raspberrypi.local:~/
Make Directory in Current Directory (on Raspberry Pi)
mkdir bookcopy
Copy All Files in the Local Directory to the “bookcopy” Directory on the Raspberry Pi
scp -r * pi@raspberrypi.local:~/bookcopy/