similar to: Joining samba server to Windows AD OU when OU has slashes in OU name

Displaying 20 results from an estimated 6000 matches similar to: "Joining samba server to Windows AD OU when OU has slashes in OU name"

2008 Nov 05
1
Samba 3.2.4 not locking accounts?
Hello guys! I'm using samba 3.2.4 (binaries from samba.org) on SLES9+sp3. I am building a PDC with LDAP support (i am attaching my config files), I'm also using ldapsam:trusted and ldapsam:editposix. Although I am setting the account lock after 3 failed tries in usrmgr, and verified that the parameters are actually set in the LDAP, no locking occurs. I started thinking that it was my
2018 Aug 20
2
[Bug 13582] New: rsync filters containing multiple adjacent slashes aren't reduced to just one slash before matching
https://bugzilla.samba.org/show_bug.cgi?id=13582 Bug ID: 13582 Summary: rsync filters containing multiple adjacent slashes aren't reduced to just one slash before matching Product: rsync Version: 3.1.3 Hardware: x64 OS: Linux Status: NEW Severity: normal Priority: P5
2008 Nov 15
2
[PATCH] Don't strip two leading slashes from paths.
rsync 3.0.4 will transform a path like '//machine/share/dir' to '/machine/share/dir' when the --protect flag is provided. This causes a problem with Cygwin, where the two leading slashes are meaningful (access of a remote Windows share). [[[ % rsync -s localhost://tela/downloads rsync: link_stat "/tela/downloads" failed: No such file or directory (2) rsync error: some
2012 Feb 29
1
Replace back slashes with forward slashes?
Hello, All: What can people tell me about converting back slashes to forward slashes in character strings? Several years ago, Prof. Ripley provided a solution, which I lost and have not been able to find. Below please find a function to do this. I do not find this very satisfactory, however, because it uses "scan" and therefore operates on an input not a
2006 Jan 04
7
Replacing backslashes with slashes
Hello, I've seen this question asked in the archives but no clear reply or solution provided. So, just to be sure it is not possible in R: Can I replace backslashes with slashes in a string ? I am writing a GUI for R with the Rpad library. I have a "browse" button for data loading and Windows return a path string with backslashes. I need to convert them into slashes to use the
2010 Jun 19
3
[Bug 1784] New: ssh-keygen fails when filename of key file contains multiple slashes
https://bugzilla.mindrot.org/show_bug.cgi?id=1784 Summary: ssh-keygen fails when filename of key file contains multiple slashes Product: Portable OpenSSH Version: 5.2p1 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: ssh-keygen AssignedTo:
2007 Jan 11
2
Wishlist: Sweave: allow line breaks after forward slashes (PR#9443)
Full_Name: Arne Henningsen Version: 2.4.0 OS: Linux Submission from: (NULL) (134.245.140.242) Sweave does not allow line breaks after forward slashes ("/"). This might lead to a long "substring" of a command that cannot be wrapped. Hence, Sweave either keeps this long "substring" in the current line and produces a too long line or it moves the entire
2007 Jan 11
0
Wishlist: Sweave: allow line breaks after forward slashes (PR#9445)
On 1/11/2007 9:07 AM, ahenningsen at email.uni-kiel.de wrote: > Full_Name: Arne Henningsen > Version: 2.4.0 > OS: Linux > Submission from: (NULL) (134.245.140.242) > > > Sweave does not allow line breaks after forward slashes ("/"). This might lead > to a long "substring" of a command that cannot be wrapped. Hence, Sweave either > keeps this long
2009 Oct 27
0
help.start() only recognizes forward slashes in R_LIBS_USER which is not the default case
I've found that the HTML help system started via help.start() requires all forward slashes in R_LIBS_USER otherwise the Packages page is corrupt/non-working. Note that by default R_LIBS_USER is set by R on startup. Example 1: With R_LIBS_USER=C:/Users/JohnDoe/R/win-library/2.10 > help.start() [and go to "Packages"] If nothing happens, you should open
2005 Jan 19
4
How to replace slashes with back slashes
Dear R-helpers I am running R2.0.0 under Windows 2000. I am compiling a number of file paths into a simple text file that will be read by some other software we use. Unfortunately, it can only handle file paths with back slashes (MS Windows convention), and from R, I get file paths with forward slashes. The following didn't work. > gsub('/', '\\',
2007 Jan 11
2
Wishlist: Sweave: allow line breaks after forward slashes (PR#9444)
>>>>> On Thu, 11 Jan 2007 15:07:00 +0100 (CET), >>>>> ahenningsen (a) wrote: > Full_Name: Arne Henningsen > Version: 2.4.0 > OS: Linux > Submission from: (NULL) (134.245.140.242) > Sweave does not allow line breaks after forward slashes ("/"). This might lead > to a long "substring" of a command that cannot be
2005 Jun 11
1
Problem joining a domain using ads
server: ms 2003 with ads client: debian 3.1/samba 3.0.14 smb.conf: .. [global] workgroup = SP-GRUPPE password server = 10.85.117.150 realm = SP-GRUPPE.DE encrypt passwords = no server string = %h server (Samba %v) obey pam restrictions = yes passdb backend = tdbsam, guest passwd program = /usr/bin/passwd %u passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spassword:* %n\n .
2009 Mar 02
2
DO NOT REPLY [Bug 6151] New: --safe-links can be fooled by adding extra slashes to the path
https://bugzilla.samba.org/show_bug.cgi?id=6151 Summary: --safe-links can be fooled by adding extra slashes to the path Product: rsync Version: 3.1.0 Platform: x64 OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org
2005 Apr 29
2
postscript() filenames with forward slashes cause abort
My newly installed R-2.1.0 apparently doesn't like forward slashes in filenames: > R.version.string [1] "R version 2.1.0, 2005-04-18" > plotfile <- "\home\mean_monthly_stl.eps" > postscript(plotfile) > plotfile <- "/home/mean_monthly_stl.eps" > postscript(plotfile) *** glibc detected *** double free or corruption (!prev): 0x098e7180 *** Abort
2012 Aug 10
1
ggplot2 geom_bar produces white slashes in legend keys
When I am using geom_bar I get these white slashes through the legend keys. I cannot figure out how to remove them. ggplot(diamonds, aes(clarity, fill=cut)) + geom_bar() I have tried using opts(legend.key = theme_blank()) but with no luck. Any suggestions would be much appreciated. I am using R vers. 2.15.0 and ggplot 0.9.1, win xp Best wishes Jonas Hal
2009 Aug 24
0
r23 committed - Changed build.xml to use correct directory slashes
Revision: 23 Author: ajturner Date: Sun Aug 23 19:48:12 2009 Log: Changed build.xml to use correct directory slashes http://code.google.com/p/mapstraction/source/detail?r=23 Modified: /trunk/build.xml ======================================= --- /trunk/build.xml Sun Aug 16 17:18:10 2009 +++ /trunk/build.xml Sun Aug 23 19:48:12 2009 @@ -75,7 +75,7 @@ </path> <sequential>
2009 May 19
2
DO NOT REPLY [Bug 6376] New: Trailing slashes avoid creating directories in daemon mode
https://bugzilla.samba.org/show_bug.cgi?id=6376 Summary: Trailing slashes avoid creating directories in daemon mode Product: rsync Version: 3.0.6 Platform: x64 OS/Version: FreeBSD Status: NEW Severity: enhancement Priority: P3 Component: core AssignedTo: wayned@samba.org
2012 Mar 28
1
how to avoid farword slashes in RJSONIO output
Hi All, I wanted know how to get RJSONIO output with out forward slashes? for example: "({\"total\":5,\"results\":[\n {\n \"id\": 1,\n\"name\": \"Monkey D Luffy\",\n\"position\": \"Captain\",\n\"ambition\": \"I Will become the pirate king\" \n},\n{\n \"id\": 2,\n\"name\":
2004 May 21
0
Insufficient access error
I've been working on getting Samba 3.0.4-2 to join our test W2k3 Active Directory for most of the day. When I try to join with this command : net ads join -U w702a-palmadesso "w702\NonCatComputers" According to my official Samba HowTo Book this should join the domain specified in my smb.conf. Instead I get the following output : [root@w72l-tux samba]# net ads join -U
2008 Sep 03
4
delta index in Sphinx
Hello, all! Help me please to solve problem with Sphinx and its delta index. Configuration file is located in attachment to this topic. ------------------------------------------------------------------- mysql> select id, e_mail from users where e_mail LIKE ''%test%''; -------------------------------------------------------------------