Replace disk on ZFS RaidZ under FreeNAS

FreeNAS under memory Stick

We have for test six disk of 3 Terabytes each one

  • ada0
  • ada1
  • ada2
  • ada3
  • ada4
  • ada5
First create the pool:
 
[root@freenas] ~# zpool create -m /mnt/datastore/ datastore raidz ada3 ada4 ada5
 
View the new pool with mount and zpool status

[root@freenas] ~# mount
/dev/ufs/FreeNASs1a on / (ufs, local, read-only)
devfs on /dev (devfs, local, multilabel)
/dev/md0 on /etc (ufs, local)
/dev/md1 on /mnt (ufs, local)
/dev/md2 on /var (ufs, local)
/dev/ufs/FreeNASs4 on /data (ufs, local, noatime, soft-updates)
datastore on /mnt/datastore/ (zfs, local, nfsv4acls)


[root@freenas] ~# zpool status
  pool: datastore
 state: ONLINE
  scan: none requested
config:

    NAME        STATE     READ WRITE CKSUM
    datastore   ONLINE       0     0     0
      raidz1-0  ONLINE       0     0     0
        ada3    ONLINE       0     0     0
        ada4    ONLINE       0     0     0
        ada5    ONLINE       0     0     0

errors: No known data errors

removing ada3 from the pool steps:
 
  • offline device
  • replace device
  • detach device
Note: when the system has no data or have enough copies of the disk, can take offline the device

[root@freenas] ~# zpool offline datastore ada3
[root@freenas] ~# zpool status
  pool: datastore
 state: DEGRADED
status: One or more devices has been taken offline by the administrator.
    Sufficient replicas exist for the pool to continue functioning in a
    degraded state.
action: Online the device using 'zpool online' or replace the device with
    'zpool replace'.
  scan: none requested
config:

    NAME                     STATE     READ WRITE CKSUM
    datastore                DEGRADED     0     0     0
      raidz1-0               DEGRADED     0     0     0
        6854680740337617046  OFFLINE      0     0     0  was /dev/ada3
        ada4                 ONLINE       0     0     0
        ada5                 ONLINE       0     0     0

errors: No known data errors


[root@freenas] ~# zpool replace datastore ada3 ada0
[root@freenas] ~# zpool status
  pool: datastore
 state: DEGRADED
  scan: resilvered 56.5K in 0h0m with 0 errors on Tue Dec 11 17:30:08 2012
config:

    NAME                       STATE     READ WRITE CKSUM
    datastore                  DEGRADED     0     0     0
      raidz1-0                 DEGRADED     0     0     0
        replacing-0            OFFLINE      0     0     0
          6854680740337617046  OFFLINE      0     0     0  was /dev/ada3
          ada0                 ONLINE       0     0     0
        ada4                   ONLINE       0     0     0
        ada5                   ONLINE       0     0     0

errors: No known data errors

[root@freenas] ~# zpool detach datastore ada3
[root@freenas] ~# zpool status
  pool: datastore
 state: ONLINE
  scan: scrub repaired 0 in 0h0m with 0 errors on Tue Dec 11 17:50:09 2012
config:

    NAME        STATE     READ WRITE CKSUM
    datastore   ONLINE       0     0     0
      raidz1-0  ONLINE       0     0     0
        ada0    ONLINE       0     0     0
        ada4    ONLINE       0     0     0
        ada5    ONLINE       0     0     0

errors: No known data errors



[root@freenas] ~# zpool history
History for 'datastore':

2012-12-11.17:17:17 zpool create -m /mnt/datastore/ datastore raidz ada3 ada4 ada5
2012-12-11.17:19:10 zpool set autoreplace=on datastore
2012-12-11.17:24:54 zpool offline datastore ada3
2012-12-11.17:30:13 zpool replace datastore ada3 ada0
2012-12-11.17:50:13 zpool scrub datastore
2012-12-11.17:52:45 zpool detach datastore ada3
2012-12-11.19:17:53 zpool scrub datastore

#!/bin/bash
echo "Write Test!"
for i in {1..721}
do
   dd if=/dev/zero of=File1G_$i.txt bs=1M count=1024
done



[root@freenas] /mnt/datastore# md5 File1G_1.txt
MD5 (File1G_1.txt) = cd573cfaace07e7949bc0c46028904ff


