All of this as root user!
First, type mount
Press enter
Second, look in output of 'mount' for anything related to /dev/hdd
IF you see something related to /dev/hdd (example: /dev/hdd1) THEN:
ELSE, type fdisk /dev/hdd
Press enter
Type p and press enter
Look at output and see if any partitions exist, if so they will be listed as /dev/hdd1 /dev/hdd2 /dev/hdd3 etc... If none exist then you need to create one or more. Otherwise just type q and press enter.
OK, back at command line...
Type mke2fs /dev/hdd1
or for ext3 (journaled) filesystem...
Code:
mke2fs -j /dev/hdd1
NOTE: Pick ONE of those above...
Press enter
Filesystem will be created.
Now to mount the new filesystem...
Code:
mkdir /mnt/my_drive
press enter
Code:
mount /dev/hdd1 /mnt/my_drive
press enter
Done. Research fstab for automounting this partition and what-not
press enter