-

CommentStreams:5c9fc498e4efa6c8690fa71d1525c3e4

From Geekworm Wiki
Jump to navigation Jump to search

I'm trying to mount the external drive (an SSD), I get an error saying /dev/sda1 doesn't exist:

pi@PI_NAME:~ $ sudo blkid /dev/mmcblk0p1: LABEL_FATBOOT="boot" LABEL="boot" UUID="7616-4FD8" TYPE="vfat" PARTUUID="d128f496-01" /dev/mmcblk0p2: LABEL="rootfs" UUID="87b585d1-84c3-486a-8f3d-77cf16f84f30" TYPE="ext4" PARTUUID="d128f496-02" /dev/mmcblk0: PTUUID="d128f496" PTTYPE="dos"

pi@PI_NAME:~ $ sudo mount -o uid=pi,gid=pi /dev/sda1 /mnt/usbstorage mount: /mnt/usbstorage: special device /dev/sda1 does not exist.

pi@PI_NAME:~ $ sudo mount -t uid=pi,gid=pi /dev/sda1 /mnt/usbstorage mount: /mnt/usbstorage: unknown filesystem type.

Any ideas?