# One off - from the shell:
# Formatting
# ----------
# DANAGER!!!! this will erase everything and anything on the requested partition.
# DO NOT run this unless you are sure you have identified the correct block
# device file
# mkfs.ext3 /dev/sda2
# Mounting
# This assumes you want to add the new storage space under the directory
# /my/new/storage/space
# mkdir -p /my/new/storage/space
# mount -t ext3 /dev/sda2 /my/new/storage
# To make sure the new space is automatically mounted in the next boot as well
# edit the file /etc/fstab and add this line:
/my/new/storage ext3 defaults 0 1
|