Displaying 20 results from an estimated 1000 matches similar to: "supermin (chroot+systemd.resolved) - network cannot be configured on Ubuntu"
2019 Apr 16
0
Re: supermin (chroot+systemd.resolved) - network cannot be configured on Ubuntu
On Mon, Apr 15, 2019 at 10:52:40AM +0100, Ioanna Alifieraki wrote:
> Hi,
>
> I am facing the following bug while runnign guestfish on Ubuntu Bionic
> onward,
> where the network cannot be configured :
> https://bugs.launchpad.net/ubuntu/+source/supermin/+bug/1824236
>
> The actual problem is the combination of (a) supermin and the fact that it
> does chroot
> and
2019 Apr 18
2
[PATCH] appliance: Remove /etc/dhcp/dhclient-enter-hooks.d/resolved.
Workaround for Ubuntu which uses this script to try to start a systemd
service. That won't work because systemd is not used inside the
appliance. See:
https://bugs.launchpad.net/ubuntu/+source/supermin/+bug/1824236
Thanks: Ioanna Alifieraki
---
appliance/init | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/appliance/init b/appliance/init
index 4f2b55822..b1c4d09ea
2019 Apr 18
2
Re: [PATCH] appliance: Remove /etc/dhcp/dhclient-enter-hooks.d/resolved.
I had tried this approach, to add /etc/dhcp/dhclient-enter-hooks.d/resolved
to excludefiles, however it didn't work.
As far as I know, this hook is included in the base image and according
to [1], the current implementation does not apply excludefiles to the base
image.
Jo
[1]
https://github.com/libguestfs/supermin/blob/b2401285cd3e3d42006fc164ef1f046cc35a50c4/src/mode_build.ml#L137
On
2019 May 29
2
Re: [PATCH] appliance: Remove /etc/dhcp/dhclient-enter-hooks.d/resolved.
Hi,
Is there any chance you will merge the suggested patch?
Thanks,
Jo
On Thu, Apr 18, 2019 at 2:01 PM Richard W.M. Jones <rjones@redhat.com>
wrote:
> On Thu, Apr 18, 2019 at 12:17:18PM +0100, Ioanna Alifieraki wrote:
> > I had tried this approach, to add
> /etc/dhcp/dhclient-enter-hooks.d/resolved
> > to excludefiles, however it didn't work.
> > As far as I
2019 Mar 13
2
replication fails
Am 13.03.19 um 11:55 schrieb L.P.H. van Belle via samba:
> Hai,
>
> Ok, so the reboot changed your resolv.conf
> check the timestamp of /etc/resolv.confs
> Write this down.
>
>> So I assume it should point to the own IPv4-IP of DC1 itself,
>> which is .205
> Yes correct.
> After that reboot the server.
> Check the timestamp again and/or did it change?
2009 Oct 08
12
resolv.conf rewritten every reboot. How to figure out who and why?
My machine has a static IP, with dhcp and IPv6 disabled. Every time I
reboot, some process rewrites /etc/resolv.conf, including a comment
about dhcpclient. The only package I have installed that shows up in
"rpm -qa|grep -i dhcp" is dhcpv6-client-1.0.10-16.el5, and nothing in
there is named dhcpclient.
I'd like to figure out what software is rewriting this file and why.
man 5
2019 Mar 13
4
replication fails
Am 13.03.19 um 11:22 schrieb L.P.H. van Belle via samba:
>
> Hi Stefan,
>
> Debian 8 ? 9?
> DC's samba version ?
Deb 9.8, Samba-4.8.9
> Can you post your smb.conf and resolv.conf
>
> If you check with (per server what is the outcome. )
> samba-tool dbcheck
0 errors
> samba-tool dbcheck --cross-nc
Checked 3754 objects (3174 errors)
on the DC1.
where
2019 Apr 18
0
Re: [PATCH] appliance: Remove /etc/dhcp/dhclient-enter-hooks.d/resolved.
On Thursday, 18 April 2019 11:53:39 CEST Richard W.M. Jones wrote:
> Workaround for Ubuntu which uses this script to try to start a systemd
> service. That won't work because systemd is not used inside the
> appliance. See:
>
> https://bugs.launchpad.net/ubuntu/+source/supermin/+bug/1824236
>
> Thanks: Ioanna Alifieraki
> ---
> appliance/init | 4 +++-
> 1
2013 Mar 15
5
Data manipulation
Hello all,
I would appreciate your thoughts on a seemingly simple problem. I have a
database, where each row represent a single record. I want to aggregate this
database so I use the aggregate command :
D<-read.csv("C:\\Users\\test.csv")
attach(D)
by1<-factor(Class)
by2<-factor(X)
W<-aggregate(x=Count,by=list(by1,by2),FUN="sum")
The results I
2018 May 24
2
Manipulation of data.frame into an array
Hello everyone,
Thank you for this. Nonetheless it is not exactly want i need.
I need mydata[[1]] to provide the values for all 3 variables (Y, X1 and X2) of the first imputation only. As it stands it returns the whole database.
Any ideas?
Best,
ioanna
________________________________
From: Bert Gunter <bgunter.4567 at gmail.com>
Sent: 24 May 2018 16:04
To: Ioanna Ioannou
Cc:
2018 May 24
4
Manipulation of data.frame into an array
Hello everyone,
I want to transform a data.frame into an array (lets call it mydata), where: mydata[[1]] is the first imputed dataset...and for each mydata[[d]], the first p columns are covariates X, and the last one is the outcome Y.
Lets assume a simple data.frame:
Imputed = data.frame( X1 = c(1,2,1,2,1,2,1,2, 1,2,1,2,1,2,1,2),
X2 =
2018 May 24
0
Manipulation of data.frame into an array
This is one of those instances where a less superficial knowledge of R's
technical details comes in really handy.
What you need to do is convert the data frame to a single (numeric) vector
for, e.g. a matrix() call. This can be easily done by noting that a data
frame is also a list and using do.call():
## imp is the data frame:
do.call(c,imp)
X11 X12 X13 X14 X15 X16 X17 X18 X19
2013 Apr 08
3
Reshaping a table
Hello all,
I have data in the form of a table:
X Y1 Y2
0.1 3 2
0.2 2 1
And I would like to transform in the form:
X Y
0.1 Y1
0.1 Y1
0.1 Y1
0.1 Y2
0.1 Y2
0.2 Y1
0.2 Y1
0.2 Y2
Any ideas how?
Thanks in advance,
IOanna
[[alternative HTML version deleted]]
2015 Aug 27
2
centos 6 - changing resolv.conf by hand gets overwritten by rebooting
given machine with C6 x86_64 (seen on C 6.6 but also before and probably
still present on C6.7) only 1 interface, there is dhcp on this network
(for kickstarting) but the machines have static ip's, and NO
networkmanager installed
contents of resolv.conf
search some.domain.here
nameserver x.x.x.x #dns1
nameserver y.y.y.y #dns2
change resolv.conf to:
search some.newdomain.here
nameserver
2012 Mar 02
1
Call the Standard Error and t-test probability in linear regression
Hello,
I run a linear regression I get the summary, e.g.:
> summary(lm.r)
Call:
lm(formula = signal ~ conc)
Residuals:
1 2 3 4 5
0.4 -1.0 1.6 -1.8 0.8
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 3.60000 1.23288 2.92 0.0615 .
conc 1.94000 0.05033
2013 May 23
1
FW: Kernel smoothing with bandwidth which varies with x
Hello all,
I would like to use the Nadaraya-Watson estimator assuming a Gaussian
kernel: So far I sued the
library(sm)
library(sm)
x<-runif(5000)
y<-rnorm(5000)
plot(x,y,col='black')
h1<-h.select(x,y,method='aicc')
lines(ksmooth(x,y,bandwidth=h1))
which works fine. What if my data were clustered requiring a bandwidth that
varies with x? How can I do that?
Thanks in
2012 Apr 02
1
Error: (subscript) logical subscript too long
Hello,
I am trying to perform a logistic regression using counts. For example:
cedegren <-
read.table("http://www.cloudstat.org/index.php?do=/attachment/download/id_95
/", header=T)
attach(cedegren)
ced.del <- cbind(sDel, sNoDel)
ced.logr <- glm(ced.del ~ cat + follows + factor(class),
family=binomial("logit"))
This works. However, if I change the family to
2012 Nov 25
1
Issue with using geocode
Hello,
A very simple question but I am stuck. I have an excel file each row is an
address. However, I cannot make geocode read each line and come up with the
latitude longitude. Could you please correct my code?
library(ggmap)
X<-c (2 Afxentiou Ampelokipi Thessaloniki Greece, 2 Afxentiou Ampelokipi
Thessaloniki Greece, 4 Afxentiou Ampelokipi Thessaloniki Greece, 55
Agathonos
2019 Apr 18
0
Re: [PATCH] appliance: Remove /etc/dhcp/dhclient-enter-hooks.d/resolved.
On Thu, Apr 18, 2019 at 12:17:18PM +0100, Ioanna Alifieraki wrote:
> I had tried this approach, to add /etc/dhcp/dhclient-enter-hooks.d/resolved
> to excludefiles, however it didn't work.
> As far as I know, this hook is included in the base image and according
> to [1], the current implementation does not apply excludefiles to the base
> image.
Yes I think that is right. It
2019 May 29
0
Re: [PATCH] appliance: Remove /etc/dhcp/dhclient-enter-hooks.d/resolved.
On Wed, May 29, 2019 at 04:14:06PM +0100, Ioanna Alifieraki wrote:
> Hi,
>
> Is there any chance you will merge the suggested patch?
It's this one right?
https://www.redhat.com/archives/libguestfs/2019-April/msg00129.html
Yes I can push this.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: