Displaying 20 results from an estimated 900 matches similar to: "AD integration not working after move/version"
2017 Mar 18
1
AD integration not working after move/version
On Sat, 18 Mar 2017 17:26:11 +0100
Marc Muehlfeld via samba <samba at lists.samba.org> wrote:
> Hi Henrik,
>
> Am 18.03.2017 um 16:06 schrieb Henrik Johansson via samba:
> > Old version was 3.5.8 and the new version on the virtual host that
> > does not work is 3.6.25.
>
> That's not really a step forward to a supported Samba version. :-)
>
2017 Mar 18
0
AD integration not working after move/version
Hi Henrik,
Am 18.03.2017 um 16:06 schrieb Henrik Johansson via samba:
> Old version was 3.5.8 and the new version on the virtual host that does not work is 3.6.25.
That's not really a step forward to a supported Samba version. :-)
https://wiki.samba.org/index.php/Samba_Release_Planning
> # Global parameters
> [global]
> log file = /var/samba/log/clientlog.%m
>
2017 Mar 18
2
AD integration not working after move/version
Hi Rowland and thanks for your reply,
> On 18 Mar 2017, at 16:54, Rowland Penny via samba <samba at lists.samba.org> wrote:
>
> On Sat, 18 Mar 2017 16:06:28 +0100
> Henrik Johansson via samba <samba at lists.samba.org> wrote:
>
>> Hi!
>>
>> I am in a bit of trouble, I have moved a samba installation from one
>> virtual host to another keeping
2017 Mar 18
0
AD integration not working after move/version
On Sat, 18 Mar 2017 16:06:28 +0100
Henrik Johansson via samba <samba at lists.samba.org> wrote:
> Hi!
>
> I am in a bit of trouble, I have moved a samba installation from one
> virtual host to another keeping the configuration files and
> filesystems. But during the transition something broke, now windows
> users are no longer able to access their shares. I think it has
2003 Feb 21
4
Perl question
I'm working on the installer code, but I don't know Perl well enough.
What is a good Perl equivalent of the R statement
if ( s %in% c('string1', 'string2', 'string3') ) ...
I can do it with
if (s == "string1" || s == "string2" || s == "string3") ...
but I've got a feeling there's a better way to do it using associative
2004 Dec 02
3
combine two strings
Hello,
I would like to combine two strings while using R.
For instance,
string1 <- "abcde"
string2 <- "WXYZ"
I'd like to combine string1 and string2 into Sting3;
and string3 should be "abcdeWXZY".
Would you please tell me how to do it?
Thank you very much
Ben-Yang
[[alternative HTML version deleted]]
2005 Jul 04
1
Colors in mtext
I want to assign different colors to different strings using
mtext(...). However, when I use something like
mtext(text=c("string1","string2","string3"),
col=c("black","blue","red"), side=3, line=0)
string2 and string3 are printed over string1. When I use
paste("string1","string2","string3"), the series
2011 May 08
3
%in% operator - NOT IN
Hello everyone,
I am attempting to use the %in% operator with the ! to produce a NOT IN type
of operation. Why does this not work? Suggestions?
> data2[data1$char1 %in% c("string1","string2"),1]<-min(data1$x1)
> data2[data1$char1 ! %in% c("string1","string2"),1]<-max(data1$x1)+1000
Error: unexpected '!' in "data2[data1$char1
2006 Apr 04
1
Indexing a vector by a list of vectors
Hello R-help -
I have
vec <- c("string1", "string2", "string3")
ind <- list(c(1,2),c(1,2,3))
I want "vec" indexed by each vector in the list "ind".
The first element of the list I want would be vec[c(1,2)],
the second element would be vec[c(1,2,3)], like the following.
[[1]]
[1] "string1" "string2"
[[2]]
[1]
2011 Jun 18
3
how to subtract one string from another in R
Dear R Group
Here is what i am trying to do.. but couldnt figure out how..
string<-"ABC DEFG HIJKLM NOPQ RSTUV WXY"
string1<-substr(string,1,4)
I want to create an R object string 2 ( following the logic shown).. R does
not allow string subtraction.. any suggestions how to achieve this?
string2<-string-string1 (it should now hold "DEFG HIJKLM NOPQ RSTUV WXY"
I
2010 Mar 27
1
string width calculation
Colleagues,
I am trying to create a PDF document in which I use margin text with two different fonts. The resulting text might be:
XXXXXyZZZ
where X and Z are one font and Y is the other.
My plan was to do this in the following manner:
mtext("XXXXX ZZZ", cex=2, adj=0.5, family=SOMEFONT)
mtext("Y", cex=2, adj=??, family=DIFFERENTFONT)
My question regards how to calculate
2023 Jan 05
1
Question about KDC Resolution with Samba
I'm running a debug script from this site (Dated 16 Aug 2019, created and maintained by Rowland Penny and Louis van Belle). The script obtains the Linux server DOMAIN by running "hostname -d" which returns "mycorp.com". Next the script runs
nslookup -type=SRV _kerberos._tcp.mycorp.com
which fails
** server can't find _kerberos._tcp.mycorp.com: NXDOMAIN
and the
2023 Jan 08
1
Question about KDC Resolution with Samba
> nslookup -type=SRV _kerberos._tcp.mycorp.com
>
> ** server can't find _kerberos._tcp.mycorp.com: NXDOMAIN
>
As 'hostname -d' is returning 'mycorp.com' it would seem that is the dns
domain your computer is in. 'mycorp.com' != 'wgname.ad.mycorp.com'
(which appears to be the dns domain of your DC) and Samba does not do
subdomains or to put it
2007 Aug 26
2
Character position command
This is a very simple question, so I apologize I couldn't find it online:
I want to shorten the string 'apples.pears' to 'apples'.
string='apples.pears'
string1=substr(string,0,x)
For x above, I would like to have a command like charAt(string,"."), i.e.
the position of the period in the word, but I can't seem to find a charAt
command in R.
Thank you.
2006 Jun 19
2
fuzzy search
This may be offtopic to Rails, but what are people doing to find records
based on fuzzy string matches? For example, if you wanted to find a
Person with name "David Heinemeier Hansson" but searched using the
string "Dave Hansson".
Currently I am find_by_sql that calls the PostgreSQL function
"levenshtein(string1, string2)" which returns results with a score
2003 Jan 30
1
Samba wins problem
Hello there,
From digging the archive - it looks as if this was discussed here earlier
however I could not find a decent solution to my problem.
The problem is that I keep seeing the following errors on my nmbd.log:
[2003/01/30 09:34:34, 0]
nmbd/nmbd_browsesync.c:find_domain_master_name_query_fail(358)
find_domain_master_name_query_fail:
Unable to find the Domain Master Browser name
2012 Apr 19
1
Compare String Similarity
Dear All,
I need to estimate the level of similarity of two strings. For example:
string1 <- c("depending","audience","research", "school");
string2 <- c("audience","push","drama","button","depending");
The words in string may occur in different order though. What function would you recommend to use
2012 May 08
1
Extracting Hash-tagged word from Tweets
Can someone help me with the code I can use to extract word preceded by hash tag in live tweets download from twitteR.
An example of what I require is:
[[9]]
[1] "HollandUKTrade: #Dutch companies striking Olympic gold at London 2012 http://t.co/XsvvXAzT #london2012 #olympics #sport @hollandtrade @dutchembassyUK" (Tweet download)
I want a code that will extract this:
#Dutch companies
2009 Jan 22
4
text vector clustering
Hi,
I am a new user of R using R 2.8.1 in windows 2003. I have a csv file with
single column which contain the 30,000 students names. There were typo
errors while entering this student names. The actual list of names is <
1000. However we dont have that list for keyword search.
I am interested in grouping/cluster these names as those which are
similar letter to letter. Are there any
2003 Feb 23
0
unsubscribe
From:r-devel-admin@stat.math.ethz.ch on 02/22/2003 12:00 PM CET
Sent by: r-devel-admin@stat.math.ethz.ch
Please respond to r-devel@stat.math.ethz.ch
To: r-devel@stat.math.ethz.ch
cc: (bcc: Asheka Rahman/arahma1/LSU)
Subject: R-devel digest, Vol 1 #101 - 10 msgs
Send R-devel mailing list submissions to
r-devel@stat.math.ethz.ch
To subscribe or unsubscribe via the World Wide Web,