Version 8 (modified by emca, 13 years ago) (diff)

--

Preparing hard disks for delivery

First steps

Plug in the external hard drive.

You will need to have root permissions before you start ('sudo su' and then type in your password).

Run dmesg to find device name. Listed at the bottom if just plugged in.

e.g

SSELinux: initialized (dev sdb, type fuseblk), uses genfs_contexts

or

sd 7:0:0:0: [sdb] 488397168 512-byte hardware sectors (250059 MB)

Device path is then /dev/sdb (not sdb1 etc, this indicates a partition on sdb)

Run mount to find the name of the partition you need to unmount e.g /dev/sdb1

Unmount the partition with umount /dev/partition, e.g. umount /dev/sdb1 (if not already unmounted)

At this point you will need to make a Windows format disk (NTFS, not FAT32) for all data types.

note: for hyperspectral data prior to 2011, make a Linux format disk (ext3)


Formatting and partitioning

Windows format (NTFS, not FAT32) disks [everything except hyperspectral data before 2011]

Partition and format the disk (GUI)

  1. run gparted (needs sudo)
  2. select the correct disk partition (pulldown at top right)
  3. right click on existing partitions and delete them
  4. when there is only unallocated space left, right click on it and select new
    1. change file system to ntfs
    2. change label to ARSFDAN
  5. if everything looks ok in the list at the bottom, apply all operations (click big green tick)

This should repartition and quick format the disk.

Partition and format the disk (command line)

  1. Run fdisk /dev/DEVICE_NAME (not partition)
  2. enter 'p' to print partition table and check you have selected the correct disk
  3. enter 'd' to delete the current partition (delete them all)
  4. enter 'n' to create a new partition
  5. enter 'p' to make new partition the primary partition. If it asks you to give a partition number press 1 and enter. Then press enter twice to fill the whole disk.
  6. press 't' to set the partition type, select the partition you just made (1)
  7. set it to type 7 (HPFS / NTFS)
  8. enter 'p' to print new partition table – if all seems fine enter 'w' to write
  9. To be on the safe side, run dmesg again to make sure device name hasn't changed. You should now see the partition listed as device_name1, e.g. sdb1
  10. Unmount the partition if it remounted.
  11. Run mkntfs --label ARSFDAN --quick /dev/PARTITION
  12. Unplug the disk and plug back in. The disk space should be located under /media/ARSFDAN.
  13. It is wise to check that this destination is correct: 'df /media/ARSFDAN' to check that this is where the device is mounted.
  14. Permissions fixes aren't needed for NTFS (I think).

Copy over your data onto the disk

Copy the delivery folder to /media/ARSFDAN.

NOTE: Be sure to record the number of the hard disk (or giving it one if it does not yet have one) before packing it.


Linux format (ext3) disks [hyperspectral data prior to 2011]

Partition and format the disk (command line)

  1. Run fdisk /dev/DEVICE_NAME (not partition)
  2. enter 'p' to print partition table and check you have selected the correct disk
  3. enter 'd' to delete the current partition (delete them all)
  4. enter 'n' to create a new partition
  5. enter 'p' to make new partition the primary partition. If it asks you to give a partition number press 1 and enter. Then press enter twice to fill the whole disk.
  6. enter 'p' to print new partition table – if all seems fine enter 'w' to write
  7. To be on the safe side, run dmesg again to make sure device name hasn't changed. You should now see the partition listed as device_name1, e.g. sdb1
  8. Unmount the partition if it remounted.
  9. Run mke2fs -j /dev/partition

Remount and fix permissions:

  1. Unplug the disk and plug back in. The disk space should be located under /media/disk.
  2. It is wise to check that this destination is correct: 'df /media/disk' to check that this is where the device is mounted.
  3. Make writable for everyone using chmod a+rwx /media/disk

Copy over your data onto the disk

Copy the delivery folder to /media/disk.

Finalising hard disk

Set permissions and owner:

chmod a+rX,a-w -R /media/disk
chown root.root -R /media/disk

NOTE: Be sure to record the number of the hard disk (or giving it one if it does not yet have one) before packing it.


Return to Procedures/EndUserDelivery