00:06:21 jails question - in my latest jail, works in all others, I am unable to ping IP addresses on the same phys net, but can ping ips on the same phys host - seems the jail cannot figure out what IP it has on its own. 00:06:54 ping 192.168.1.1 fails - ping -S 192.168.1.28 192.168.1.1 works 00:07:11 my old head cant remember what I did last time I set up a jail 00:09:22 Error from ping: "ping: sendto: Can't assign requested address" 00:21:09 you didn't assign it an address that another jail already has, did you? 00:29:28 no - jls shows only 192.168.1.28 assigned to openhab 00:30:00 also I can ping that ip from the phys host and other hosts on the network 00:34:29 hmm restarted the phys host - now it seems to work - very strange - but I cannot remember if I did this the last time I added a jail 00:34:36 I do not belive this should be necessary 01:21:42 moo 01:35:32 I said moo 02:35:05 actually, I keep texting #FreeBSD-jails, I should text here too, since most people are here 02:35:28 I wrote this overnight, I'd like some feedback. it's a jailer controller over the network (SSH) 02:35:41 any feedback is appreciated 02:35:41 https://asciinema.org/a/HFLqsxMYrtU8jeyrDQlKXO2BQ 02:35:43 Title: untitled - asciinema 06:55:15 hi all 07:36:42 debdrup: ISO/UDF, not ISO/USB 10:30:02 grawity: I know 10:30:26 rwsoft: libarchive deals with a heck of a lot of formats, to the point that it's surprising when you find something it doesn't do. 10:30:45 sorry, mistell - that was supposed to have been for rwp. 11:08:06 if i install a port through portmaster it should automatically do dependencies, right? so where do i go to complain if a build fails because the linker can't find a dependency because it was never installed? 11:23:35 check if it is correctly declared in the port as dependency, if it is, then you have to check why it wasn't installed by portmaster, if it isn't it could be that the build system of the port tries to use stuff it isn't supposed to in an unclean environment, so check if it should be a dependency of the port; which port is it? 12:19:48 nimaje: i think there's something more deeply wrong actually because i installed the only package that sounded like it could contain the missing library manually and still get the same error. it's goddamn lang/rust that keeps failing, i just want a browserrrr 12:20:07 Read about it! Naruto Has Ninja Sex with Nuevo Leon Governor Samuel Garcia ------ Naruto grinned and formed the seals for a new jutsu he had been working on. "It's called the Ketsuryugan," he explained, "It's like a rasengan, but instead of spinning chakra, it's a concentrated blast of pleasure that stimulates the rectum and prostate." Samuel Garcia's eyebrows shot up in surprise, but he was clearly intrigued. "Sounds interesting. Can you show me 12:20:07 how it works?" https://justpaste.it/Naruto_Makes_Love_Samuel_Garcia 12:20:08 Title: Naruto Has Ninja Sex with Nuevo Leon Governor Samuel Garcia - JustPaste.it 13:08:00 skyenosaur: hm, rust should build and about what is it complining? can you put a build log in some pastebin? 14:46:31 debdrup, It is pretty cool! 16:08:23 Hi! I'm facing a weird issue with a rc.d service (dendrite) running inside a FreeBSD jail; when starting the jail using `jail -r ` dendrite won't start by itself, but if I manually go inside the jail to start dendrite (using `service dendrite start`), it works. After messing around a little with dendrite's rc.d script , I'm 100% sure that `/usr/sbin/daemon` (us 16:08:24 ed to make dendrite run in the background) is the problem here: I changed the command to something else, which worked when starting manually but not at "boot" time. My guess would be that something required by `/usr/bin/daemon` is missing from the jail when starting up, but not afterwards. Have you got any idea on how to solve this? Thanks a lot in advance :) 16:08:25 Title: dendrite.in « files « dendrite « net-im - ports - FreeBSD ports tree 16:12:48 so, you changed the service file? can you pastebin your version? 16:15:00 Nope, I just changed the command ran by /usr/sbin/daemon from `/usr/local/dendrite/bin/dendrite` to `touch /test`, which worked when starting the service manually (using `service dendrite start`) but not when starting up the jail. 16:15:43 Basically, `command_args="-p $pidfile -u dendrite -f $procname -config $dendrite_config"` -> command_args="-p $pidfile -u dendrite -f touch /test" 17:17:35 nimaje: i already asked in the forum, apparently it’s a thing right now that it just doesn’t build for some people for mysterious reasons, but since there's a binary package for firefox now i can survive until it is fixed 17:19:36 Hello. how do i use truss to understand what arduino IDE uses to flash the microcontroller? 17:21:30 # truss /usr/local/bin/arduino 17:21:46 what else can help? i can't see nothing with avrdude 17:27:32 skyenosaur: hm, well, not building because of oom can happen for some of the bigger ports, but other build failures like missing dependencies shouldn't happen and should be properly investigated (build failures because of unclean environments shouldn't happen too, but are annoying to fix because about everything can be diffrent between a clean and an unclean environment, but normally that results 17:27:34 in building to much, like some feature autoactivating, because the required lib was found) 17:28:13 nimaje: oh it fails because of a linker error, but there's already a bugzilla on this 17:33:04 hm, do you mean bug 256099? 17:33:06 256099 – lang/rust: Reduce memory usage/pressure https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=256099 17:42:28 nimaje: no i mean this one https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274658 (though i don't think it has anything to do with the perl version) 17:42:30 Title: 274658 – lang/rust fails to build after upgrading Perl to 5.36 17:46:26 so you have that note: ld: error: unable to find library -lzlibstatic too? 17:48:06 nimaje: exactly. i looked around and found a package called lzlib and installed but no change. 17:50:36 i'm just trying again so i can offer a full build log to the person who asked but i takes a whiiiile since the error happens after the actual build 17:57:10 that -l instructs the linker to link against the named libary, so it tries zlibstatic, but no idea if it is because of an unclean env or some other issue, rust built fine for me and I can't find zlibstatic in the build log, but it could be that the build log isn't verbose enought 18:10:13 nimaje: .... i think actually it has to do with the perl version because after i installed the .36 per package now it says it FOUND the libzlib. its still building so idk if its gonna go through but this looks much more promising 18:10:44 now i am full of questions like "why on earth do i need a specific perl version to build rust" 18:14:14 never mind it still errors out 18:14:20 would have been too easy 22:34:37 Hi community. I found this on the web about OpenSSL (https://www.phoronix.com/news/OpenSSL-3.1-Released). Would it be better to upgrade the OpenSSL version of the base system to get all these improvements and performance? 22:34:38 Title: Linux Hardware Reviews & Performance Benchmarks, Open-Source News - Phoronix