-
antranigv
CrtxReavr that's a bug, right? it should either show both or drop a usage output, I guess.
-
CrtxReavr
antranigv, that's a fair argument.
-
CrtxReavr
The manpage clearly states one or the other.
-
CrtxReavr
And it seems whichever of 4 or 6 is specified last is what's displayed.
-
FragmentedCurve
Do these ping times look unusual to anyone?
0x0.st/8smP.txt
-
Ober
yeah very
-
syrusfrost
My ping to that google IP is all over the place, maybe hit a cloudflare anycast IP?
-
syrusfrost
Like noah.ns.cloudflare.com 172.64.33.133
-
rtprio
FragmentedCurve: why do you think that's unusual
-
the_oz_
they front load closer to you in all their caches.
-
the_oz_
squeezing every bit to get thosae time till eyeball sees an ad
-
the_oz_
if you ... even allow that filth anymore
-
FragmentedCurve
rtprio: I've had network problems on this machine before. When I'd ping google, it would do this thing where the time would steadily climb (sometimes from 8ms to 44ms) and then drop. This climb and drop cycle would repeat.
-
FragmentedCurve
The difference between before and now is the NIC is different and the ISP is different.
-
SponiX
FragmentedCurve: two variables makes it harder to know for sure :P
-
the_oz_
maybe that's how load balancing works for that node
-
rtprio
that doesn't seem that bad, still
-
rtprio
if it was 44-440 seconds then yes, we could all agree something is up
-
rtprio
erm ms
-
the_oz_
32ms used to be the expected lowest value for me anyway
-
tercal
Hi. I have a ZFS storage that is used for backup storage. I understand ZFS is good for deduplication of data. My backup storage keeps filling in and I am not sure the ZFS s configured correctly. What are the options to be checked in that case?
-
HER
tercal: that sounds very vague
-
HER
tercal: your backup strorage keeps filling in ? why ? you are throwing data into it ?
-
HER
it will eventually fill up
-
HER
do some clean up maybe ?
-
rtprio
tercal: dedup depends on the nature of the data, but you'd want to set dedup on
-
rtprio
and then it won't happen until new data is copied, so yeah, best purge some old backups
-
nsoci
hi. does anyone has experience with drawing tablets under FreeBSD, please?
-
shiroyasha
nsoci is gone, but I have successfully used a Wacom Intuos S. The only weird thing I had to do to make it work, was doing something with webcamd on /etc/rc.conf, IIRC.
-
polarian
ugh... I can't figure this out, IPv6 + IPv4 dual stack wireguard setup, on my phone its working fine, both ipv4 only and ipv6 only work, on freebsd IPv4 works, IPv6 doesn't... packet cant reach the wg endpoint pf disabled so not a firewall issue...
-
polarian
any ideas?
-
polarian
(using wg-quick btw)
-
CrtxReavr
Our ls(1) has no option for megabytes with -l ?
-
CrtxReavr
s/\?$/\./
-
CrtxReavr
Makes for some ugly one-liners.
-
CrtxReavr
$ total=0 ; for i in $(ls -lk xrv9k-fullk9-x* | awk '{print $5}') ; do total=$((total=$total+$i)) ; done ; echo $(($total/1024))
-
nimaje
hm, there should be something better than parsing ls, but please use awk, so ls -lk xrv9k-fullk9-x* | awk '{ s+=$5 } END { print s/1024 }' instead
-
nimaje
how about stat -f '%z' <your glob> | awk '{ s+=$1 } END { print s }' ? should give you the size in bytes, for megabytes add /1000000 (or /1024/1024 for mibi)
-
jgh
no "du -bh" ?
-
nimaje
my du doesn't know any -b
-
CrtxReavr
nimaje, that's a nice oneliner, but beyond a certain threshhold, it swtiches to scientific notation:
-
CrtxReavr
$ ls -lk | awk '{ s+=$5 } END { print s/1024 }'
-
CrtxReavr
5.07669e+06
-
CrtxReavr
$ ls -lk xrv9k-fullk9-x* | awk '{ s+=$5 } END { print s/1024 }'
-
CrtxReavr
4254256
-
CrtxReavr
There a way to stop that?
-
nimaje
use printf "%d", <your expr>
-
voy4g3r2
quick awk question, how do you get it to NOT print out to the console when it is piping to a file?
-
voy4g3r2
-
voy4g3r2
and it is probably something really stupid too.. on my part, as to why it is happening
-
nimaje
you have a space between > and the filename
-
nimaje
but why do you use if inside an unconditional action instead of making it conditional?
-
mewt
hi, if i want to list geli keyslots for a provider, is there a way to do that? I am unclear what some of the fields mean in geli list
-
mewt
In particular, what is UsedKey? If I only see UsedKey:0 is that the only slot in use?
-
mewt
also, if i change the passphrase for a provider, without having a keyfile or the like, what has changed is the user key, right? So if I use setkey, what should happen is a new copy of the master key is installed over the old one (assuming it began in slot 0), encrypted by the new passphrase?
-
mewt
well, I'm going to attempt a reboot and see if things have broken, maybe foolishly
-
mewt
after testing the newly encrypted master key is certainly installed
-
mewt
and the old one does seem gone (?)
-
voy4g3r2
nimaje: i am playing.. i want to eventually just have this as one file.. right now splitting apart and it worked well
-
voy4g3r2
i was playing with using match() then got annoyed with thie file output , got distracted
-
rtprio
why are you awk'ing ls?
-
voy4g3r2
i am not, i am awking mandoc -T lint output
-
rtprio
cool
-
voy4g3r2
hopefully.. the scripts i made last year, in perl, i can not read them anymore.. so rebuilding in simplier toolsets