similar to: samba4.1 as domain member in a domain I don't be admin

Displaying 20 results from an estimated 500 matches similar to: "samba4.1 as domain member in a domain I don't be admin"

2014 Apr 25
1
Perf enhancements in Samba4.1 related to SMB2.1 / SMB3.0 protocol
Hi Everyone, My doubts are for Samba4.1 performance related enhancements (SMB2.1 / SMB3.0). My experimental samba server hardware is running 4.1 version. Want to improve robocopy WRITE throughput from a two samba client machines (win7 or win8 or server2012 x86 servers). Someone please advice me how can I use SMB2.1 or SMB3.0 capabilities to improve WRITE throughput. I tried samba4.1
2014 Oct 15
1
Performance tuning of Samba4.1 LDAP CRUD operations
Hi, I would like to accelerate CURD operation of LDAP. Please let me know a tuning setup of OS or Samba. Although I am performing shift verification to Samba 4.1.12 from OpenLDAP 2.3, the CURD operation using a LDAP interface becomes 1/10 or less speed compared with OpenLDAP. Although this OpenLDAP is performing an optimized tuning setup, Samba is in the default state immediately after carrying
2020 Aug 30
1
Need help in Samba4.1 mount
Hi, I have configured a samba share following the below link in RHEL 7 VM in Azure. https://www.tecmint.com/install-samba4-on-centos-7-for-file-sharing-on-windows/ https://www.youtube.com/watch?v=IMPEjYoP3N4- followed steps in this video While mounting the directory from windows 10 I am not able to mount \\<Azure Server IP\sharename and after a long time it fails. I have enabled SMB
2013 Nov 18
1
samba4.1 RODC with BIND as DNS backend
OK, further to my previous message I've configured BIND, but when I try to run samba_dnsupdate I get the following: Nov 18 16:19:23 sles-shire named[6112]: samba b9_putrr: unhandled record type 0 Nov 18 16:19:24 sles-shire named[6112]: samba_dlz: starting transaction on zone _msdcs.main.adlab.netdirect.ca Nov 18 16:19:24 sles-shire named[6112]: samba_dlz: disallowing update of
2014 Mar 16
1
How does one "look at AD" in Samba4.1?
Hi all, I'm in the process of setting up a test network with the view of rebuilding our existing (Samba 3.5-based) NT domain, from scratch. Most of the clients that will be connecting to it are Windows 7 machines, there is one Windows 8.1 Standard machine (that won't be joining, but not my problem), and a number of Windows XP virtual machines. Presently I'm running a network
2019 Feb 04
1
doveadm import with subfolder oddity
This has got to be something weird in my config. And the standard disclaimer of '"happy to post doveconf -n, but wanted to see if this is normal first" :) Background: Ubuntu Xenial, running 2.2.36. Mailbox type is mdbox and I've got a period separator in my inbox namespace: namespace { hidden = no inbox = yes list = yes location = mailbox Spam { auto = no
2012 Nov 10
2
[LLVMdev] Saving a reference to a Basic Block?
Is there a way to save a reference to a Basic Block that gets all fixed up in the linker, so that you can branch to it during execution? (Or maybe just a better way to do what I'm trying to do?) In my old-school BASIC compiler that I'm writing with LLVM, for each GOSUB, I keep a map of an integer ID and a pointer to the basic block following the GOSUB to return to. Then, when a BASIC
2006 Oct 09
0
Information_content_test
Hi; I have a matrix of 154 elements by 66241 sub-elements. The elements are chains of characters, sub elements are simply sub-chains of a certain length. For each element, I computed a count of the ocurrence of sub-elements (scan of strings). I thus have a matrix of numerical values (between 0 and max number of occurences). One the other hand, I computed distances and hierarchical clustering of
2010 Feb 02
2
Subset and plot
Here is a runable program. When I plot Day and Wgt, it graphs all the data points. All I need is daily.sub1 plotted. I also need each "Tanks" to have its own col or pch. When I run it with the line with pch, it gives me nothing. rm(list=ls()) Trial<-rep(c(1,2),each=12) Tanks=rep(c("a3","a4","c4","h4"),each=3,2) Day=rep(c(1:12),2)
2020 Nov 19
1
Problems with undef subranges in identity copies
Hi, I'm stuck trying to fix a variety of problems that occur with undef subregisters when the register coalescer eliminates identity copies. The fundamental problem is complexity from the fact that undef values are a special case since they don't have an associated VNInfo/Segment unless the value is used across blocks. For example, in this case, %0 has 2 subregisters sub0 and sub1:
2013 Aug 05
2
Fileoperations in Maildir – problematic or okay?
Hi, I'm wondering: Is it a problem to move and delete files inside a dovecot-managed maildir? For example: I have a folder ~/.maildir/.Sub1.Start/cur and a folder ~/.maildir/.Sub1.Start.old/cur and like to regularly move old mails from the first to the second one. Can you create a cron job saying something like: find ~/.maildir/.Sub1.Start/cur -mtime +5 -exec mv {}
2013 Nov 16
16
[PATCH] BTRFS-PROG: recursively subvolume snapshot and delete
Hi All, the following patches implement the recursively snapshotting and deleting of a subvolume. To snapshot recursively you must pass the -R switch: # btrfs subvolume create sub1 Create subvolume ''./sub1'' # btrfs subvolume create sub1/sub2 Create subvolume ''sub1/sub2'' # btrfs subvolume snapshot -R sub1 sub1-snap Create a snapshot of
2018 Dec 17
1
Geoblocking on Icecast stations (radionomy)
Hi, I stumpled upon Icecast, but I effectively can only play few stations because somehow most of the stations that I'm interested in use the radionomy service. After some research I found out that I'm not the only one and that this company is blocking many countries worldwide: https://www.google.com/search?q=this+radio+station+is+not+available+in+your+country+site:board.radionomy.com
2012 Dec 10
1
Problem/Bug when syncing subdirectory structures with delay-updates and partial-dir
Hello there, recently stumbled over a problem syncing subdirectory structures in combination with partial-dir. Files are saved within partial-dir, but without the subdirectory path they came from, so having the same file names within different subdirectories causes them to be overwritten (and/or lost, of course). Currently I'm using rsync 3.0.9 protocol version 30 in Linux
2005 Jun 14
0
c(recursive=TRUE)
Hi R users, I am currently using c(...,recursive=TRUE) to handle list-structured objects. This allows to represent something like: > l1 = list(level1=1,level2=list(sub1=1,sub2=2)) as: > (l1names = names(c(l1,recursive=TRUE))) [1] "level1" "level2.sub1" "level2.sub2" Then, one can use: > (l1names = sapply(l1names,FUN=function(element)
2011 Aug 04
2
How to extract sublist from a list?
Hi everyone, Suppose I have a list named "lst", see below: > lst $sub1 ... $sub1$x ... $sub1$y .... $sub2 ... $sub2$x ... $sub2$y ? $sub3 ... ... ... Now, I want to extract the sub-sublist $y from every sublist(sub1, sub2...) and then storage them to a new list. I know how to extract them by subscript or list name one by one, but I wonder if there exist some tricks to finish this
2008 Mar 02
3
DO NOT REPLY [Bug 5297] New: merge test fails
https://bugzilla.samba.org/show_bug.cgi?id=5297 Summary: merge test fails Product: rsync Version: 3.0.0 Platform: Other OS/Version: SunOS Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: bfriesen@simple.dallas.tx.us QAContact:
2013 Feb 22
1
[Bug 9670] New: missing substructure within partial-dir causes files to be lost or overwritten
https://bugzilla.samba.org/show_bug.cgi?id=9670 Summary: missing substructure within partial-dir causes files to be lost or overwritten Product: rsync Version: 3.0.9 Platform: All OS/Version: All Status: NEW Severity: major Priority: P5 Component: core AssignedTo: wayned at
2018 Oct 02
3
outlook idiocy - IMAP folders with /
On 2018-10-01 04:07, Timo Sirainen wrote: > > https://wiki2.dovecot.org/Plugins/Listescape?maybe? It should be mentioned somehow that one can't just change the hierarchy separator on the fly (without manual changes to the fs). If you used . as the separator, it would look this in the filesystem: .testfolder.sub1 Now you change the separator to $. Your mail client will see the existing
2018 Oct 02
0
outlook idiocy - IMAP folders with /
On 2 Oct 2018, at 22.52, Helmut K. C. Tessarek <tessarek at evermeet.cx> wrote: > > On 2018-10-01 04:07, Timo Sirainen wrote: >> >> https://wiki2.dovecot.org/Plugins/Listescape maybe? > > It should be mentioned somehow that one can't just change the hierarchy > separator on the fly (without manual changes to the fs). > > If you used . as the