[root@freenas] /mnt/datastore# ls -Gla
total 755414364
drwxr-xr-x  2 root  wheel         724 Dec 11 19:37 ./
drwxr-xr-x  4 root  wheel         512 Dec 11 17:15 ../
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:07 File1G_1.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_10.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_100.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_101.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_102.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_103.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_104.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:17 File1G_105.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:17 File1G_106.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:17 File1G_107.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:17 File1G_108.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:17 File1G_109.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_11.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:17 File1G_110.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:17 File1G_111.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:17 File1G_112.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:17 File1G_113.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:18 File1G_114.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:18 File1G_115.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:18 File1G_116.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:18 File1G_117.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:18 File1G_118.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:18 File1G_119.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_12.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:18 File1G_120.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:18 File1G_121.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:18 File1G_122.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:18 File1G_123.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:19 File1G_124.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:19 File1G_125.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:19 File1G_126.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:19 File1G_127.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:19 File1G_128.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:19 File1G_129.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_13.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:19 File1G_130.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:19 File1G_131.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:19 File1G_132.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_133.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_134.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_135.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_136.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_137.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_138.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_139.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_14.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_140.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_141.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_142.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_143.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:20 File1G_144.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_145.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_146.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_147.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_148.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_149.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_15.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_150.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_151.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_152.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_153.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_154.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:21 File1G_155.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_156.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_157.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_158.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_159.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_16.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_160.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_161.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_162.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_163.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_164.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_165.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:22 File1G_166.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:23 File1G_167.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:23 File1G_168.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:23 File1G_169.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_17.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:23 File1G_170.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:23 File1G_171.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:23 File1G_172.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:23 File1G_173.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:23 File1G_174.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:23 File1G_175.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:23 File1G_176.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_177.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_178.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_179.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_18.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_180.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_181.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_182.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_183.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_184.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_185.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_186.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_187.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_188.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:24 File1G_189.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_19.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_190.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_191.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_192.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_193.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_194.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_195.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_196.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_197.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_198.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_199.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:07 File1G_2.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_20.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_200.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_201.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_202.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:25 File1G_203.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:26 File1G_204.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:26 File1G_205.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:26 File1G_206.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:26 File1G_207.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:26 File1G_208.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:26 File1G_209.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:09 File1G_21.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_210.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_211.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_212.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_213.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_214.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_215.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_216.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_217.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_218.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_219.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:09 File1G_22.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_220.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:27 File1G_221.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:28 File1G_222.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:28 File1G_223.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:28 File1G_224.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:28 File1G_225.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:28 File1G_226.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:28 File1G_227.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:28 File1G_228.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:28 File1G_229.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:09 File1G_23.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:28 File1G_230.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:28 File1G_231.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:29 File1G_232.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:29 File1G_233.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:29 File1G_234.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:29 File1G_235.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:29 File1G_236.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:29 File1G_237.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:29 File1G_238.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:29 File1G_239.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:09 File1G_24.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:29 File1G_240.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:30 File1G_241.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:30 File1G_242.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:30 File1G_243.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:30 File1G_244.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:30 File1G_245.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:30 File1G_246.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_247.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_248.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_249.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:09 File1G_25.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_250.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_251.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_252.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_253.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_254.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_255.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_256.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:31 File1G_257.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_258.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_259.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:09 File1G_26.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_260.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_261.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_262.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_263.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_264.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_265.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_266.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_267.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_268.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_269.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:09 File1G_27.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_270.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:32 File1G_271.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_272.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_273.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_274.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_275.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_276.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_277.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_278.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_279.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:09 File1G_28.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_280.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_281.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_282.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_283.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_284.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_285.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:33 File1G_286.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:34 File1G_287.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:34 File1G_288.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:34 File1G_289.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:09 File1G_29.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:34 File1G_290.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:34 File1G_291.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:34 File1G_292.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:34 File1G_293.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:34 File1G_294.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:34 File1G_295.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:34 File1G_296.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:35 File1G_297.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:35 File1G_298.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:35 File1G_299.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:07 File1G_3.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_30.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:35 File1G_300.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:35 File1G_301.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:35 File1G_302.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:35 File1G_303.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:35 File1G_304.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:35 File1G_305.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:35 File1G_306.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_307.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_308.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_309.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_31.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_310.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_311.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_312.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_313.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_314.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_315.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_316.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_317.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_318.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:36 File1G_319.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_32.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:37 File1G_320.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:37 File1G_321.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:37 File1G_322.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:37 File1G_323.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:37 File1G_324.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:37 File1G_325.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:37 File1G_326.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:37 File1G_327.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:38 File1G_328.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:38 File1G_329.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_33.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:38 File1G_330.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:38 File1G_331.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:38 File1G_332.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:38 File1G_333.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:38 File1G_334.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_335.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_336.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_337.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_338.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_339.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_34.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_340.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_341.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_342.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_343.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_344.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_345.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_346.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_347.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_348.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:39 File1G_349.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_35.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_350.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_351.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_352.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_353.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_354.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_355.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_356.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_357.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_358.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_359.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_36.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_360.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:40 File1G_361.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:41 File1G_362.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:41 File1G_363.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:41 File1G_364.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:41 File1G_365.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:41 File1G_366.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:41 File1G_367.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:41 File1G_368.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:41 File1G_369.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_37.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_370.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_371.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_372.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_373.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_374.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_375.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_376.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_377.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_378.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_379.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_38.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:42 File1G_380.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_381.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_382.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_383.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_384.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_385.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_386.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_387.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_388.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_389.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_39.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_390.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_391.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_392.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_393.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_394.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_395.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_396.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:43 File1G_397.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_398.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_399.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:07 File1G_4.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_40.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_400.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_401.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_402.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_403.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_404.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_405.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_406.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_407.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_408.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:44 File1G_409.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:10 File1G_41.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_410.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_411.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_412.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_413.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_414.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_415.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_416.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_417.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_418.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_419.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_42.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_420.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_421.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:45 File1G_422.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:46 File1G_423.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:46 File1G_424.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:46 File1G_425.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:46 File1G_426.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:46 File1G_427.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:46 File1G_428.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:46 File1G_429.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_43.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:46 File1G_430.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_431.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_432.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_433.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_434.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_435.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_436.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_437.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_438.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_439.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_44.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_440.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_441.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:47 File1G_442.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:48 File1G_443.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:48 File1G_444.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:48 File1G_445.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:48 File1G_446.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:48 File1G_447.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:48 File1G_448.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:48 File1G_449.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_45.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:48 File1G_450.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:48 File1G_451.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:48 File1G_452.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:49 File1G_453.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:49 File1G_454.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:49 File1G_455.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:49 File1G_456.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:49 File1G_457.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:49 File1G_458.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:49 File1G_459.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_46.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:49 File1G_460.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_461.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_462.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_463.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_464.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_465.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_466.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_467.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_468.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_469.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_47.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_470.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:50 File1G_471.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_472.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_473.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_474.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_475.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_476.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_477.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_478.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_479.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_48.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_480.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_481.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_482.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:51 File1G_483.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:52 File1G_484.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:52 File1G_485.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:52 File1G_486.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:52 File1G_487.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:52 File1G_488.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:52 File1G_489.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_49.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:52 File1G_490.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:52 File1G_491.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:52 File1G_492.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:53 File1G_493.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:53 File1G_494.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:53 File1G_495.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:53 File1G_496.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:53 File1G_497.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:53 File1G_498.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:53 File1G_499.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:07 File1G_5.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_50.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:53 File1G_500.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:54 File1G_501.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:54 File1G_502.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:54 File1G_503.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:54 File1G_504.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:54 File1G_505.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:54 File1G_506.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:54 File1G_507.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:54 File1G_508.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:54 File1G_509.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_51.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:54 File1G_510.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_511.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_512.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_513.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_514.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_515.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_516.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_517.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_518.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_519.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_52.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_520.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_521.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_522.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:55 File1G_523.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_524.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_525.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_526.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_527.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_528.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_529.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:11 File1G_53.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_530.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_531.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_532.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_533.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_534.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:56 File1G_535.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:57 File1G_536.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:57 File1G_537.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:57 File1G_538.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:57 File1G_539.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:12 File1G_54.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:57 File1G_540.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:57 File1G_541.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:57 File1G_542.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_543.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_544.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_545.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_546.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_547.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_548.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_549.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:12 File1G_55.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_550.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_551.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_552.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_553.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_554.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:58 File1G_555.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_556.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_557.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_558.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_559.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:12 File1G_56.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_560.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_561.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_562.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_563.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_564.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_565.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_566.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:59 File1G_567.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:00 File1G_568.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:00 File1G_569.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:12 File1G_57.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:00 File1G_570.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:00 File1G_571.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:00 File1G_572.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:00 File1G_573.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:00 File1G_574.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:00 File1G_575.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:00 File1G_576.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_577.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_578.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_579.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:12 File1G_58.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_580.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_581.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_582.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_583.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_584.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_585.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_586.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:01 File1G_587.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_588.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_589.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:12 File1G_59.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_590.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_591.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_592.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_593.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_594.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_595.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_596.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_597.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:02 File1G_598.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_599.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:07 File1G_6.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:12 File1G_60.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_600.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_601.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_602.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_603.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_604.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_605.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_606.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_607.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_608.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:03 File1G_609.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:12 File1G_61.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:04 File1G_610.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:04 File1G_611.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:04 File1G_612.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:04 File1G_613.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:04 File1G_614.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:04 File1G_615.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:04 File1G_616.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:04 File1G_617.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_618.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_619.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:12 File1G_62.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_620.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_621.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_622.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_623.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_624.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_625.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_626.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_627.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:05 File1G_628.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_629.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_63.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_630.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_631.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_632.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_633.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_634.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_635.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_636.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_637.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_638.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_639.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_64.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_640.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_641.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_642.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_643.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:06 File1G_644.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:07 File1G_645.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:07 File1G_646.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:07 File1G_647.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:07 File1G_648.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:07 File1G_649.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_65.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:07 File1G_650.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:07 File1G_651.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:07 File1G_652.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:08 File1G_653.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:08 File1G_654.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:08 File1G_655.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:08 File1G_656.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:08 File1G_657.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:08 File1G_658.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:08 File1G_659.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_66.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_660.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_661.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_662.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_663.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_664.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_665.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_666.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_667.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_668.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_669.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_67.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_670.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:09 File1G_671.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_672.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_673.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_674.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_675.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_676.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_677.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_678.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_679.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_68.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_680.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_681.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:10 File1G_682.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_683.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_684.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_685.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_686.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_687.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_688.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_689.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_69.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_690.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_691.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_692.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:11 File1G_693.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:12 File1G_694.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:12 File1G_695.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:12 File1G_696.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:12 File1G_697.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:12 File1G_698.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_699.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:07 File1G_7.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_70.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_700.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_701.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_702.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_703.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_704.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_705.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_706.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_707.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_708.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:13 File1G_709.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_71.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_710.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_711.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_712.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_713.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_714.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_715.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_716.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_717.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_718.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_719.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_72.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_720.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 19:14 File1G_721.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_73.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_74.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_75.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:13 File1G_76.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:14 File1G_77.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:14 File1G_78.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:14 File1G_79.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_8.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:14 File1G_80.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:14 File1G_81.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:14 File1G_82.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:15 File1G_83.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:15 File1G_84.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:15 File1G_85.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:15 File1G_86.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:15 File1G_87.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:15 File1G_88.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:15 File1G_89.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:08 File1G_9.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:15 File1G_90.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_91.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_92.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_93.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_94.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_95.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_96.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_97.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_98.txt
-rw-r--r--  1 root  wheel  1073741824 Dec 11 18:16 File1G_99.txt
-rwxr-x---  1 root  wheel         112 Dec 11 18:05 writeTest.sh*



