- Related tutorial: http://raspberrypiguide.de/
- Command Line Cheatsheet: https://gist.github.com/hofmannsven/8392477
Find all available devices arp -a
Locate Raspberry (b8:27:eb) in Network: Pi Finder
# insert SD and find out where it is mounted | |
diskutil list | |
# /dev/disk0 | |
# #: TYPE NAME SIZE IDENTIFIER | |
# 0: GUID_partition_scheme *250.1 GB disk0 | |
# ... | |
# /dev/disk1 | |
# #: TYPE NAME SIZE IDENTIFIER | |
# 0: FDisk_partition_scheme *15.7 GB disk1 | |
# ... |
Find all available devices arp -a
Locate Raspberry (b8:27:eb) in Network: Pi Finder
import os, glob, shutil, sys | |
path = os.environ['LOCALAPPDATA'] + "/Google/Chrome/User Data/Default/Cache/" | |
listing = os.listdir(path) | |
for infile in listing: | |
if "f_" in infile: | |
abs_path = path + infile | |
statinfo = os.stat(abs_path) | |
if statinfo.st_size > 1000000: #checking to see if the file > 1MB |