grahamperrin

pool last accessed by momh167-gjp4-hpelitebook8570p-freebsd

Dec 23rd, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.92 KB | None | 0 0
  1. grahamperrin@momh167-gjp4-8570p:~ % date ; uname -v
  2. Sun Dec 23 12:07:21 GMT 2018
  3. FreeBSD 13.0-CURRENT r342020 GENERIC
  4. grahamperrin@momh167-gjp4-8570p:~ % gpart show
  5. => 40 976773088 ada0 GPT (466G)
  6. 40 409600 1 efi (200M)
  7. 409640 1024 2 freebsd-boot (512K)
  8. 410664 984 - free - (492K)
  9. 411648 33554432 3 freebsd-swap (16G)
  10. 33966080 942807040 4 freebsd-zfs (450G)
  11. 976773120 8 - free - (4.0K)
  12.  
  13. => 40 976773088 da0 GPT (466G)
  14. 40 409600 1 efi (200M)
  15. 409640 2008 - free - (1.0M)
  16. 411648 4194304 2 freebsd-zfs (2.0G)
  17. 4605952 16777216 3 freebsd-swap (8.0G)
  18. 21383168 955389952 4 freebsd-zfs (456G)
  19. 976773120 8 - free - (4.0K)
  20.  
  21. grahamperrin@momh167-gjp4-8570p:~ % geli list
  22. Geom name: ada0p4.eli
  23. State: ACTIVE
  24. EncryptionAlgorithm: AES-XTS
  25. KeyLength: 256
  26. Crypto: hardware
  27. Version: 7
  28. UsedKey: 0
  29. Flags: BOOT, GELIBOOT
  30. KeysAllocated: 113
  31. KeysTotal: 113
  32. Providers:
  33. 1. Name: ada0p4.eli
  34. Mediasize: 482717200384 (450G)
  35. Sectorsize: 4096
  36. Mode: r1w1e1
  37. Consumers:
  38. 1. Name: ada0p4
  39. Mediasize: 482717204480 (450G)
  40. Sectorsize: 512
  41. Stripesize: 4096
  42. Stripeoffset: 0
  43. Mode: r1w1e1
  44.  
  45. Geom name: ada0p3.eli
  46. State: ACTIVE
  47. EncryptionAlgorithm: AES-XTS
  48. KeyLength: 128
  49. Crypto: hardware
  50. Version: 7
  51. Flags: ONETIME, W-DETACH, W-OPEN
  52. KeysAllocated: 4
  53. KeysTotal: 4
  54. Providers:
  55. 1. Name: ada0p3.eli
  56. Mediasize: 17179869184 (16G)
  57. Sectorsize: 4096
  58. Mode: r1w1e0
  59. Consumers:
  60. 1. Name: ada0p3
  61. Mediasize: 17179869184 (16G)
  62. Sectorsize: 512
  63. Stripesize: 4096
  64. Stripeoffset: 0
  65. Mode: r1w1e1
  66.  
  67. grahamperrin@momh167-gjp4-8570p:~ % sudo zpool import
  68. pool: bootpool
  69. id: 16963911144229405877
  70. state: ONLINE
  71. status: The pool was last accessed by another system.
  72. action: The pool can be imported using its name or numeric identifier and
  73. the '-f' flag.
  74. see: http://illumos.org/msg/ZFS-8000-EY
  75. config:
  76.  
  77. bootpool ONLINE
  78. da0p2 ONLINE
  79. grahamperrin@momh167-gjp4-8570p:~ % zpool status
  80. pool: copperbowl
  81. state: ONLINE
  82. scan: scrub repaired 0 in 0 days 00:01:40 with 0 errors on Sat Dec 22 10:03:26 2018
  83. config:
  84.  
  85. NAME STATE READ WRITE CKSUM
  86. copperbowl ONLINE 0 0 0
  87. ada0p4.eli ONLINE 0 0 0
  88.  
  89. errors: No known data errors
  90. grahamperrin@momh167-gjp4-8570p:~ % sudo zpool import bootpool
  91. cannot import 'bootpool': pool may be in use from other system, it was last accessed by momh167-gjp4-hpelitebook8570p-freebsd (hostid: 0x7614073a) on Fri Dec 7 05:56:06 2018
  92. use '-f' to import anyway
  93. grahamperrin@momh167-gjp4-8570p:~ % sudo zpool import -f bootpool
  94. grahamperrin@momh167-gjp4-8570p:~ % zpool status
  95. pool: bootpool
  96. state: ONLINE
  97. status: Some supported features are not enabled on the pool. The pool can
  98. still be used, but some features are unavailable.
  99. action: Enable all features using 'zpool upgrade'. Once this is done,
  100. the pool may no longer be accessible by software that does not support
  101. the features. See zpool-features(7) for details.
  102. scan: scrub repaired 0 in 0 days 00:00:37 with 0 errors on Fri Nov 16 05:05:46 2018
  103. config:
  104.  
  105. NAME STATE READ WRITE CKSUM
  106. bootpool ONLINE 0 0 0
  107. da0p2 ONLINE 0 0 0
  108.  
  109. errors: No known data errors
  110.  
  111. pool: copperbowl
  112. state: ONLINE
  113. scan: scrub repaired 0 in 0 days 00:01:40 with 0 errors on Sat Dec 22 10:03:26 2018
  114. config:
  115.  
  116. NAME STATE READ WRITE CKSUM
  117. copperbowl ONLINE 0 0 0
  118. ada0p4.eli ONLINE 0 0 0
  119.  
  120. errors: No known data errors
  121. grahamperrin@momh167-gjp4-8570p:~ % zpool list
  122. NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT
  123. bootpool 1.98G 468M 1.53G - - 27% 23% 1.00x ONLINE -
  124. copperbowl 448G 12.0G 436G - - 0% 2% 1.00x ONLINE -
  125. grahamperrin@momh167-gjp4-8570p:~ % sudo zpool scrub bootpool
  126. grahamperrin@momh167-gjp4-8570p:~ % zpool status bootpool
  127. pool: bootpool
  128. state: ONLINE
  129. status: Some supported features are not enabled on the pool. The pool can
  130. still be used, but some features are unavailable.
  131. action: Enable all features using 'zpool upgrade'. Once this is done,
  132. the pool may no longer be accessible by software that does not support
  133. the features. See zpool-features(7) for details.
  134. scan: scrub repaired 0 in 0 days 00:00:21 with 0 errors on Sun Dec 23 12:09:23 2018
  135. config:
  136.  
  137. NAME STATE READ WRITE CKSUM
  138. bootpool ONLINE 0 0 0
  139. da0p2 ONLINE 0 0 0
  140.  
  141. errors: No known data errors
  142. grahamperrin@momh167-gjp4-8570p:~ % sudo zpool export bootpool
  143. grahamperrin@momh167-gjp4-8570p:~ %
Add Comment
Please, Sign In to add comment