Unpartition Disco Rígido Debian [fechado]

1

estou apenas imaginando como posso desarticular um disco rígido no debian.

recentemente particionei-o usando

cfdisk /dev/sdb

e gostaria de reverter o que fiz.

Obrigado

    
por Belgin Fish 18.07.2011 / 05:26

2 respostas

3

Executar

cfdisk /dev/sdb

use o comando "d" para cada partição.

    man cfdisk
    COMMANDS
    d      Delete the current partition.  This will convert the current partition into    free space and merge it with any free space immediately surrounding the current partition. A     partition already marked as free space or marked as unusable cannot be deleted.
    
por 18.07.2011 / 05:43
3
dd if=/dev/zero of=/dev/sdb bs=512 count=1
    
por 18.07.2011 / 06:05