sfdisk falha ao gravar a partição no disco [closed]

2

Estou tentando fazer o meu cartão microSD inicializar no Ubuntu. Eu estou tentando usar sfdisk para criar as partições. Quando faço isso, este é o erro que estou recebendo:

Using sfdisk to create partition layout
-----------------------------
Checking that no-one is using this disk right now ...
OK

Disk /dev/sdb: 30436 cylinders, 64 heads, 32 sectors/track
Old situation:
Warning: The partition table looks like it was made
  for C/H/S=*/255/63 (instead of 30436/64/32).
For this listing I'll assume that geometry.
Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from 0

   Device Boot Start   End    MiB    #blocks   Id  System
/dev/sdb1         4  30436- 30433-  31162880    c  W95 FAT32 (LBA)
/dev/sdb2         0      -      0          0    0  Empty
/dev/sdb3         0      -      0          0    0  Empty
/dev/sdb4         0      -      0          0    0  Empty
New situation:
Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from 0

   Device Boot Start   End    MiB    #blocks   Id  System
/dev/sdb1   *     1     96     96      98304    e  W95 FAT16 (LBA)
/dev/sdb2         0      -      0          0    0  Empty
/dev/sdb3         0      -      0          0    0  Empty
/dev/sdb4         0      -      0          0    0  Empty
/dev/sdb: Input/output error

sfdisk: Failed writing the partition on /dev/sdb
Re-reading the partition table ...
/dev/sdb: Input/output error
Error closing /dev/sdb
If you created or changed a DOS partition, /dev/foo7, say, then use dd(1)
to zero the first 512 bytes:  dd if=/dev/zero of=/dev/foo7 bs=512 count=1
(See fdisk(8).)

Alguma idéia de qual seria o problema? O disco é gravável.

    
por chromedude 23.11.2013 / 21:32

1 resposta

0

Você está root ao executar este comando? Ao executar esses tipos de comandos, certifique-se de elevar suas permissões usando sudo , o que normalmente é necessário para executar esses tipos de tarefas.

Exemplo

$ sudo sfdisk
    
por 23.11.2013 / 22:52