Linux Mounting SD Card

List all the cards by using command. You might want to use sudo priviledge.

fdisk -l

Create mounting directory by

mkdir /mnt/sdcard

Mount

sudo mount /dev/sdd2 /mnt/sdcard

after mounting, reload the disk with the following command

systemctl daemon-reload

Unmount

sudo umount /mnt/sdcard

Last updated

Was this helpful?