USB doesn't mount

I have в problem. I have had Ubuntu 12.04 on my laptop for 2 years and up until now не problems with the USB. But since this evening the персональный компьютер doesn't mount the USB. I read some discussions but the problem persists. with

sudo fdisk -l

шоу

    Disk /dev/sdb: 2003 MB, 2003828736 bytes
43 heads, 42 sectors/track, 2167 cylinders, total 3913728 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00095b2e

My USB ты существуешь got fat32 filesystem:

enter image description here

And with в USB with ext4 filesystem, шоу:

    Disk /dev/sdb: 31.5 GB, 31457280000 bytes
255 heads, 63 sectors/track, 3824 cylinders, total 61440000 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000eecfd

enter image description here So the Персональный компьютер sees that the USB is connected but I don't see it in file directory. enter image description here

Where датирует is в partition of my SSD. whitsudo lsusb command:

Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 8644:8003  

Where the last line is the 2GB USB I have Arduino and it works without problems. with the other персональный компьютер in my house, with ubuntu too the USB пахал read perfectly. How хан I solve my problem?

1
задан 9 January 2016 в 11:14

2 ответа

Помощник Монтирования был , отключил (я не знаю, почему) enter image description here

Однажды abilitated, все хорошо работает.

0
ответ дан 29 September 2019 в 16:48

Смонтируйте устройство/раздел вручную.

  1. Попытка:

    # mount -t ntfs /dev/sdb1
    
  2. Если проблема сохраняется:

    # mkdir /media/$USER/USB1
    # mount -t ntfs /dev/sdb1 /media/$USER/USB1
    
  3. Можно попытаться смонтировать устройство/раздел с помощью UUID/маркировки устройства/раздела. Дважды щелкните по данному устройству/разделу в GParted для получения <uuid>. Затем:

    # mount -t ntfs UUID=<uuid>
    

    или

    # mount -t ntfs /dev/disk/by-uuid/<uuid>
    

    или

    # mount -t ntfs LABEL=<label>
    

    или

    # mount -t ntfs /dev/disk/by-label/<label>
    

    3a. Можно определить точку монтирования:

    # mount -t ntfs /dev/disk/by-uuid/<uuid> <mountpoint>
    
  4. Если ни один не приводит к воображаемому результату, используйте амперметр usb, чтобы проверить, приводится ли USB-порт в действие правильно.

Дальнейшее чтение:

A. $ man mount

B. смонтируйтесь на ArchWiki.

C. смонтируйтесь (8) на die.net.

0
ответ дан 29 September 2019 в 16:48

Другие вопросы по тегам:

Похожие вопросы: