Hello, it's me again trying to get my rover working.
I have a Trinket M0 connected to a Raspberry Pi Zero W. I am running Raspberry Pi OS Lite, the command line version. The issue I am having is I don't see the M0 as a mount point. It will mount on my Mac or Windows PC, not the PI.
Should this just work, and I have screwed something up, or am I missing something?
Thanks
Bill
Visit https://TheGreatMojaveRover.com for more information.
Mounting Trinket M0 to Raspberry Pi CLI
Moderators: adafruit_support_bill, adafruit
Please be positive and constructive with your questions and comments.
- mikeysklar
- Posts: 17153
- Joined: Mon Aug 01, 2016 8:10 pm
Re: Mounting Trinket M0 to Raspberry Pi CLI
Pi OS Lite does not automount USB devices. I've always used usbmount.
There are various ways to manually scan and mount, but the above is probably easier.
; scan any of these work to find the unmounted trinket device name
; mount
Code: Select all
sudo apt install usbmount
; scan any of these work to find the unmounted trinket device name
Code: Select all
lsblk -fp
Code: Select all
sudo blkid
Code: Select all
fdisk -l
Code: Select all
sudo mkdir /media/trinket
sudo mount /dev/sda /media/trinket
- mikeysklar
- Posts: 17153
- Joined: Mon Aug 01, 2016 8:10 pm
Re: Mounting Trinket M0 to Raspberry Pi CLI
same answer as above. Install an automounter.
The desktop already includes a equivalent.
Code: Select all
sudo apt install usbmount
Please be positive and constructive with your questions and comments.