I have pfSense box running with an Intel PCI dual-port gigabit NIC. However, I’ve recently discovered that this PCI card draws around 10 watts. (I unplugged the PCI card and measured on my Kill-A-Watt.) So, I came up with a different idea: use an OpenWRT device ahead of the pfsense box to VLAN-tag WAN vs […]
Also filed in
|
|
pigeons,pigeons I love pigeons! 4 people like this post. Like Unlike
Also filed in
|
|
m using a couple of these for log devices (ZIL). I’ve benchmarked them before, but the system is way more stable (got rid of some old SATA cables etc). I removed them from the tank, and here are some dd benchmarks:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
server# dd if=/dev/zero of=/dev/gpt/tank_zil0 bs=4M count=32 32+0 records in 32+0 records out 134217728 bytes transferred in 0.823378 secs (163008623 bytes/sec) server# dd if=/dev/zero of=/dev/gpt/tank_zil0 bs=4M count=128 128+0 records in 128+0 records out 536870912 bytes transferred in 3.420138 secs (156973470 bytes/sec) server# dd if=/dev/zero of=/dev/gpt/tank_zil0 bs=4M count=1024 1024+0 records in 1024+0 records out 4294967296 bytes transferred in 26.639669 secs (161224498 bytes/sec) server# dd if=/dev/zero of=/dev/gpt/tank_zil1 bs=4M count=32 32+0 records in 32+0 records out 134217728 bytes transferred in 0.871419 secs (154022044 bytes/sec) server# dd if=/dev/zero of=/dev/gpt/tank_zil1 bs=4M count=128 128+0 records in 128+0 records out 536870912 bytes transferred in 3.344363 secs (160530097 bytes/sec) server# dd if=/dev/zero of=/dev/gpt/tank_zil1 bs=4k count=128 128+0 records in 128+0 records out 524288 bytes transferred in 0.015540 secs (33737700 bytes/sec) server# dd if=/dev/zero of=/dev/gpt/tank_zil1 bs=4k count=8192 8192+0 records in 8192+0 records out 33554432 bytes transferred in 0.957342 secs (35049580 bytes/sec) |
They’re roughly in the 150 MB/s range with large (4MB) records, and 32 […]
From a previous post, I noticed the SSD that I’m using in my server showed only a 50 MB/s write speed. That’s weird because the specs show around 145 MB/s. So, I decided to investigate some more. I removed the SSD from the zpool and did some dd tests on it. That last run (which […]
here it is: Couple of customizations here. First, I’ve modified the wrtbmon script to not rely on sort, since it doesn’t exist in Buffalo’s DD-WRT. Also, I’ve set up a small script to format ip_conntrack as HTML. This is so I can keep tabs to see if my QoS settings are working. Be the first […]
I recently installed subsonic, which has a Java dependency. The www/subsonic port installed Java. Unfortunately, this (or something else I did) broke CrashPlan (which uses the Linux Java in the java/linux-sun-jre16 port). I had to take a few unexpected steps to fix this. Be the first to like. Like Unlike
I’ve finally taken the time to figure things out step-by-step. NFSv4 ACL’s, which are supported by ZFS on FreeBSD (and Solaris) are pretty cool. However, I’ve never really understand how they work. By taking the time to use the command-line, I’ve figured out what I think is a good approach for a public share–one where […]
What does this menu choice from Windows Live Movie Maker look like to you: Well, to my wife, it looked like Windows Live Movie Maker could make DVD’s. I don’t blame her. I mean, the thing has “Movie Maker” in its name—and it has a “Burn a DVD” menu option. She spent about an hour […]
Sometime ago, I setup a ZFS system using glabel on FreeBSD. I recently stumbled across this FreeBSD diary entry, which describes to do almost the same thing using gpt. I like this method better, because it results in a partition that is on a 4kB boundary, which works better for some hard drives (whose sector […]
Also filed in
|
|
The default vim has a matchpairs option which matches pairs of single bytes. However, I have a file which has a lot of nested conditions, and the language requires begin/end pairs for multi-line conditionals. I know I have more begin statements than end statements. So, I need help from vim in matching these up. As […]
Also filed in
|
|