fdisk no se completa y se bloquea en una unidad USB

fdisk no se completa y se bloquea en una unidad USB

problema de disco duro.

SO: linux centos 7

Usé fdisk en una unidad USB. Se ha colgado y no he podido matarlo ni salir de él.

Como problema adicional, desde entonces, al intentar solucionar este problema, eliminé físicamente otras unidades USB que aparecían en /dev/. Sin embargo, estos todavía se muestran en /dev/ aunque ya no estén conectados físicamente.

Aquí está lsblk (eliminé de esta lista otros dispositivos que aparecen en la lista) lsblk

NAME                    MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sdf                       8:80   0   1.8T  0 disk 
└─sdf1                    8:81   0   1.8T  0 part 
sr0                      11:0    1  1024M  0 rom  

Tomé las siguientes decisiones siguiendo las notas que tomé cuando un amigo formateó otra unidad USB por mí (exactamente el mismo tipo de unidad USB). La intención es formatearlo como ext4.

A continuación se muestra el conjunto de opciones (en negrita):

[root@linux18 ~]# fdisk /dev/sdf
Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): **m**
Command action
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the dos compatibility flag
   d   delete a partition
   g   create a new empty GPT partition table
   G   create an IRIX (SGI) partition table
   l   list known partition types
   m   print this menu
   n   add a new partition
   o   create a new empty DOS partition table
   p   print the partition table
   q   quit without saving changes
   s   create a new empty Sun disklabel
   t   change a partition's system id
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit
   x   extra functionality (experts only)

Command (m for help): **d**
Selected partition 1
Partition 1 is deleted

Command (m for help): **n**
Partition type:
   p   primary (0 primary, 0 extended, 4 free)
   e   extended
Select (default p): p
Partition number (1-4, default 1): 
First sector (2048-3906963455, default 2048): 
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-3906963455, default 3906963455): 
Using default value 3906963455
Partition 1 of type Linux and of size 1.8 TiB is set

Command (m for help): **t**
Selected partition 1
Hex code (type L to list all codes): 83
Changed type of partition 'Linux' to 'Linux'

Command (m for help): **w**
The partition table has been altered!

Aquí probé tanto Control C como Control Z:

^[[B^[[B^[[B

^[[6~

^C^[[5~

Respuesta1

Esto parece ser análogo al problema al que se enfrentaba:https://access.redhat.com/solutions/369623

Tal vez intente # dmsetup removecon algunas de las banderas en la página de manual ( --force --deferred --retry)

Respuesta2

En mi caso, necesitaba forzar una nueva exploración de los discos conectados al sistema como se explicaaquí, p.ej:

echo "- - -" >> /sys/class/scsi_host/host_0/scan

información relacionada