similar to: Samba Installation

Displaying 20 results from an estimated 1100 matches similar to: "Samba Installation"

2003 Feb 11
3
trouble joining domain
I have added a machine account to /etc/passwd named luna$ and in smbpasswd named luna. When I attempt to join my Win2K box to the domain, I get this error. The following error occured attempting to join the domain: The account used is a computer account. Use your global user account or local user account to access this server. I am using openldap if that makes any difference. Jim
2003 Apr 21
2
Root server dns queries
(Either this was too hard for the folks on -questions, or it was out of place there, or I'm not providing the right kind of info or... I'm open to suggestions.) At this stage I'd approach bliss if someone could even tell me how to make bind forget that IPv6 exists, and therefore stop hammering these queries at an apparently unsympathetic NT DNS server. Two affected
1999 Jul 09
1
Sharing in another network
Hi, I'm trying to share a machine that's on the other side of a gateway. The machine being shared is a Linux (kernel 2.2.1 (RedHat 5.2) and samba 2.0.3), and the box trying to access it is NT4.0 with SP5. It looks something like this ------- --------- ------ |Linux|-----------|Gateway|----------| NT | ------- --------- ------ 192.168.32.72
2006 Feb 13
1
Roaming Profile won't upload to workstation that didn't create it
Hi, I believe I've had a 'hidden' roaming profiles problem with Samba for a while (I have no idea when it first manifested itself - sometime between 3.0.2 and 3.0.21a). When I create a new user, their client workstation creates and updates the profile without any problems. Existing profiles used by existing client workstations are also fine. However, when I try to logon as an
2006 Nov 15
1
winbind: getent passwd displays the user, but SAMBA says Get_Pwnam_internals didn't find user
SAMBA 3.0.21c (domain is LINBOXTEXT) Windows 2000 SP4 (domain is ADTEST) Hello, I've established an interdomain trust relationship between SAMBA and Windows. Samba domain users can log into the Windows domain, but Windows domain users can't log to the SAMBA server. For example, if I try to log as "ADTEST/dupond" from Windows to SAMBA, SAMBA log says: [2006/11/15 20:17:05,
2000 Mar 13
1
I can't get multiple interfaces to work
I've looked through all the doc and searched the list archives, but I just can't seem to get it to work. I have a Linux box with 5 ethernet interfaces, 3 of which have winboxes I'd like to include in my little Samba network. I'm able to get it far enough for each winbox to see the linbox, but they can't see each other. Here's my setup: Winboxes Linbox Win2k -
2019 May 30
2
Problem joining domain [SEC=UNOFFICIAL]
UNOFFICIAL Firstly thanks for the help with my previous problem building SAMBA. The UNOFFICIAL in the subject heading is added automatically by our email system. I'm getting the following error when trying to join a 2003 server domain. ... Adding CN=TITUS,OU=Domain Controllers,DC=SSUNIT050,DC=local Adding
2010 Sep 27
7
Regular expressions: offsets of groups
Dear list! > gregexpr("a+(b+)", "abcdaabbc") [[1]] [1] 1 5 attr(,"match.length") [1] 2 4 What I want is the offsets of the matches for the group (b+), i.e. 2 and 7, not the offsets of the complete matches. Is there a way in R to get that? I know about gsubgn and strapply, but they only give me the strings matched by groups not their offsets. I could write
2006 Nov 16
1
[3.0.23d] winbind: ads_connect for domain X failed: Operations error
SAMBA 3.0.23d (netbios name is PDC01, domain is LINBOXTEST) Windows 2000 server SP4 in mixed mode (netbios name is MAFIA-L6FFST3UP, domain is ADTEST / adtest.linbox.com) Hello, So I've successfully established a two ways interdomain trust relationship between a SAMBA PDC and a Windows domain. It was working fine: for example a windows user was able to connect on a share on the SAMBA server.
2009 Feb 16
3
Applying functions to partitions
Hi list! I have a large matrix which I'd like to partition into blocks and for each block I'd like to compute the mean. Following a example where each letter marks a block of the partition: a a a d g g a a a d g g a a a d g g b b b e h h b b b e h h c c c f i i I'm only interested in the resulting matrix of means. How can this be done efficiently?
2005 Oct 16
5
Roaming Profiles & oplocks problems
I'm running FreeBSD 5.4-STABLE with Samba 3.0.20 configured as a PDC serving a small-ish network (10 XP hosts). My problem concerns roaming profiles - some XP clients take ages to logon and logoff. On doing some Googling I identified the 'profile acls' parameter as being a likely fix. However, I seem to have got myself into one of two scenarios: a) With 'profile acls'
2009 Nov 25
2
order of panels in xyplots
I'd like do a simple xyplot with customized order of panels and try to understand how to use index.cond for that. Several attempts didn't deliver the correct results. Now, I noticed the following: > p <- xyplot(dur~roi|trial, data) > p$index.cond [[1]] [1] 1 2 3 4 5 6 7 8 9 10 These numbers are "valid indexing vector for the integer vector
2009 Dec 08
6
conditionally merging adjacent rows in a data frame
Hi, I have a data frame and want to merge adjacent rows if some condition is met. There's an obvious solution using a loop but it is prohibitively slow because my data frame is large. Is there an efficient canonical solution for that? > head(d) rt dur tid mood roi x 55 5523 200 4 subj 9 5 56 5523 52 4 subj 7 31 57 5523 209 4 subj 4 9 58 5523 188 4 subj 4 7
2003 Mar 06
1
Virtual servers for 2 workgroup
Hi My config: Samba 2.2.3 & Linux Debian Testing kernel 2.4.20 There are two network cards on my pc : -one links to the network R1 (138.231.121.12) -one links to the network R2 (192.168.0.1) I would like to open two shares: -the first one on R1 in the workgroup wkgrp1 -the second one on R2 in the workgroup wkgrp2 I read that, thanks to the directives "netbios
2014 Sep 01
3
Unable to compile R 3.1.3 under GCC 4.1.2 (Red Hat 4.1.2-51)
Hi all, I'm unable to compile R under an HPC system (which like many HPC systems doesn't always have the latest and greatest software). The version of GCC is 4.1.2 under CentOS 5.7. Running ./configure gives the following output: R is now configured for x86_64-unknown-linux-gnu Source directory: . Installation directory: /home/tbarik C compiler: gcc
2009 Jun 09
3
Splicing factors without losing levels
Hi list! An operation that I often need is splicing two vectors: > splice(1:3, 4:6) [1] 1 4 2 5 3 6 For numeric vectors I use this hack: splice <- function(x, y) { xy <- cbind(x, y) xy <- t(xy) dim(xy) <- length(x) * 2 return(xy) } So far, so good (?). But I also need splicing for factors and I tried this: splice <- function(x, y) { xy <-
2010 Feb 06
3
melt on OSX ignores na.rm=T
Hi list, I run R on Linux and OSX. On both systems I use R version 2.9.2 (2009-08-24) and reshape version: 0.8.2 (2008-11-04). When I do a melt with na.rm=T on a data frame I get different results on these systems: library(reshape) x <- read.table(textConnection("char trial wn p E10I13D0 4 r E10I13D0 4 a E10I13D0 4 c E10I13D0 4 t E10I13D0 4 i E10I13D0 4 c E10I13D0 4 e E10I13D0
2009 May 12
3
What's the best way to tell a function about relevant fields in data frames
Hi list, I have a function that detects saccadic eye movements in a time series of eye positions sampled at a rate of 250Hz. This function needs three vectors: x-coordinate, y-coordinate, trial-id. This information is usually contained in a data frame that also has some other fields. The names of the fields are not standardized. > head(eyemovements) time x y trial 51
2012 Feb 03
1
Resume processing after warning handler.
Dear list! I have a script that processes a large number of data files. When one file fails to process correctly, I want the script to write a message and to continue with the next file. I achieved this with tryCatch: for (f in files) tryCatch({heavy.lifting(f)}, error=function(e) log.error.to.file(e)) I also want to log warning messages and tried something like this: for (f in
2004 Sep 10
1
flac worse than shorten ON SOME FILES
had to fix the subject... was getting under my skin! yeah, could you put up the FLAC version of the worst track that is less than 20 megs compressed? (I'll have to grab it with a 56k modem). by worst I mean the one where shorten beats flac by the most. also: 1. what version of shorten are you using? 2. what command-line options for flac and shorten did you use on this track? thanks, Josh