4 | | A better way to do that is using {{{--temp-directory}}}: trial will still attempt to delete the directory you specify, so it can't directly be the tmpfs mount, but that's OK as long as it is underneath the tmpfs mount. |
| 4 | A better way to do that is using {{{--temp-directory}}}: trial will still attempt to delete the directory you specify, so it can't directly be the tmpfs mount, but that's OK as long as it is underneath the tmpfs mount: |
| 5 | {{{ |
| 6 | mkdir -p tmp |
| 7 | sudo mount -t tmpfs -o size=330m tmpfs tmp |
| 8 | bin/tahoe debug trial --rterrors --temp-directory=tmp/_trial_temp |
| 9 | }}} |
| 10 | When done: |
| 11 | {{{ |
| 12 | sudo umount tmp |
| 13 | rmdir tmp |
| 14 | }}} |
| 15 | |