Search results

  1. T

    HOWTO: Tuning L2ARC in ZFS

    The change in sysctl should take effect immediately. Since each case is different, the best way to determine whether a setting is good or bad is to try it out.
  2. T

    ZFS Any Way to Find Latency and IO for zfs Dataset or Volumes?

    You may try to modify the following dtrace script. https://forums.freebsd.org/threads/sharing-of-dtrace-scripts.32855/#post-182070
  3. T

    ZFS kernel syncer accesses disk every ~2 seconds

    You can use dtrace to find out which program called vop_fsync.
  4. T

    ZFS kernel syncer accesses disk every ~2 seconds

    Maybe it is writing metadata.
  5. T

    ZFS Help me track down random CRAZY SLOW IO

    Your pool is quite full. How fragment is it?
  6. T

    Kernel Preemption on FreeBSD

    Run grep -R -i -I preemption /usr/src/sys, I get 144 lines including /usr/src/sys/arm64/conf/GENERIC:options PREEMPTION # Enable kernel thread preemption
  7. T

    Solved ZFS - SLOG ramifications it if fails?

    I would recommend to do a test run first. I use ZFS on a desktop. But there is still some activities on ZIL. In fact, one-seventh of the writes came from ZIL. zpool iostat -v tank 744G 1.45T 4 5 1.02M 78.2K raidz1 744G 1.45T 4...
  8. T

    ZFS Limit Delete Priority

    Actually, they are vfs.zfs.free.max.blocks and vfs.zfs.free.min.time.ms. And you can get a list of sysctl zfs variables with a line of description by using sysctl -d vfs.zfs
  9. T

    ZFS ZFS pool import Kernel Panic - blkptr at 0x8068e69c0 has invalid CHECKSUM 0

    It is better to ask on the fs mailing list. You may also try to use linux or openindiana to import the pool.
  10. T

    Need assistance with sluggish ZFS host

    Definitely file a bug report.
  11. T

    Kernel rebuild error

    I am tracking 11-stable and I also had this problem. Instead of the usual buildworld buildkernel installkernel installworld I had to buildworld installworld buildkernel installkernel
  12. T

    Need assistance with sluggish ZFS host

    Since you are using SSD, you may try disable prefetch. #sysctl vfs.zfs.prefetch_disable=1
  13. T

    Need assistance with sluggish ZFS host

    I would suggest the following two tests. 1. disable trim 2. drastically limit arc to say, 16G or 32G.
  14. T

    ZFS Trying to access root directory of another system's root disk

    To mount a zfs filesystem with canmount option set to off, you can use the good old mount command. First import the pool, then mount -t zfs what-you-want-to-mount mountpoint
  15. T

    Sharing of DTrace scripts

    Run this script with the -C flag, as in the first line of the code. #!/usr/sbin/dtrace -Cs
  16. T

    Howto: Bhyve, using OpenBSD as main firewall in FreeBSD

    I do not use jail. But I would guess you use the interface tap0 for jails. Also, I had encountered a problem that hot swap does not work when vmm.ko is loaded.
  17. T

    Solved Pool capacity

    zpool list show raw capacity while zfs list show actual capacity.
  18. T

    Solved startx not found

    $ pkg which /usr/local/bin/startx /usr/local/bin/startx was installed by package xinit-1.3.4,1
  19. T

    mount zpool root from usb to reset a root password

    First import the pool. Then run # zfs mount -o mountpoint=somewhere path-to-root-filesystem You can find the root filesystem by using zfs list.
  20. T

    Problems building gtk30 from ports

    Somehow the newer devel/libpthread-stubs install only /usr/local/libdata/pkgconfig/pthread-stubs.pc without the necessary libraries. If you are using portmaster, you could just # pkg install /usr/ports//usr/ports/packages/portmaster-backup/libpthread-stub* And when running portmaster, add a...
Back
Top