similar to: Problem with exclude folders

Displaying 20 results from an estimated 900 matches similar to: "Problem with exclude folders"

2007 Jan 01
1
only ROOT user?
Hi all. I am a total newbie at Samba. I am running Ubuntu 6.06 (Dapper) and have Samba 3.022 installed. I am trying to set it up as a Domain controller (to be a domain server that Windows machines can log into). So far, I can get it to do this, but only with the ROOT account. Any other account and it tells me that the user/password is incorrect or invalid. Below is my smb.conf file. In the
2003 Feb 01
2
Apparent parser problem (PR#2520)
Let me first admit: I am experiencing this bug on a precompiled binary of R for windows, and I know these are not supported. I am not asking for support, but I thought the R developers would want to know about this. # Define: foo.page <- function(x) x # Then, foo.page("a") # actually invokes the pager (!) on object named "a" (if one is defined). # same thing happens
2005 Jul 17
2
DNS SRV
I have added in my zone file; _sip._udp.elmit.com. IN SRV 20 0 5060 vpbx.elmit.com. As I understand it should mean that any sip connection to <anyname>@elmit.com should go to the udp port 5060 at the host vpb.elmit.com. In Asterisk's extensions.conf I have in the context [default] exten => ronald,1,Dial(${PHONE_615},60,tr) exten => ronald,2,Voicemail,u615@office exten =>
2017 Aug 22
3
Winbind with krb5auth for trust users
Hi, I'm having trouble realizing a krb5auth with pam_winbind with trusted domain users (external trust) on our clients. The client is joined to a local domain, which has a "external trust" to a global domain. The following things are working for all users (local and trusted domain): "wbinfo -i" "wbinfo --pam-logon" "wbinfo -a" "kinit"
2017 Aug 22
0
Winbind with krb5auth for trust users
Hai, Whats the os used? The first things i would check. Did you give both servers the nfs/spn. ? The current search order for keytabs to be used for "machine credentials" : <HOSTNAME>$@<REALM> root/<hostname>@<REALM> nfs/<hostname>@<REALM> host/<hostname>@<REALM> root/<anyname>@<REALM> nfs/<anyname>@<REALM>
2012 Jul 21
2
Samba4 unable to find SPN (Kerberos)
Hi, while trying to use Samba4 as KDC for secure NFS (once again) I found something I suspect to be an error: In order for NFS (with krb5) to work it requires a nfs/... principal, so I created one using samba-tool: samba-tool user add nfs-user samba-tool spn add nfs/atom.mydomain.org nfs-user samba-tool domain exportkeytab /etc/krb5.keytab -principal=nfs/atom.mydomain.org After setting up NFS,
2002 Sep 26
3
tcltk - command=function()
hi, just having the idea create a simple tcl/tk gui-dialog for different data-file formats i get starting problems and it would be nice get some tips/tricks from experienced tcl/tk user in R ! tt <- tktoplevel() label.widget <- tklabel(tt,text="Decision Tree GUI") button.widget <- tkbutton(tt,text="Select SPSSFile", command=function()
2005 Aug 24
0
Re: Asterisk and MWI
MessageMelissa - I added the "fromuser=AnyName" to my sip.conf file stations and that, in fact, corrected the problem. The MWI now works flawlessly. I would recommend that Aastra/Sayson pursue this with the Asterisk team so that it is listed as a known issue or to have Asterisk patched to fix it. I will submit a bug on it as well. I'm copying the Users Mailing List on this. For
2004 Mar 24
1
rsync --files-from with symlink in path
Here is what I have been doing with rsync(This is condinced version of the main script that runs): #!/usr/local/bin/bash SSH=/usr/local/bin/ssh RSYNC=/usr/local/bin/rsync SED=/usr/bin/sed USER=vmladmin ROLLLISTDIR=/home/vmladmin/rolllists/ ROLLFILE=${ROLLLISTDIR}rollfile.${CELERITYID} EXCLUDEFILE=${ROLLLISTDIR}rollfile.exclude RSYNC_OPT="-zrc --delete"
2010 Nov 25
4
how to find a row index in a matrix or a data frame ?
Dear all, this looks pretty much a standard problem, but I couldn't find a satisfying and understandable solution. (A) Given a data frame (or matrix), e.g. x <- data.frame(A=c(1, 2, 2), B=c(4, 5, 5)) and a row of this data frame, e.g. r <- c(2, 5) I need to find one row index i (or all such indices) such that r is at the i-th row in x, that is, the
2006 Feb 08
1
Dovecot does not access /var/mail when using Maildir
Hello, I'm running debain on my machine with postfix, squirrelmail and dovecot installed. Everything works fine and I'm able to access my mail via squirrelmail and via Outlook with imap. However I want to create subfolders what is not possible. After reading I discovered that I use mbox and that maildir is needed in order to be able to use subfolders. I have created a Maildir folder with
2001 May 23
2
help: exponential fit?
Hi there, I'm quite new to R (and statistics), and I like it (both)! But I'm a bit lost in all these packages, so could someone please give me a hint whether there exists a package for fitting exponential curves (of the type t --> \sum_i a_i \exp( - b_i t)) on a noisy signal? In fact monoexponential decay + polynomial growth is what I'd like to try. Thanks in advance,
2001 Jun 09
2
r-mode (ESS/XEmacs)
Hello, please excuse me if this is not the appropriate mailing list, but I'll give it a try! I recently switched from using Emacs 20.7.1 to XEmacs 21.4, both on cygwin / MS W2K. On Emacs the ESS 5.1.17 was working well, but now, when calling R from within XEmacs, it first asks for the working directory, then says "R process is not running". The ESS buffer holds the
2007 Jun 01
2
how to extract the maximum from a matrix?
Dear UseRs, I have a very simple question. I have a big matrix (say x) including probabilities (values in (0,1)). I have to store in a list the names of the row and the column where max(x) is located. How can I proceed? Thanks in advance for your assistance! mirko
2006 Jan 23
7
Search functionality and CMS
Hello, I am planning to build a bigger Internet platform and actually evaluating Java EE and Rails. I have a lot of Java experience and I am quite new to Rails. After playing some weeks with Rails I am sure that it is a mature web framework and I really like the productivtity of Rails. One of the key advantages is that new developers will understand this platform much quicker than all the Java
2007 Jul 16
4
Problem with keypress event handling
Hi all, we are writing a cross browser Javascript control that enhances the HTML text input element in order to accept only digits (more or less). Supposing that ''domText'' is the DOM element corresponding to the HTML text input, we wrote the following: Event.observe(domText, "keypress", this.onKeyPress.bindAsEventListener(this)); where this.onKeyPress =
2005 Jun 05
2
180 Ringing?
Asterisk don't send the "180 Ringing" SIP message to the calling phone when the called party is ringing. How can I force asterisk to send the ringing messages? The option 'r' in the Dial() command or the Ringing() command didn't solve the problem. Mirko
2006 Sep 26
1
Voung test implementation in R
Dear All, I would like to know if the Voung test (Voung; Econometrica, 1989) to compare two non-nested regression models has been implemented in R. Thanks in advance for your assistance, mirko [[alternative HTML version deleted]]
2014 Apr 15
8
[Bug 77494] New: [NVE7] fails to load due to unknown opcode 0xc4
https://bugs.freedesktop.org/show_bug.cgi?id=77494 Priority: medium Bug ID: 77494 Assignee: nouveau at lists.freedesktop.org Summary: [NVE7] fails to load due to unknown opcode 0xc4 QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All) Reporter: mpredosin at
2007 Apr 18
1
[Bridge] recent 2.6 kernels hang on bridge shutdown
With recent 2.6 kernels, the command brctl delbr br0 hangs during shutdown, and the kernel prints this message again and again: unregister_netdevice: waiting for br0 to become free. Usage count = 1 I was able to reproduce this problem with several kernels between (and including) 2.6.9-rc1 and 2.6.11-rc2-bk9. I haven't tried later versions than 2.6.11-rc2-bk9 yet. 2.6.8.1-bk2 still works