• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

What partition utility does the debian setup use?

IIRC, fdisk isnt even interactive, you just use arguments to tell it how to partition. debian install uses cfdisk. (or at least its a cfdisk clone)
 
fdisk is interactive, it's command driven.

$ /sbin/fdisk /dev/hda

Command (m for help): p

Disk /dev/hda: 240 heads, 63 sectors, 833 cylinders
Units = cylinders of 15120 * 512 bytes

Device Boot Start End Blocks Id System
/dev/hda1 1 2 15088+ 83 Linux
/dev/hda2 * 3 409 3076920 7 HPFS/NTFS
/dev/hda3 410 833 3205440 5 Extended
/dev/hda5 410 444 264568+ 82 Linux swap
/dev/hda6 445 833 2940808+ 83 Linux

Command (m for help): q
 
Back
Top