fdisk -lCommand to see the list of attached disks & partitions.
fdisk /dev/sdcTo create or modify partition table for /dev/sdc
umount /dev/sdc1Need to unmount the /dev/sdc1 partition, if any, otherwise we may not able to create and format a new partition onto device /dev/sdc
mkfs -v -t ext3 /dev/sdcTo format and create an Ext3 filesystem for /dev/sdc
mkdir /media/mynewdiskOnce it is done, we need to create a mount point (with any name) for this new drive.
mount /dev/sdc1 /media/mynewdiskTo manually mount it.
No comments:
Post a Comment