2

I used hardinfo to see if my mini SD card was working, as shown in the image.

enter image description here

I have tried this response and this.

But I can't mount it.

I try:

~$ sudo mount -t vfat /dev/sde /mnt

and:

~$ sudo mount -t ntfs /dev/sde /mnt

And this error appear:

mount: no medium found on /dev/sde

My syslog when I insert my SD:

enter image description here

Do You know how can I mount it?

Ubuntu 14.04.2 LTS

Jorge B.
  • 483

1 Answers1

2
  1. Looking at your syslog screenshot, there are physical errors while mounting. Is this card working in any other devices?

  2. You probably want to mount partition (/dev/sde1), not device (/dev/sde) with sudo mount... command.

You can try to list partitions with sudo fdisk /dev/sde -l, but considering the above error of read sector 0, there might be a problem, as partition table is held on sector 0.

madneon
  • 2,063
  • 1
  • 14
  • 20