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/sdcardMount
sudo mount /dev/sdd2 /mnt/sdcardafter mounting, reload the disk with the following command
systemctl daemon-reloadUnmount
sudo umount /mnt/sdcardLast updated
Was this helpful?