fpd
Group: Members
Posts: 9
Joined: July 2005 |
|
Posted: July 20 2005,15:22 |
|
I'm sure you like that link above, and all the reading...
The short of it... To partition a hard drive from DSL Desktop, click on the Terminal icon. At the prompt enter sudo fdisk
A few of the important commands you will use: m - help screen n - make a new partition a - make partition active t - type of file system d - delete a partition w - write partition table to disk
Try this: sudo fdisk p (If you see any partition, then stuff is on the HDD)
(assuming no data on HDD...) n (asks you e or p) p (primary) (asks you partition number) 1 (first) (asks you start cylinder, or <CR> for default) <CR> (asks you stop cylinder or size, or <CR> for default) +500M (for example, 500MB for swap) t (asks you hex code - type L to see the list) 82 (linux swap)
... now, do the root partition (p,2,???,t,83)
If you don't like what you see, "d" to delete the partitions. When you are ready to make your choices final, use the 'w' command to write the table to HDD.
Or, read all the information in the link from the previous post.
(yes I am registered!!!)
|