Changes between Version 55 and Version 56 of Procedures/NEODCDelivery
- Timestamp:
- Nov 11, 2010, 2:34:12 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Procedures/NEODCDelivery
v55 v56 28 28 1. Scan the filesystem for any 'bad' things and fix them: 29 29 1. Delete any unnecessary files - backups of DEMs that weren't used, temp files created by gedit (~ at end of filename), hidden files etc 30 1. Remove executable bit on all files (except the point cloud filter and the run[aceh] scripts):31 {{{32 find -type f -not -wholename '*pt_cloud_filter*' -and -not -regex '.*/run[aceh]/.*sh' -and -perm /a=x -exec chmod a-x {} \;33 }}}34 30 1. Find all files/dirs with unusual characters (space, brackets, etc): 35 31 {{{ … … 37 33 }}} 38 34 This will give suggested commands, but check first. 35 1. Remove executable bit on all files (except the point cloud filter and the run[aceh] scripts): 36 {{{ 37 find -type f -not -wholename '*pt_cloud_filter*' -and -not -regex '.*/run[aceh]/.*sh' -and -perm /a=x -exec chmod a-x {} \; 38 }}} 39 39 1. Give everyone read permissions (and execute if it has user execute) for the current directory and below: 40 40 {{{