GNU/Linux >> Linux Esercitazione >  >> Linux

Come montare un'unità flash USB in Linux

Per montare un'unità flash USB su qualsiasi sistema Linux dovrai prima conoscere il nome della partizione del disco per l'unità USB. Trovare il nome della partizione è un compito facile. Segui i passaggi seguenti per trovare il nome della partizione e montarlo su una directory a tua scelta.

1. Controllare il file /var/log/messages per i messaggi relativi all'unità flash USB. Non appena colleghi un'unità flash, vedresti messaggi a riguardo.

Oct  6 19:03:32 localhost kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Oct  6 19:03:32 localhost kernel: usb 1-1: New USB device found, idVendor=1058, idProduct=1023
Oct  6 19:03:32 localhost kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Oct  6 19:03:32 localhost kernel: usb 1-1: Product: Elements 1023
Oct  6 19:03:32 localhost kernel: usb 1-1: Manufacturer: Western Digital
Oct  6 19:03:32 localhost kernel: usb 1-1: SerialNumber: 57584A314135315034373736
Oct  6 19:03:32 localhost mtp-probe: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:11.0/0000:02:02.0/usb1/1-1"
Oct  6 19:03:32 localhost mtp-probe: bus: 1, device: 2 was not an MTP device
Oct  6 19:03:32 localhost kernel: usb-storage 1-1:1.0: USB Mass Storage device detected
Oct  6 19:03:32 localhost kernel: scsi host3: usb-storage 1-1:1.0
Oct  6 19:03:32 localhost kernel: usbcore: registered new interface driver usb-storage
Oct  6 19:03:32 localhost kernel: usbcore: registered new interface driver uas
Oct  6 19:03:33 localhost kernel: scsi 3:0:0:0: Direct-Access     WD       Elements 1023    2005 PQ: 0 ANSI: 4
Oct  6 19:03:33 localhost kernel: sd 3:0:0:0: Attached scsi generic sg4 type 0
Oct  6 19:03:33 localhost kernel: sd 3:0:0:0: [sdd] 976769024 512-byte logical blocks: (500 GB/465 GiB)
Oct  6 19:03:33 localhost kernel: sd 3:0:0:0: [sdd] Test WP failed, assume Write Enabled
Oct  6 19:03:33 localhost kernel: sd 3:0:0:0: [sdd] Asking for cache data failed
Oct  6 19:03:33 localhost kernel: sd 3:0:0:0: [sdd] Assuming drive cache: write through
Oct  6 19:03:33 localhost kernel: sdd: sdd1 sdd2
Oct  6 19:03:33 localhost kernel: sd 3:0:0:0: [sdd] Attached SCSI disk

Invece di questo puoi anche scorrere l'output del comando "fdisk -l" per scoprire l'unità flash USB appena collegata. Ad esempio :

# fdisk -l
...
Disk /dev/sdd: 500.1 GB, 500105740288 bytes, 976769024 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 label type: gpt


#         Start          End    Size  Type            Name
 1           40       409639    200M  EFI System      EFI System Partition
 2       411648    976766975  465.6G  Microsoft basic WD

2. Come mostrato dall'output sopra, dispositivo USB denominato sdd viene rilevato dal sistema. Possiamo usare questo dispositivo per montarlo su una directory.

3. Crea una directory in cui montare l'unità flash USB.

# mkdir /mnt/usb

4. Ora monta la partizione appropriata nella directory per accedere ai dati sull'unità flash USB.

# fdisk -l /dev/sdd
WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion.

Disk /dev/sdd: 500.1 GB, 500105740288 bytes, 976769024 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 label type: gpt


#         Start          End    Size  Type            Name
 1           40       409639    200M  EFI System      EFI System Partition
 2       411648    976766975  465.6G  Microsoft basic WD

Come si vede dall'output sopra, la seconda partizione contiene dati. Useremo /dev/sdd2 per montare.

# mount /dev/sdd2 /mnt/usb


Linux
  1. Come eseguire l'avvio da un'unità USB in VirtualBox su Linux

  2. Come montare un'unità disco USB in UNIX o Linux

  3. Come posso impostare automaticamente i permessi di scrittura sul montaggio di un'unità USB in Linux?

  4. Come creare un Memtest86+ avviabile su un'unità flash USB?

  5. Come posso montare un'unità di rete WD MyBook World in Linux?

Come montare Google Drive in locale utilizzando Rclone in Linux

Come creare una ISO da un'unità USB avviabile in Linux

Come avviare dall'unità USB in Virtualbox in Linux

Come montare un'unità su Linux

Come creare un'unità flash USB avviabile da Linux [Tutorial]

Come montare e utilizzare un'unità exFAT su un sistema Linux