Changes between Version 82 and Version 83 of Procedures/EndUserDelivery
- Timestamp:
- Sep 14, 2009, 12:03:38 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Procedures/EndUserDelivery
v82 v83 123 123 You will need to have root permissions before you start ('sudo su' and then type in your password). 124 124 125 To create a partition:[[BR]] 126 127 Run dmesg to find device name. Listed at the bottom if just plugged in 125 126 127 Run dmesg to find device name. Listed at the bottom if just plugged in. 128 128 129 129 e.g 130 131 {{{ 130 132 SELinux: initialized (dev sdb, type ext3), uses xattr 131 132 Device path is then dev/sdb 133 134 Unmount the disk with umount dev/device_name, e.g. umount dev/sdb 135 136 Run fdisk /dev/device name 133 }}} 134 135 136 Device path is then /dev/sdb 137 138 139 '''Create a partition:[[BR]]''' 140 141 Unmount the disk with umount /dev/device_name, e.g. umount /dev/sdb, and plug back in again. 142 143 Run fdisk /dev/device_name 137 144 138 145 enter 'p' to print partition table and check you have selected the correct disk[[BR]] 139 146 enter 'd' to delete the current partition[[BR]] 140 147 enter 'n' to create a new partition [[BR]] 141 enter 'p' to make new partition the primary partition. If it asks you to give a partition number , press 1 thenenter twice.[[BR]]148 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.[[BR]] 142 149 enter 'p' to print new partition table – if all seems fine enter 'w' to write 143 150 144 To format the disk:[[BR]] 145 146 Ensure disk is unmounted a gain151 '''Format the disk:[[BR]]''' 152 153 Ensure disk is unmounted and plugged back in again. 147 154 148 155 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 … … 151 158 152 159 153 Change permissions:[[BR]] 154 155 Unplug the disk again and plug back in. 156 157 Make writable for everyone –chmod a+rwx /media/disk158 159 160 [[BR]] 160 '''Change permissions:[[BR]]''' 161 162 Unplug the disk again and plug back in. The disk space will be located under /media/disk. 163 164 Make writable for everyone using chmod a+rwx /media/disk 165 166 167 161 168 [[BR]] 162 169 === Copy over your data onto the disk === 163 170 164 Top directory should be the one with the project code (from within the delivery directory) 171 Top directory should be the one with the project code (from within the delivery directory). 165 172 Copy the data to /media/disk. 166 173 167 e.g. cp /users/rsg/ arsf/arsf_data/2008/flight_data/vocals/VOC_10-2008_314_Chile/delivery/20090827/VOC10/media/disk174 e.g. cp /users/rsg/workspace/GB08_08-2009_180b_Wytham_woods/delivery/20090827/GB08-08 /media/disk 168 175 169 176