Re: [PATCH] bug in bb's internal libpwdgrp

2015-02-19 Thread tito
On Wednesday 18 February 2015 17:11:33 tito wrote: Hi, while experimenting with a modified version of deluser.c I've hit a bug in libpwdgrp. The attached drop in replacement for deluser.c triggers the bug if compiled with bb's libpwdgrp and instead works correctly with glibc. To reproduce:

Re: [PATCH] bug in bb's internal libpwdgrp

2015-02-19 Thread Denys Vlasenko
On Thu, Feb 19, 2015 at 9:04 PM, tito farmat...@tiscali.it wrote: On Wednesday 18 February 2015 17:11:33 tito wrote: while experimenting with a modified version of deluser.c I've hit a bug in libpwdgrp. The attached drop in replacement for deluser.c triggers the bug if compiled with bb's

Re: Java JDK installation

2015-02-19 Thread Denys Vlasenko
On Thu, Feb 19, 2015 at 12:42 AM, Camil Staps i...@camilstaps.nl wrote: Dear experts, I'm having problems installing the Java JDK in a busybox (which is in an LXC container on an Ubuntu Server 14.04). In a web application I'm developing, users will be able to upload java code and I will

Re: ntpdate-like functionality in ntpd

2015-02-19 Thread Denys Vlasenko
On Wed, Feb 18, 2015 at 12:30 PM, Sven-Göran Bergh sgb-list+busy...@systemaxion.se wrote: 1. Run something such as ntpdate which sets an approximate time quickly, but that also terminates quickly if there is no network connectivity or NTP server does not respond 2. As soon as this is done,

Re: DHCPv6 not working

2015-02-19 Thread Denys Vlasenko
On Wed, Feb 18, 2015 at 9:59 AM, Karthikeyan M karthik.lib...@gmail.com wrote: Dear All We are facing issues in getting DHCPv6 working with udhcpc6. We first started seeing issue with busy box v1.21.1 where the tool was issuing bootp protocol later we found out it's bug in the udhcpc6 tool

Re: [PATCH, RFC] wget is appending instead of replacing with --header

2015-02-19 Thread Denys Vlasenko
On Wed, Feb 18, 2015 at 9:51 PM, Bernhard Reutner-Fischer rep.dot@gmail.com wrote: On February 18, 2015 8:43:11 PM GMT+01:00, Denys Vlasenko vda.li...@googlemail.com wrote: Better ideas? Denys, is one of this variants good enough to apply as is for now? I applied

Re: Bug in the deluser applet

2015-02-19 Thread Laszlo Papp
From b03ad793d1188148953fa280dda672229b9a6524 Mon Sep 17 00:00:00 2001 From: Laszlo Papp laszlo.p...@polatis.com Date: Wed, 18 Feb 2015 15:20:58 + Subject: [PATCH] Delete the user from all the groups for user deletion --- libbb/update_passwd.c | 57

Re: DHCPv6 not working

2015-02-19 Thread Karthikeyan M
Hi Vladislav Thanks a lot for those links. This sure looks promising. Will try this out and get back in case of any queries. With regards M Karthikeyan On Thu, Feb 19, 2015 at 9:54 PM, Vladislav Grishenko themi...@mail.ru wrote: Hi, For embedded linux we’re using own udhcp6c patches for

Re: DHCPv6 not working

2015-02-19 Thread Karthikeyan M
Dear Denys Thanks a lot for pointing that out and for the quick response. We totally missed that :( We saw git log comments about the BOOTP issue and fixes for that and we assumed that this is a working module. Do you have any info on which module we can use for achieving DHCPv6 under embedded

RE: DHCPv6 not working

2015-02-19 Thread Vladislav Grishenko
Hi, For embedded linux we’re using own udhcp6c patches for busybox ported from wide-dhcp client Refer https://code.google.com/p/wl500g/source/browse/trunk/busybox/320-dhcp6c.patch and noted related patches near around. Also, take a look at https://github.com/sbyx/odhcp6c, it’s quite good

Re: Java JDK installation

2015-02-19 Thread Camil Staps
Thanks for your reply. Another user of this mailing list already answered my question and fixed the problem. The details are found here: http://stackoverflow.com/questions/11808829/jre-1-7-returns-java-lang-noclassdeffounderror-java-lang-object I think he forgot to CC the group. Thanks though!

Re: Bug in the deluser applet

2015-02-19 Thread Laszlo Papp
On Wed, Feb 18, 2015 at 3:37 PM, Laszlo Papp lp...@kde.org wrote: Actually, the locking and swapping logic would be common anyway which already resides in update_passwd, so if that reusable component is not moved to a separate function to be reused, we could use put our conditional magic into

Re: Bug in the deluser applet

2015-02-19 Thread tito
On Thursday 19 February 2015 17:56:27 you wrote: On Wed, Feb 18, 2015 at 3:37 PM, Laszlo Papp lp...@kde.org wrote: Actually, the locking and swapping logic would be common anyway which already resides in update_passwd, so if that reusable component is not moved to a separate function to be

Re: Bug in the deluser applet

2015-02-19 Thread Laszlo Papp
On Thu, Feb 19, 2015 at 4:56 PM, Laszlo Papp lp...@kde.org wrote: On Wed, Feb 18, 2015 at 3:37 PM, Laszlo Papp lp...@kde.org wrote: Actually, the locking and swapping logic would be common anyway which already resides in update_passwd, so if that reusable component is not moved to a separate