Displaying 20 results from an estimated 4000 matches similar to: "Desktop files change?"
2000 Jul 05
1
NIS+ trouble
I'm a little less new to samba now - but having a heck of a time
getting authentication to work. I'm running NIS+, configured samba
with --with-nisplus --with-nisplus-home and --with-automount.
Does anyone have some good nis/samba references? I'm striking
out.
The smbpasswd file *does* have to become smbpasswd.org_dir for
samba to work. I first created the smbpasswd file using
2000 Jul 14
1
Clarity on using SAMBA and Mapping to a Sun Server
My response is below.
> -----Original Message-----
> From: Gerald Carter [SMTP:gcarter@valinux.com]
> Sent: Wednesday, July 12, 2000 12:29 PM
> To: Hawks, Steven L
> Cc: Multiple recipients of list SAMBA
> Subject: Re: Can Samba be Installed on a Solaris 2.6 operating
> system?
>
> "Hawks, Steven L" wrote:
> >
> > Can Samba be Installed on a
2006 Nov 29
2
random binary trees in R
Hello!
I wish to generate random binary trees in R.
Unfortunately recursive code like:
t <- function(p)
{
list(ifelse(runif(1)<p,t(p),0), ifelse(runif(1)<p,t(p),0))
}
does not seem to work. Has anyone ever
performed such a simulation? I would like
to see their code. Maybe this is not feasible
in R. Please e-mail me at the below address
(since I am not yet a subscriber to this
2003 Feb 05
2
Minor races in sftp-server.c
There are a couple of races in sftp-server as this patch shows:
--- sftp-server.c 28 Jan 2003 18:06:53 -0000 1.1.1.2
+++ sftp-server.c 5 Feb 2003 19:19:42 -0000
@@ -832,19 +832,22 @@
process_rename(void)
{
u_int32_t id;
- struct stat st;
char *oldpath, *newpath;
- int ret, status = SSH2_FX_FAILURE;
+ int status;
id = get_int();
oldpath = get_string(NULL);
newpath = get_string(NULL);
2010 Nov 13
2
[PATCH -next] xen: fix header export to userspace
From: Randy Dunlap <randy.dunlap at oracle.com>
scripts/headers_install.pl prevents "__user" from being exported
to userspace headers, so just use compiler.h to make sure that
__user is defined and avoid the error.
unifdef: linux-next-20101112/xx64/usr/include/xen/privcmd.h.tmp: 79: Premature EOF (#if line 33 depth 1)
Signed-off-by: Randy Dunlap <randy.dunlap at
2010 Nov 13
2
[PATCH -next] xen: fix header export to userspace
From: Randy Dunlap <randy.dunlap at oracle.com>
scripts/headers_install.pl prevents "__user" from being exported
to userspace headers, so just use compiler.h to make sure that
__user is defined and avoid the error.
unifdef: linux-next-20101112/xx64/usr/include/xen/privcmd.h.tmp: 79: Premature EOF (#if line 33 depth 1)
Signed-off-by: Randy Dunlap <randy.dunlap at
2010 Nov 13
2
[PATCH -next] xen: fix header export to userspace
From: Randy Dunlap <randy.dunlap at oracle.com>
scripts/headers_install.pl prevents "__user" from being exported
to userspace headers, so just use compiler.h to make sure that
__user is defined and avoid the error.
unifdef: linux-next-20101112/xx64/usr/include/xen/privcmd.h.tmp: 79: Premature EOF (#if line 33 depth 1)
Signed-off-by: Randy Dunlap <randy.dunlap at
2007 Feb 20
1
contextstack overflow
Hello!
I written several implementations in R of R?my's algorithm for
generating random ordered strictly binary trees on 2n+1 vertices.
One implementation involves manufacturing character strings like:
"X <- list(0,list(0,0))"
for the case n=2. If I perform the following two steps:
cmd <- "X <- list(0,list(0,0))"
eval(parse(text=cmd))
then X becomes a true
2008 Jul 14
1
applying complex functions by groups
Hi,
I have a matrix that is indexed by groups and looks something like this:
1 1 2
1 2 1
.
.
.
2 1 1
2 1 2
2 NA 1
.
.
.
3 1 NA
3 2 NA
etc.
The first column is the group variable and I would like to apply categorical data imputation functions to the other two columns, doing so by groups. I have tried APPLY, BY and SPLIT, but have not had much luck getting it to work. I wonder if anyone has
2002 Oct 15
1
3.4p1 Error on Tru64 Unix - cannot set login uid
Hi,
I have recently loaded Openssh 3.4p1 on an Tru64 Unix 5.1A system.
I followed the installation instructions described in INSTALL, essentially
using all default settings, and it went throught without any obvious errors.
I can then use the root account to initiate outbound and inbound ssh calls,
and can log on without any problems.
The trouble is that when I try to use ssh to log in (from a
2002 Jul 25
3
[PATCH] prevent users from changing their environment
We have a system on which users are given a very restricted environment
(their shell is a menu) where they should not be able to run arbitrary
commands. However, because their shell is not statically linked, ld.so
provides a nice clutch of holes for them to exploit. The patch below
adds a new configuration option to sshd which quashes their attempts
to set LD_PRELOAD etc. using ~/.ssh/environment
2002 Jun 26
5
[PATCH] improved chroot handling
There are a couple of niggles with the sandboxing of the unprivileged
child in the privsep code: the empty directory causes namespace pollution,
and it requires care to ensure that it is set up properly and remains set
up properly. The patch below (against the portable OpenSSH, although the
patch against the OpenBSD version is very similar) replaces the fixed
empty directory with one that is
2002 Aug 13
1
[PATCH] global port forwarding restriction
Here's another patch for people providing ssh access to restricted
environments.
We allow our users to use port forwarding when logging into our mail
servers so that they can use it to fetch mail over an encrypted channel
using clients that don't support TLS, for example fetchmail. (In fact,
fetchmail has built-in ssh support.) However we don't want them connecting
to other places
2002 Jun 26
1
privilege separation breaks dns lookups
When the unprivileged child has chrooted it can no longer open
/etc/resolv.conf, so if the resolver hasn't yet initialized itself then
dns lookups will not be possible. This is unfortunately what normally
happens, but sshd falls back gracefully.
There are a couple of wrinkles: the resolver will typically try talking
to a nameserver on the local host by default (using INADDR_ANY rather
than
2007 Jun 18
1
[PATCH] incorrect #include in ssh-rand-helper.c
--- ssh-rand-helper.c.orig Mon Jun 18 16:48:13 2007
+++ ssh-rand-helper.c Mon Jun 18 16:47:32 2007
@@ -31,7 +31,7 @@
#include <sys/socket.h>
#include <stdarg.h>
-#include <stddef.h>
+#include <string.h>
#include <netinet/in.h>
#include <arpa/inet.h>
Tony.
--
f.a.n.finch <dot at dotat.at> http://dotat.at/
SHANNON ROCKALL: EAST OR NORTHEAST
2004 Aug 09
1
race condition bugs
We're using rsync to update the tables on our email relays, and very
occasionally we get an error in the logs saying that a table has the wrong
permissions. This is because of race conditions in finish_transfer() which
mean that it does not update files atomically. This makes rsync not
entirely safe to use in our situation, where the files being synced are
frequently opened for short periods
2011 Dec 22
1
CentOS-announce Digest, Vol 82, Issue 13
Send CentOS-announce mailing list submissions to
centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When
2013 Mar 15
0
CentOS-announce Digest, Vol 97, Issue 8
Send CentOS-announce mailing list submissions to
centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When
2014 Feb 06
0
CentOS-announce Digest, Vol 108, Issue 4
Send CentOS-announce mailing list submissions to
centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When
2007 Aug 03
1
race condition with ControlMaster=auto
There is a race in the setup of the ControlMaster socket in auto mode, as
illustrated by the following command line:
ssh -oControlMaster=auto -oControlPath=sock localhost 'sleep 1; echo 1' &
ssh -oControlMaster=auto -oControlPath=sock localhost 'sleep 2; echo 2' &
Both of the commands will try to start up as a control client, find that
sock does not exist, and switch into