-
_xor
-
VimDiesel
Title: GitHub - fujiapple852/trippy: A network diagnostic tool
-
_xor
-
VimDiesel
Title: GitHub - GyulyVGC/sniffnet: Application to comfortably monitor your Internet traffic 🕵️♂️
-
_xor
I've used both of those, and I think both of this do what you're looking to accomplish.
-
_xor
CrtxReavr: Don't remember of the top of my head, but I'm curious now. Going to look when I go back into the basement.
-
dch
_xor these are both excellent, thanks for the tip
-
ExclamationPoint
q
-
ExclamationPoint
lol
-
wikan
hi, i am working on my installation script
-
wikan
may i ask if it is possible to pass the password string to geli command?
-
wikan
i ask for encryption password using dialog window and i don't want to type it while installation process
-
wikan
this is my command: geli init -b -s4096 -l256 /dev/label/${iGeliLabel}
-
RhodiumToad
-J filename will take the passphrase from a file (can't contain newlines - only the first line of the file is taken)
-
wikan
@RhodiumToad can I remove this file after geli attatch?
-
EdnaLuv
TSA Delta Flight 194 Ad - Be Careful What You Eat before Your Flight! A TSA public service ad urges air passengers to be mindful of what they eat before their flight to avoid another Delta 194 diarrhea spray incident.
justpaste.it/Delta_194_TSA
-
VimDiesel
Title: TSA Delta Flight 194 Ad - Be Careful What You Eat before Your Flight! - JustPaste.it
-
CmdLnKid
wtf
-
RhodiumToad
wikan: sure
-
wikan
great, thank you so much :)
-
PyR3X
anyone able to get a Garmin watch usb storage to work on FreeBSD?
-
PyR3X
ugen0.8: <vendor 0x091e product 0x0003> at usbus0, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON (500mA)
-
RhodiumToad
PyR3X: is it presenting as a block storage device, or as MTP or something?
-
PyR3X
RhodiumToad: I think it's like an Android USB
-
PyR3X
Linux/Windows just pops up like a normal USB storage
-
RhodiumToad
what does usbconfig -d ... dump_all_desc show?
-
RhodiumToad
e.g. -d ugen0.8
-
beowuff
Should autotrim on zfs be set for nvmes?
-
Freaky
-
VimDiesel
Title: FreeBSD / ports / 82f691 / security/portacl-rc: Add new port - FreshBSD
-
CmdLnKid
if were compiling all the time with obj directories ... why is there a warning that /usr/src is a read-only filesystem ?
-
CmdLnKid
forever now i mount nullfs if ya will /usr/src ro from a zfs filesystem. why would it need to be writable by any means or less thereof by freebsd methods of using obj ?
-
CmdLnKid
these warnings are moot bs
-
CmdLnKid
for further context "writeable" /export/usr/src. unwriteable is /usr/src
-
CmdLnKid
i don't comprehend why these are there and why when using a obj directory we should be concerned when compilation does not require writing to /usr/src at all. thats just dirty in itself
-
RhodiumToad
CmdLnKid: the warning is a bug in make
-
CmdLnKid
k
-
CmdLnKid
ill look further into make
-
CmdLnKid
irratations ... ya know
-
RhodiumToad
it wants to check whether the obj dir is writable, but it's checking it before actually changing it
-
CmdLnKid
seems make went a little to far on its checks instead of doing its most simplest job
-
CmdLnKid
just do it
-
CmdLnKid
to an unexperienced user i see this as a wtf moment
-
CmdLnKid
not much to worry over but yet nothing that should be there
-
Soni
does freebsd support RFC 6525?
-
CmdLnKid
soni, sctp has been here a very long time
-
CmdLnKid
reconfiguration should be a option
-
Soni
how do you use SCTP_ADD_STREAMS? we don't see it in the manual?
-
CmdLnKid
support may vary for important options
-
CmdLnKid
what are you seeing vs what you expect ?
-
Soni
can't find SCTP_ADD_STREAMS in manual
-
CmdLnKid
as close as i see to that is tracking global addresses but adding streams does not seem to be something that is implemented. " not definate word" per my search
-
CmdLnKid
so in otherwords.. np
-
CmdLnKid
no
-
CmdLnKid
as in just not handled
-
CmdLnKid
afaict
-
Soni
ah that's unfortunate :(
-
meena
Soni: might want to direct your questions at freebsd-net@
-
CmdLnKid
don'nt get me wrong thats just a cursory glance but nothing is sticking out to me right now. whats your usage tho ?
-
CmdLnKid
its just i don't see it where i think it would be
-
meena
IIRC, a proxy of some sort
-
CmdLnKid
freebsd-net@ tho may raise the proper eyebrows
-
RhodiumToad
afaict, SCTP_ADD_STREAMS was added in 2012 or so
-
kevans
Soni: fwiw, my understanding is that freebsd is the SCTP reference platform
-
kevans
SCTP_ADD_STREAMS seems to be implemented, not sure why its' not documented
-
» kevans scrolls down and sees RhodiumToad confirmed already
-
RhodiumToad
heh
-
Soni
oh okay
-
Soni
is it okay to open a few hundred thousand AF_UNIX streams?
-
» RhodiumToad notes that D40961 is not committed yet
-
RhodiumToad
Soni: why would you want to, and do you have the RAM for it?
-
Soni
RhodiumToad: for pain reasons. how much RAM does a socket take?
-
RhodiumToad
you need the limits on file descriptors to be high enough
-
Soni
yeah
-
RhodiumToad
the RAM will depend on how much buffer space ends up being needed
-
» kevans slaps a threat of a timelimit on D40961
-
Soni
usually, how much RAM should be expected per socket?
-
RhodiumToad
"it depends", but consider that when you write data to the socket and the reader isn't immediately ready to receive it, it will be buffered
-
Soni
*nod*
-
RhodiumToad
the size of that buffer is capped by kern.ipc.maxsockbuf and set by SO_SNDBUF/SO_RCVBUF etc.
-
RhodiumToad
default for maxsockbuf seems to be 2MB
-
Soni
yeah honestly we wouldn't come anywhere close to 100k in practice
-
RhodiumToad
but there's also global caps on the amount of network memory
-
RhodiumToad
kern.ipc.maxmbufmem
-
RhodiumToad
which looks like it defaults to about half of physmem
-
Soni
so basically it'd take a TB of RAM
-
Soni
fair enough
-
RhodiumToad
that would be the worst case
-
RhodiumToad
if there's not a ton of buffered data, then there'll just be memory for various data structures, maybe in the hundreds of bytes per socket
-
PyR3X
I see the default Wireshark is not built with sshdump enabled by default. Is my only option to build from ports to enable it?
-
meena
PyR3X: the alternative is to badger the maintainer until they give in
-
vkarlsen
Which license is this? It's similar to BSD3CLAUSE, but not quite it --
github.com/agateau/nanonote/blob/master/LICENSE
-
VimDiesel
Title: nanonote/LICENSE at master · agateau/nanonote · GitHub
-
RhodiumToad
looks like SPDX has it as BSD-3-Clause-Clear
-
RhodiumToad
-
VimDiesel
Title: BSD 3-Clause Clear License | Software Package Data Exchange (SPDX)
-
vkarlsen
RhodiumToad: That does indeed look like the one, thanks
-
V_PauAmma_V
Beat me to it.
-
Ronis_BR
Hi! I am planning to use FreeBSD to install a gitlab. I know that we have a gitlab package. The problem is with updates. Gitlab requires a very linear update path. Let's say I install 16.2. Then, 17 is launched. However, to update to 17, I need to update first to 16.3. If I missed the update when 16.3 was in the repository, how can I obtain the old 16.3 version so that I can follow the update
-
Ronis_BR
path?
-
Ronis_BR
AFAIK, FreeBSD repositories does not host old binary versions right?
-
RhodiumToad
that is correct as far as I know
-
kevans
right, we mercilessly purge previous versions from the repo with each build
-
kevans
it's why you can get into a glorious situation where you lose firefox, for instance, if you're not paying attention
-
thedaemon
do not unplug a Wacom device, X will freak out.