Displaying 20 results from an estimated 4000 matches similar to: "Wine broken on Samba shares due to colon ":" filenames"
2009 Jun 22
2
Samba mounted home shares will break many applications
I didn't get any responses to my previous post "Wine broken on Samba
shares due to colon ":" filenames" so I am re-posting with a subject to
reflect what I now believe to the the root cause of my problems.
I recently changed from mounting my home directory using NFS to mounting
with CIFS via the pam module pam_mount.so. It turns out that I am having
problems with many
2006 Jun 29
1
Samba PDC + ACL : default ACLs ignored on directory
Hi all,
I use Debian Sarge and Samba 3.0.22 with ACLs. The server is a PDC. I
have about 70 clients workstation running both Windows XP SP1 and SP2.
All works pretty good, all but the directory copy, wich forget ACLs in a
particular case :
When a client copy a local directory on a samba share, the defaults ACLs
aren't applied. But this problem comes only when the client local
directory
2012 Jun 06
2
[LLVMdev] Compile-rt throw error undeclared identifier 'O_CLOEXEC'
Hi, Chatsiri!
> ---------- Forwarded message ----------
> From: Chatsiri Ratana <insiderboy at gmail.com>
> Date: Wed, Jun 6, 2012 at 2:15 PM
> Subject: [LLVMdev] Compile-rt throw error undeclared identifier 'O_CLOEXEC'
> To: llvmdev at cs.uiuc.edu
>
>
> Hello All,
>
> I build LLVM source code version 3.2 from SVN repository. After I
> build
2012 Jun 06
0
[LLVMdev] Compile-rt throw error undeclared identifier 'O_CLOEXEC'
On Wed, Jun 6, 2012 at 5:33 PM, Alexey Samsonov <samsonov at google.com> wrote:
> Hi, Chatsiri!
>
>
>> ---------- Forwarded message ----------
>> From: Chatsiri Ratana <insiderboy at gmail.com>
>> Date: Wed, Jun 6, 2012 at 2:15 PM
>> Subject: [LLVMdev] Compile-rt throw error undeclared identifier
>> 'O_CLOEXEC'
>> To: llvmdev at
2006 Jul 10
1
sometimes, roaming profile is not found
Hi,
I use samba 3.0.22 on Debian Sarge as PDC for windows XP SP1 and SP2.
Sometimes, users get the message "Windows cannot found the roaming
profile on server so user will get a default profile". (sorry, it's not
the official message, I had to translate, because I get the message in
french) This error comes only if user log in quickly after the boot. If
they wait a little
2012 Jun 06
0
[LLVMdev] Compile-rt throw error undeclared identifier 'O_CLOEXEC'
Hello All,
I build LLVM source code version 3.2 from SVN repository. After I
build source code of LLVM include "compiler-rt"(Compiler-rt at revision
158057.
) and "clang" are represent an error as below.
make[5]: Entering directory
`/san01/home/chatsiri/workspacecpp/llvm-svn/projects/compiler-rt'
COMPILE: clang_linux/asan-x86_64/x86_64:
2017 Dec 14
0
help with recursive function
You seem to have a typo at this expression (and some others like it)
Namely, you write
any(!dat2$norm_sd) >= 1
when you possibly meant to write
!( any(dat2$norm_sd) >= 1 )
i.e. I think your ! seems to be in the wrong place.
HTH,
Eric
On Thu, Dec 14, 2017 at 3:26 PM, DIGHE, NILESH [AG/2362] <
nilesh.dighe at monsanto.com> wrote:
> Hi, I need some help with running a
2017 Dec 14
0
help with recursive function
Eric: Thanks for taking time to look into my problem. Despite of making the change you suggested, I am still getting the same error. I am wondering if the logic I am using in the stopifnot and if functions is a problem.
I like the recursive function to stop whenever the norm_sd column has zero values that are above or equal to 1. Below is the calclp function after the changes you suggested.
2017 Dec 14
0
help with recursive function
The message is coming from your stopifnot() condition being met.
On Thu, Dec 14, 2017 at 5:31 PM, DIGHE, NILESH [AG/2362] <
nilesh.dighe at monsanto.com> wrote:
> Hi, I accidently left out few lines of code from the calclp function.
> Updated function is pasted below.
>
> I am still getting the same error ?Error: !(any(data1$norm_sd >= 1)) is
> not TRUE?
>
>
>
2006 Jul 04
1
samba 3.0.22 default ACL issue
Hi,
I use samba 3.0.22 as PDC on Debian with workstations under windows XP
SP1 and SP2.
I use ACLs to have a fine grained access rules.
When I copy a directory from a client to a samba share, default ACLs are
forgiven.
exemple : after I copy the directory A on the samba share :
getfacl A/
# file: A/
# owner: user1
# group: sambausers
user::rwx
group::---
other::---
default:user::rwx
2017 Dec 14
1
help with recursive function
Your code contains the lines
stopifnot(!(any(data1$norm_sd >= 1)))
if (!(any(data1$norm_sd >= 1))) {
df1 <- dat1
return(df1)
}
stop() "throws an error", causing the current function and all functions in
the call
stack to abort and return nothing. It does not mean to stop now and return
a result.
Does the function give
2017 Dec 14
2
help with recursive function
Hi, I need some help with running a recursive function. I like to run funlp2 recursively.
When I try to run recursive function in another function named "calclp" I get this "Error: any(!dat2$norm_sd) >= 1 is not TRUE".
I have never built a recursive function before so having trouble executing it in this case. I would appreciate any help or guidance to resolve this issue.
2017 Dec 14
2
help with recursive function
My own typo ... whoops ...
!( any(dat2$norm_sd >= 1 ))
On Thu, Dec 14, 2017 at 3:43 PM, Eric Berger <ericjberger at gmail.com> wrote:
> You seem to have a typo at this expression (and some others like it)
>
> Namely, you write
>
> any(!dat2$norm_sd) >= 1
>
> when you possibly meant to write
>
> !( any(dat2$norm_sd) >= 1 )
>
> i.e. I think your !
2017 Dec 14
2
help with recursive function
Hi, I accidently left out few lines of code from the calclp function. Updated function is pasted below.
I am still getting the same error ?Error: !(any(data1$norm_sd >= 1)) is not TRUE?
I would appreciate any help.
Nilesh
dput(calclp)
function (dataset)
{
dat1 <- funlp1(dataset)
recursive_funlp <- function(dataset = dat1, func = funlp2) {
dat2 <- dataset %>%
2017 Dec 14
0
help with recursive function
Eric: I will try and see if I can figure out the issue by debugging as you suggested. I don?t know why my code after stopifnot is not getting executed where I like the code to run the funlp2 function when the if statement is TRUE but when it is false, I like it to keep running until the stopifnot condition is met.
When the stopifnot condition is met, I like to get the output from if statement
2010 Dec 17
1
{SOLVED} Re: Google Picasa / GNOME / how to launch application?
On Wed, Dec 15, 2010 at 11:41 PM, Dejan <centos at bektchiev.net> wrote:
> On Wed, Dec 15, 2010 at 06:47, Lanny Marcus <lmmailinglists at gmail.com> wrote:
>> I had installed Picasa,apparently properly, but am unable to launch
>> the application. In the GNOME Desktop menu, Applications > Graphics >
>> Picasa > Picasa it does not launch. Reinstalled it and
2007 Nov 06
3
Installing Google's Picasa for Linux on CentOS 5
I downloaded the .rpm file from Google and am trying to install
Picasa for Linux on CentOS 5. I get the below error. Is this because
I'm using SELinux or because of something else? I found a small
Picasa folder in /opt (24 items, 143.7 KB) but it seems to end there.
Picasa is one of the programs my wife uses on Windows. TIA!
[root at dell2400 lanny]# rpm -Uvh picasa-2.2.2820-5.i386.rpm
2010 Dec 15
3
Google Picasa / GNOME / how to launch application?
I had installed Picasa,apparently properly, but am unable to launch
the application. In the GNOME Desktop menu, Applications > Graphics >
Picasa > Picasa it does not launch. Reinstalled it and the same issue.
Reinstalling:
picasa i386 2.7.3736-15 google
It is installed in /opt/picasa
Box is CentOS 5.5 (32 bit) fully updated.
How can I get this app to
2017 Dec 14
3
help with recursive function
If you are trying to understand why the "stopifnot" condition is met you
can replace it by something like:
if ( any(dat2$norm_sd >= 1) )
browser()
This will put you in a debugging session where you can examine your
variables, e.g.
> dat$norm_sd
HTH,
Eric
On Thu, Dec 14, 2017 at 5:33 PM, Eric Berger <ericjberger at gmail.com> wrote:
> The message is coming from
2010 Aug 26
1
smbd PANIC starting PAM
Happened to be tail'ing <machine>.log during a login session from XP
client and notice the PANIC in the output. Login proceeded as usual(?)
so the following snippet of the log is just informational to the
developers. Let me know if you need additional info.
Bob
--bs
[2010/08/25 21:34:21.689597, 4] auth/pampass.c:472(smb_pam_start)
smb_pam_start: PAM: Init user: rwsmith
[2010/08/25