A caneta USB (Kingston 16GB) não está detectando / montada no sistema (Ubuntu 12.10 ou Windows)

0

Minha caneta USB (Kingston 16GB) não está detectando no sistema (Ubuntu 12.10 ou Windows). Eu tentei seguidores, mas não tive sorte. Alguém poderia dar uma ideia para tentar ... Eu quero com / sem dados atuais sobre ele.

Ele está sendo exibido para o lsusb

namal@namal:~$ lsusb 
Bus 002 Device 017: ID 0951:1642 Kingston Technology DT101 G2

Ele diz que "Disco / dev / sdc não contém uma tabela de partição válida" para fdisk -l

namal@namal:~$ sudo fdisk -l
Disk /dev/sdc: 15.5 GB, 15479597056 bytes
64 heads, 32 sectors/track, 14762 cylinders, total 30233588 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: 0x2abd9350

Disk /dev/sdc doesn't contain a valid partition table

Então eu tentei criar algumas partições da seguinte maneira. Mas falhou com Erro ao fechar o arquivo ao gravar a partição.

namal@namal:~$ sudo fdisk /dev/sdc
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel with disk identifier 0x1683c1c4.
Changes will remain in memory only, until you decide to write them.
After that, of course, the previous content won't be recoverable.

Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)

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): 
Using default value 1
First sector (2048-30233587, default 2048): 
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-30233587, default 30233587): 
Using default value 30233587

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

Calling ioctl() to re-read partition table.

Error closing file

Eu tentei escrever alguns zeros até lá e ele foi bem sucedido.

namal@namal:~$ sudo dd if=/dev/zero of=/dev/sdc bs=512 count=1
1+0 records in
1+0 records out
512 bytes (512 B) copied, 39.2583 s, 0.0 kB/s

Tentei alguns comandos fsck também.

namal@namal:~$ sudo  fsck /dev/sdc
fsck from util-linux 2.20.1
e2fsck 1.42.5 (29-Jul-2012)
ext2fs_open2: Bad magic number in super-block
fsck.ext2: Superblock invalid, trying backup blocks...
fsck.ext2: Bad magic number in super-block while trying to open /dev/sdc

The superblock could not be read or does not describe a correct ext2
filesystem.  If the device is valid and it really contains an ext2
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device&gt;

namal@namal:~$ sudo e2fsck -b 8193 /dev/sdc
e2fsck 1.42.5 (29-Jul-2012)
e2fsck: Attempt to read block from filesystem resulted in short read while trying to open /dev/sdc
Could this be a zero-length partition?

Eu tentei formatá-lo usando o FAT32. Ele fica pendurado por tanto tempo, mas sem resultados. NTFS pedindo partições.

sudo mkfs.vfat -n 'Asiri' -I /dev/sdc

É assim que parece no GParted. Agora estou tentando dispositivos > Crie uma nova tabela de partições. Ele lança erro IO ...

Resultado:umerroIO..

    
por namalfernandolk 07.09.2014 / 23:41

1 resposta

1

Você não pode fsck algo que não tenha um sistema de arquivos ou mesmo uma partição, a formatação também não funcionará.

Você diz que não é reconhecido no Windows, provavelmente uma falha de hardware.

    
por Jan 07.09.2014 / 23:47