Mounting Trinket M0 to Raspberry Pi CLI

Adafruit's tiny microcontroller platform. Please tell us which board you are using.
For CircuitPython issues, ask in the Adafruit CircuitPython forum.

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
User avatar
bdebevc
 
Posts: 4
Joined: Mon Oct 09, 2017 10:45 pm

Mounting Trinket M0 to Raspberry Pi CLI

Post by bdebevc »

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.

User avatar
mikeysklar
 
Posts: 13824
Joined: Mon Aug 01, 2016 8:10 pm

Re: Mounting Trinket M0 to Raspberry Pi CLI

Post by mikeysklar »

Pi OS Lite does not automount USB devices. I've always used usbmount.

Code: Select all

sudo apt install 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

Code: Select all

lsblk -fp

Code: Select all

sudo blkid

Code: Select all

fdisk -l
; mount

Code: Select all

sudo mkdir /media/trinket
sudo mount /dev/sda /media/trinket 

User avatar
mikeysklar
 
Posts: 13824
Joined: Mon Aug 01, 2016 8:10 pm

Re: Mounting Trinket M0 to Raspberry Pi CLI

Post by mikeysklar »

same answer as above. Install an automounter.

Code: Select all

sudo apt install usbmount
The desktop already includes a equivalent.

Locked
Please be positive and constructive with your questions and comments.

Return to “Trinket ATTiny, Trinket M0”