[root@freenas] /mnt/datastore# zpool status
  pool: datastore
 state: ONLINE
  scan: scrub repaired 0 in 0h52m with 0 errors on Tue Dec 11 20:10:28 2012
config:

    NAME        STATE     READ WRITE CKSUM
    datastore   ONLINE       0     0     0
      raidz1-0  ONLINE       0     0     0
        ada0    ONLINE       0     0     0
        ada4    ONLINE       0     0     0
        ada5    ONLINE       0     0     0

errors: No known data errors



[root@freenas] /mnt/datastore# zpool offline datastore ada4
cannot offline ada4: no valid replicas

[root@freenas] /mnt/datastore# zpool offline datastore ada5
cannot offline ada5: no valid replicas


[root@freenas] /mnt/datastore# zpool replace datastore ada4 ada3
[root@freenas] /mnt/datastore# zpool status
  pool: datastore
 state: ONLINE
status: One or more devices is currently being resilvered.  The pool will
    continue to function, possibly in a degraded state.
action: Wait for the resilver to complete.
  scan: resilver in progress since Tue Dec 11 20:26:18 2012
        16.3G scanned out of 1.06T at 278M/s, 1h5m to go
        5.43G resilvered, 1.51% done

config:

    NAME             STATE     READ WRITE CKSUM
    datastore        ONLINE       0     0     0
      raidz1-0       ONLINE       0     0     0
        ada0         ONLINE       0     0     0  (resilvering)
        replacing-1  ONLINE       0     0     0
          ada4       ONLINE       0     0     0
          ada3       ONLINE       0     0     0  (resilvering)
        ada5         ONLINE       0     0     0

errors: No known data errors

[root@freenas] /mnt/datastore# zpool list
NAME        SIZE  ALLOC   FREE    CAP  DEDUP  HEALTH  ALTROOT
datastore  8.12T  1.07T  7.06T    13%  1.00x  ONLINE  -


Documentation

http://docs.huihoo.com/opensolaris/solaris-zfs-administration-guide/html/ch04s04.html
http://www.freebsd.org/cgi/man.cgi?query=zpool&sektion=8
http://docs.oracle.com/cd/E19082-01/819-2240/zpool-1m/index.html

Comentarios

Entradas populares de este blog

Clave WPA2 por Defecto de equipos TotalPlay (Huawei HG8245H)

Cable modem Ubee - WPA2 y WPS por defecto