Guest User

Untitled

a guest
Jul 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. [root@filer ~]# du -hs /tmp/test*
  2. 98M /tmp/test1
  3. 98M /tmp/test2
  4. 98M /tmp/test3
  5. [root@filer ~]# zpool create test raidz /tmp/test1 /tmp/test2
  6. [root@filer ~]# df -h | grep test
  7. test 61M 0B 61M 0% /test
  8. [root@filer ~]# dd if=/dev/urandom of=/test/test bs=512
  9. dd: /test/test: No space left on device
  10. 123744+0 records in
  11. 123743+0 records out
  12. 63356416 bytes transferred in 295.913366 secs (214105 bytes/sec)
  13. [root@filer ~]# df -h | grep test
  14. test 61M 61M 0B 100% /test
  15. [root@filer ~]# zpool add -f test /tmp/test3
  16. [root@filer ~]# df -h | grep test
  17. test 154M 61M 93M 39% /test
  18. [root@filer ~]# dd if=/dev/urandom of=/test/test bs=512
  19. dd: /test/test: No space left on device
  20. 313317+0 records in
  21. 313316+0 records out
  22. 160417792 bytes transferred in 280.602999 secs (571690 bytes/sec)
  23. [root@filer ~]# df -h | grep test
  24. test 153M 153M 0B 100% /test
Add Comment
Please, Sign In to add comment