Displaying 20 results from an estimated 58 matches for "mislabel".
Did you mean:
islabel
2003 Aug 15
6
plot.lm mislabels points with na.exclude (PR#3750)
R 1.7.1 on Windows XP
The "normal Q-Q plot" produced by plot.lm() mislabels points
when the model is fitted using na.action=na.exclude. Example:
x <- 1:50
y <- x + rnorm(50)
y[c(5,10,15)] <- NA # insert some NA's
y[40] <- 50 # add an outlier
plot(lm(y ~ x, na.action=na.omit)) # outlier correctly labeled in all
#...
2018 Jul 05
2
shellinabox
hi guys,
shellinabox, do you use it?
I in pretty vanilla setup get selinux denials and cannot login.
Selinux says:
#============= unconfined_service_t ==============
#!!!! The file '/usr/bin/bash' is mislabeled on your system.
#!!!! Fix with $ restorecon -R -v /usr/bin/bash
allow unconfined_service_t unconfined_t:process transition;
but that does not seem right to me, to allow such a transition, right?
many thanks, L.
2011 Mar 14
1
AOV() may misslabel random effects.
Greetings,
The aov() function may mislabel
the random effects as in the example below:
Has anybody else noticed this?
Cordially,
Giles Crane, MPH, ASA, NJPHA
gilescrane at verizon.net
> m2
Call:
aov(formula = y ~ ap + pe + Error(ju), data = d)
Grand Mean: 77.50667
Stratum 1: ju
Terms:
ap
Sum of Squares 4322...
2007 Mar 29
1
Centos 3.6 or 3.7 CD isos x86_64
Hi - can someone please tell me where I can
find Centos 3.6 or Centos 3.7 for x86_64?
On the mirrors, there are directories labeled
3.6 and 3.7 but it's appears to be a lie.
All the directories on the mirrors appear to be
linked to 3.8 (and hence are mislabeled.)
Thanks!
-- Ken
2009 Sep 14
4
Contribution to wiki: nagios incompatibility with centos 5.2
...location: http://wiki.centos.org/HowTos/Nagios
content: A security feature of centos 5.2 SELinux prevents the access
from the apache httpd server to the needed /var/nagios files. The error
manifests itself in the /var/log/messages as "SELinux is preventing the
tac.cgi from using potentially mislabeled files ./status.dat (var_t)". A
workaround is to execute the command: chcon -R httpd_sys_content_t
/var/nagios
Please grant me access
Regards
Martin Boel
2017 Apr 25
2
NOT Solved - Re: SELinux policy to allow Dovecot to connect to Mysql
...d_t;
class unix_stream_socket connectto;
class file { getattr open read };
class dir read;
}
#============= dovecot_t ==============
allow dovecot_t mysqld_etc_t:dir read;
allow dovecot_t mysqld_etc_t:file { getattr open read };
#!!!! The file '/var/lib/mysql/mysql.sock' is mislabeled on your system.
#!!!! Fix with $ restorecon -R -v /var/lib/mysql/mysql.sock
#!!!! This avc can be allowed using the boolean
'daemons_enable_cluster_mode'
allow dovecot_t mysqld_t:unix_stream_socket connectto;
What do these 3 comments mean? I don't think I want to restorecon for a...
2009 Jan 12
1
Deliver *sometimes* delivers via /tmp?
...BBC57D:
to=<kim+pg at alleroedderne.adsl.dk>, relay=local, delay=1.3,
delays=0.1/0.18/0/1, dsn=4.3.0, status=deferred (temporary failure)
Here are the lines from selinux once in permissive mode:
Jan 6 16:44:28 jukebox setroubleshoot: SELinux is preventing the
deliver from using potentially mislabeled files (./tmp). For complete
SELinux messages. run sealert -l 4b6a49fd-c1f8-40f9-98fa-dfe971719c69
Jan 6 16:44:29 jukebox setroubleshoot: SELinux is preventing the
deliver from using potentially mislabeled files (./tmp). For complete
SELinux messages. run sealert -l 19445c54-9537-45ec-8f3e-771836...
2020 Sep 24
2
Re: [common PATCH 3/3] mlcustomize: do not relabel if not enforcing (RHBZ#1828952)
...In permissive mode, all these situation are logged in the audit log,
> yes, but they cause no blocks nor errors.
>
> > It's also fine for an administrator to
> > switch a system to permissive and then back to enforcing without
> > relabelling or rebooting.
>
> A mislabelled /etc/passwd is still read and used fine in permissive
> mode. Switch back from permissive to enforcing without a relabelling
> is generally not a good idea, especially after the system ran for a
> lot of time after the switch to permissive.
It's seems true from what you wrote above...
2017 Sep 12
2
"homes" vs "home"
...ares:
\\server\<username<http://>>
\\server\homes<http://>
Both of which point to the user directory. Is it possible to have a third:
\\server\home<http://>
Which does the same? \\server\homes<http://> is great and all, but I feel that the plural is a bit of a mislabel.
Shak
2005 Oct 27
0
Column names in qr() and chol() (PR#8258)
...haves in the
same manner (it would perhaps be nice if the qr help page made that
clear in the same way that the chol() help page does).
The small bug is that column names are not permuted in the same way, so
that, after permuting the columns of Q%*%R so that it is equal to the
input matrix, it is mislabelled. The same small bug is present in
chol() when pivoting is switched on.
It's a minor matter but, perhaps, easily fixed. I think one line which
reordered the column names of the $qr list element of the object
returned by qr() would fix things (and similarly for chol)
Example:
> A <-...
2018 Apr 25
0
compiler-rt incorrect for this udivmodti4 case?
...t;
> This corresponds to the inputs
> a=152313999999999991610955792383
> b=10000000000000000000
>
> The correct result of division is
> r=15231400000
> q=9999991610955792383
>
> However compiler-rt gives:
> r=15231399999
> q=9999991610955792383
Are your results mislabeled? Integer division rounds towards zero, so the correct division result is 15231399999, which you have as the compiler-rt result.
– Steve
1999 May 27
1
Factor structures not preserved after dump/dput (PR#200)
...#39;c','d','e'))
b <- a[3:5]
dput(b,'b.data')
new.b <- dget('b.data')
Then b is not the same as new.b:
> b
[1] c d e
Levels: a b c d e
> new.b
[1] a b c
Levels: a b c d e
This seems to be a very serious bug. It can make one to
mislabel treatments: a very emabarassing (and potentially
disastrous) mistake. The reason for this bug seems to
lie in a way in which structure() treats factor structures.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.a...
2018 Apr 25
2
compiler-rt incorrect for this udivmodti4 case?
Here is my test case:
#include <stdio.h>
int main(int argc, char **argv) {
tu_int a = (tu_int)0x1ec273014 << 64 | 0xff7377ffffffffffuLL;
tu_int b = (tu_int)0x8ac7230489e80000uLL;
tu_int r;
tu_int q = __udivmodti4(a, b, &r);
utwords qt;
qt.all = q;
utwords rt;
rt.all = r;
fprintf(stderr, "q=0x%.16llX%.16llX\nr=0x%.16llX%.16llX\n",
2007 Dec 17
2
Digest Subcriber needs help with SELinux file context setting
...start httpd I get this:
--->
# service httpd start
Starting httpd: [FAILED]
Checking /var/log/messages I see this:
# tail /var/log/messages
Dec 17 16:08:01 inet01 setroubleshoot:
SELinux is preventing the /usr/sbin/httpd from using potentially
mislabeled files trac-rewrite.log (etc_t).
For complete SELinux messages. run sealert -l
cfc477ae-0443-44f7-9bd3-4ede69b03a57
Following the suggested remedy I do this:
# sealert -l cfc477ae-0443-44f7-9bd3-4ede69b03a57
Summary
SELinux is preventing the /usr/sbin/httpd from using potentially
misla...
2011 Aug 19
1
Lattice help: Dotplot
...each
datapoint has a unique value on the y-axis (integers), but once I try to
change the y-axis tick labels to the list containing the names of each
datapoint (characters), it lists only the first 10 names for all 6 graphs --
that is, it repeats the names, so they are no longer unique and are also
mislabeled.
If I change the relation to "same", the correct datapoints are plotted for
their appropriate group and hence appropriate plot, and every point is
labeled correctly, but because only about 10 data points apply to each
group, I have 6 plots with about 10 points each but all 40 names li...
2010 Sep 26
1
Bugzilla 3.6.2 + sendmail + SELinux
...ode, mail sending from Bugzilla is
working properly.
Has anybody got recent Bugzilla to work with SELinux on CentOS?
Thanks in advance!
Mathieu
--------------------------------------------------------------------------------
Summary:
SELinux is preventing the sendmail from using potentially mislabeled files
./spool (var_spool_t).
Detailed Description:
SELinux has denied the sendmail access to potentially mislabeled files ./spool.
This means that SELinux will not allow httpd to use these files. Many third
party apps install html files in directories that SELinux policy cannot predict.
These d...
2020 Sep 24
1
Re: [common PATCH 3/3] mlcustomize: do not relabel if not enforcing (RHBZ#1828952)
...> > > yes, but they cause no blocks nor errors.
> > >
> > > > It's also fine for an administrator to
> > > > switch a system to permissive and then back to enforcing without
> > > > relabelling or rebooting.
> > >
> > > A mislabelled /etc/passwd is still read and used fine in permissive
> > > mode. Switch back from permissive to enforcing without a relabelling
> > > is generally not a good idea, especially after the system ran for a
> > > lot of time after the switch to permissive.
> >
>...
2017 Apr 26
6
NOT Solved - Re: SELinux policy to allow Dovecot to connect to Mysql
...M, Robert Moskowitz wrote:
>> This made the same content as before that caused problems:
>
> I still don't understand, exactly. Are you seeing *new* problems
> after installing a policy? What are the problems?
>
>> #!!!! The file '/var/lib/mysql/mysql.sock' is mislabeled on your system.
>> #!!!! Fix with $ restorecon -R -v /var/lib/mysql/mysql.sock
>> #!!!! This avc can be allowed using the boolean
>> 'daemons_enable_cluster_mode'
>> allow dovecot_t mysqld_t:unix_stream_socket connectto;
>>
>> What do these 3 comments...
2006 Feb 13
1
MinGW and the ld bug
...pley found and corrected a bug in MinGW's
ld.exe, see http://www.murdoch-sutherland.com/Rtools/. Thanks for
this. I wonder if this is the same bug that cause my problems. I
have tiny toy package with C code that installs perfectly on R Version
2.2.1 beta (2005-12-18 r36792) [this version was mislabelled "beta"
the first few hours on CRAN when the stable 2.2.1 version first came
out]. However, when I try to install the same on R Version 2.2.1
Patched (2006-02-09 r37305) as well as R Version 2.3.0 Under
development (unstable) (2006-02-02 r37243), I get the following error:
C:\Document...
2005 Feb 04
12
SW 2.2.0: 4 interface system, log reports impossible "IN=" and DROPS
This one is really throwing me. Thanks in advance for
any advice.
I''m working on a 4 port firewall system. It is
running heartbeat+drbd.
Primary box looks like this:
eth0 -> net/cicso router
192.168.144.2/29
eth1 -> drbd/heartbeat crossover cable
192.168.254.253/30
eth2 -> dmz
192.168.144.10/24
eth3 -> loc
192.168.101.2/24
The IP''s