Changes between Version 3 and Version 4 of Procedures/EndUserDelivery/HardDisk
- Timestamp:
- Sep 27, 2010, 3:54:02 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Procedures/EndUserDelivery/HardDisk
v3 v4 1 1 = Preparing hard disks for delivery = 2 3 == First steps == 2 4 3 5 Plug in the external hard drive. … … 28 30 29 31 --------------------- 30 == Linux format (ext3) disks [hyperspectral data] == 32 == Formatting and partitioning == 33 === Linux format (ext3) disks [hyperspectral data] === 31 34 32 === Partition and format the disk (command line) === 35 Partition and format the disk (command line) 33 36 1. Run fdisk /dev/DEVICE_NAME (not partition) 34 37 1. enter 'p' to print partition table and check you have selected the correct disk … … 41 44 1. Run `mke2fs -j /dev/partition` 42 45 43 === Remount and fix permissions === 44 45 Unplug the disk and plug back in. The disk space should be located under /media/disk. 46 47 It is wise to check that this destination is correct: 'df /media/disk' to check that this is where the device is mounted. 48 49 Make writable for everyone using chmod a+rwx /media/disk 46 Remount and fix permissions: 47 1. Unplug the disk and plug back in. The disk space should be located under /media/disk. 48 1. It is wise to check that this destination is correct: 'df /media/disk' to check that this is where the device is mounted. 49 1. Make writable for everyone using chmod a+rwx /media/disk 50 50 51 51 --------------------- 52 52 53 == Windows format (NTFS, not FAT32) disks [everything except hyperspectral data]==53 === Windows format (NTFS, not FAT32) disks [everything except hyperspectral data] === 54 54 55 === Partition and format the disk (GUI)===55 ==== Partition and format the disk (GUI) ==== 56 56 1. run `gparted` (needs sudo) 57 57 1. select the correct disk partition (pulldown at top right) … … 64 64 This should repartition and quick format the disk. 65 65 66 === Partition and format the disk (command line)===66 ==== Partition and format the disk (command line) ==== 67 67 1. Run fdisk /dev/DEVICE_NAME (not partition) 68 68 1. enter 'p' to print partition table and check you have selected the correct disk … … 76 76 1. Unmount the partition if it remounted. 77 77 1. Run `mkntfs --label ARSFDAN --quick /dev/PARTITION` 78 79 === Remount === 80 81 Unplug the disk and plug back in. The disk space should be located under /media/ARSFDAN. 82 83 It is wise to check that this destination is correct: 'df /media/ARSFDAN' to check that this is where the device is mounted. 84 85 Permissions fixes aren't needed for NTFS (I think). 78 1. Unplug the disk and plug back in. The disk space should be located under /media/ARSFDAN. 79 1. It is wise to check that this destination is correct: 'df /media/ARSFDAN' to check that this is where the device is mounted. 80 1. Permissions fixes aren't needed for NTFS (I think). 86 81 87 82 -------------