00:00:11 CrtxReavr: come on ZFS..... 00:00:38 yeah - I know it is stupid --- I had ZFS raid before - it was good - but to have ZFS on a single drive is plain ignorance 00:00:44 ZFS on a single drive is like tits on a bull. 00:00:49 lol 00:00:51 I know 00:00:56 Not sure you do. 00:06:13 I think I do now, but if you care to share more knowledge, I am all eyes 00:13:09 The point of ZFS (and most RAID) is redundancy. Using it on a single drive (spindle) just slows your machine down and provides zero upside. 00:13:46 It'd say it's like using RAID0, but it's actually worse than that, because at least RAID0 speeds up reads and writes. 00:13:55 Not true. You still get snapshots and ZFS send/recv. :) 00:14:23 Right up until that single drive dies. 00:14:38 clones, boot environments, checkpoints, dedup... plenty of reasons to use zfs on a single-drive system, like a laptop 00:14:40 That's why you send/recv. 00:14:42 Truths of Information Technology: Storage fails. 00:14:54 using zfs on a single drive is no worse than using ufs on a single drive 00:15:09 Nope. And I'd take ZFS over UFS any day of the week. 00:15:11 'Cept UFS is a lot faster. 00:15:17 Then you're ignorant. 00:15:43 Because I'd take resiliency over speed? 00:20:54 i feel like most people running on a single disk are not running performance critical workloads, and probably care a lot more about features like boot environments and cheap jails 00:21:09 so saying it's "ignorant" to use zfs instead of ufs in that situation seems pretty silly 00:21:58 Or... ignorant? 00:22:09 I run compression on my single ZFS boot drive. 00:22:39 Nothing wrong with that. 00:23:02 I've got a few other drives in mirrors and such, but having ZFS as the sole manager of my disks keeps me from being an accidental moron. 00:23:58 Safety nets are handy to have. 00:24:16 Danger nets, however, are not. 00:24:21 (also, single disk is basically the only situation where copies=2 is useful, except with SSDs it's probably still not useful as they don't tend to fail that way) 00:27:27 I'll be building an 8-drive box here "soon" 00:27:41 Think I'm going to have a pool of two disk mirrors 00:27:48 I need another 8TB or 2, as I still have *cough* ntfs disks I need to convert 00:28:29 https://serverpartdeals.com/products/seagate-exos-st26000nm000c-26tb-7-2k-rpm-sata-6gb-s-512e-cmr-3-5-recertified-hard-drive 00:29:21 Slap one o' them in your drive bay. No need to worry then X-D 00:29:23 oh goodness, that could cover my issue 00:29:36 Refurbs are nice. 00:29:50 bookmarking for future reference :) thanks 00:29:53 for some reason i find the idea of a 26TB 512e drive slightly hilarious... isn't everyone using 4k-aware systems now? 00:30:25 (i guess you can just reformat it to 4kn though) 00:30:40 I don't know what that even is :O 00:30:59 the sector size default on the drive 00:31:05 some of the lower capacity ones are 4Kn 00:31:05 thedaemon: 512e means it uses 4K sectors but pretends to the OS that it uses 512-byte sectors (which is why the zfs ashift option exists...) 00:31:05 The drive has sectors in 512-bytes vs 4kb 00:31:21 thanks, gotcha. 00:31:26 hey SponiX 00:31:36 * wavefunction retracts his statement, as ivy is more specific and correct 00:31:49 thedaemon: filed my 1st FreeBSD-Current bug report today --> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=288084 00:32:28 :) cool 00:32:40 SponiX: that's already fixed, update and rebuild kernel 00:32:51 oh, i see kib already commented 00:32:55 ivy: I often buy the 512 as sometimes they are significantly cheaper LOL 00:33:21 ivy: It is actually a kernel bug, and not a tail bug? 00:33:34 SponiX: yes, it's a kqueue bug 00:33:39 I've done a system update since then. Just haven't rebooted yet 00:33:53 Okay, I will reboot and see if it goes away 00:34:11 SponiX: https://cgit.freebsd.org/src/commit/?id=13a21c0c0e3db6e2c1a317031c7d1bf4651bec3d 00:34:41 I want points for effort anyway damn it :P 00:34:46 <-- rebooting 00:34:51 well, i appreciate you filing bugs :-) 00:34:56 at least this one wasn't my fault 00:36:13 That's always nice. 00:36:52 I'm wondering if the bug was a typo or if the code was re-written and the test was actually expected to be true. 00:37:08 I'll have to dig into when I have the time just out of curiosity. 00:45:59 ivy: Yeah, it is fixed already. That was FAST 00:46:42 SponiX: unsurprisingly a lot of people immediately complained on the mailing list when tail -f stopped working :-) 00:47:12 Yeah, looking at logs is kinda important in the Unix world - who would have thought LOL 00:48:05 I kept looking at my unbound configuration thinking it was an unbound problem for a bit. 00:48:13 well, I gotta get to work now 00:56:02 I am still confused about ZFS copy on write feature. Is it enabled by default ? How do you go back on file level to saved previous version etc ? 01:01:47 acu: copy-on-write is used automatically for snapshots and clones, and it's also support by commands like cp(1) (this is a newer feature called block cloning). usually it's not something you need to worry about - if you want to be able to roll back to previous versions of files, use snapshots 01:05:58 ivy: I thought COW is anytime you open a file like myschedule.odt it will automaically create a copy on it.. so you will actually have a new copy of the file while the old one is "hidden" - maybe my knowledge is not up to par on this - but the name suggest - any time you write something on a file - you make a copy of it... 01:06:40 no, that's called "file versioning" (as seen in operating systems like OpenVMS) and ZFS doesn't support it. copy-on-write means the filesystem internally avoids copying blocks when doing things like creating snapshots 01:07:09 it's true that writing to a file on zfs writes new data instead of overwriting the existing blocks, but that functionality is not exposed to the user directly, and it's on the block level, not the file level 01:10:34 ivy thanks - I think you should make a youtube about it --- zfs is not trivial.. 01:10:54 i'm fairly sure many people have already made youtube videos about zfs 01:11:09 (starting with the Sun one about yelling at your disk array) 01:12:46 there are a lot - all confusing... 01:13:38 you seem to really know your stuff... I mean it... it should be a practical usage both on freebsd and debian - all what you said...real life examples 12:53:40 <[tj]> anyone able to stream a webcam over the network sucessfully (actually a hdmi capture dongle, but same difference) 12:54:33 "Two computers, connected by a physical medium, running software which allows them to communicate." 12:55:23 s/Two/Two or more 13:11:17 that sounds amazing, let's call it "a network" 13:19:01 :-)