similar to: Samba getting user info from NT PDC

Displaying 20 results from an estimated 200 matches similar to: "Samba getting user info from NT PDC"

2003 Feb 13
6
!!ATTENTION NEWBIES!!
I've been reading this list for a few weeks now and I've given advice on questions that look challenging but I've deleted MANY questions like these: "How do I (easy question found in the documents)?" Though I don't count myself an expert, I've known enough experts to see that they _HATE_ it when you don't invest some time before asking a question. I too have
2002 Dec 10
5
Using the right network interface
Hi everyone, samba 2.2.5 The server I'm using has 2 interfaces so using the interface parameter I'm telling samba to use eth0 but for some reason when I do netstat it is listening on eth1 interface = eth0 (the IP is 192.168.6.10) netstat -an udp 0 0 138.79.161.225:137 0.0.0.0:* udp 0 0 0.0.0.0:137 0.0.0.0:* udp 0 0 138.79.161.225:138
2003 Jan 20
1
net command
Hi, You can use the command net rpc shutdown -S <machine name> to remotly shutdown a PC. Is it possible to, or could it possibly be a future upgrade to have a comma separated list of machines so that you can shutdown several machines at one time. Ie at the end of the day to shutdown PC's in a particular classroom? What are your thoughts?? Cheers ----------------- Kristyan
2003 Mar 13
1
want to access a Windows Share from a Red Hat 8 linux box
Try something like mount -t smbfs -o username=user,password=password,workgroup=domain //windows_server/folder /local_folder you may also want to add ,ip=<Windows_server_IP> if it can't resolve the name Thanks Steve Simeonidis Network Engineer, Spherion Education Spherion Group Ltd "Making the Workplace Work Better" 1st Floor, 493 St. Kilda Rd, Melbourne VIC 3004,
2001 Dec 05
5
Winbind help
Hi. I'm not subscribed to the list, so if you can help, please e-mail me or CC me in the response. I've been using Samba for quite a while, and just set up a 2.2.2 server with winbind support. Console logins and SMB access work fine, wbinfo -t reports "Secret is good", and wbinfo -r domain+ntuser shows the right group number. In fact, the UID/GIDs are translated properly when
2002 Nov 28
1
Samba share is not writeable
I am having difficulty with Windows shares mounted with smb on my linux machine. The mount directory will not have write permissions for anyone, no matter what. The mount directory that I use is /home/samba. It has 0700, or drwx------ permissions when it is not connected to Samba. It is owned by the user jhall, and the group root. When I mount it, if I use dmask 0777, I get dr-xr-xr-x. If I use
2003 Sep 02
1
History
Hi, I all of a sudden require to log who has been login onto our domain, and from which machine. Looking through the logs I do have, I don't seem to have this information for more than a day, even in the log.<machinename>.old file. How can I change this ASAP? RD7.3, Samba 2.2.8a :) Max
2003 Mar 13
2
Sync Linux <-> NT Domain passwords
Is there a way to syncronise the Windows Domain passwords with the linux account passwords? SAMBA passes authentication to an NT box password server = * Users have local accounts on the Linux box and get access to SAMBA shares depending on which group (linux) they belong to and if their authentication credentials were correct. I've tried synchronising their passwords so when they change
2019 Feb 06
4
unix_primary_group = yes don t work
> -----Oorspronkelijk bericht----- > Van: samba [mailto:samba-bounces at lists.samba.org] Namens > Rowland Penny via samba > Verzonden: woensdag 6 februari 2019 16:33 > Aan: samba at lists.samba.org > Onderwerp: Re: [Samba] unix_primary_group = yes don t work > > On Wed, 6 Feb 2019 15:58:52 +0100 > L.P.H. van Belle <belle at bazuin.nl> wrote: > > > Hai
2019 Feb 06
6
unix_primary_group = yes don t work
thanks for the answer, Louis. i m talking about the userhome dir. I ve already read https://wiki.samba.org/index.php/User_Home_Folders and i m applying the posix acls to my share. As the users's home is shared between windows and linux, i d rather use the posix acls than the windows ones. Beside the homedir of my users have a form like /home/ first letter of name /login ( ex : /home/d/dare
2014 Dec 18
2
segfault when trying to allocate a large vector
Dear R contributors, I'm running into trouble when trying to allocate some large (but in theory viable) vector in the context of C code bound to R through .Call(). Here is some sample code summarizing the problem: SEXP test() { int size = 10000000; double largevec[size]; memset(largevec, 0, size*sizeof(double)); return(R_NilValue); } If size if small enough (up to 10^6), everything is
2003 Mar 28
3
Samba joins win2k domain but can't authenticate
All I got my samba server to join my win2k domain without any problems. But if I change the config to read security=domain it prompts the user for a username and password. If I change it to security=server it does not prompt for user names. I did some searching in the list came up with a few emails and this website http://www.sugoi.org/bits/index.php?bit_id=10 but still no change. In the /etc/host
2002 Mar 08
1
new user: confused about user/password stuffs
I am trying to use my w2k box (not in domain, only in workgroup) to access my samba server. my smb.conf file: [global] workgroup = SAMBA netbios name = TESTSMB server string = Samba Server security = SERVER encrypt passwords = Yes update encrypted = Yes log file = /var/log/samba/log.%m max log size = 50 socket options =
2005 Aug 08
2
Windows can't see my Samba shares...
Ok... I'm really stumped. I have checked thoroughly. I've performed all of the steps in the checklist from the HowTo... except for the nmblookup parts. The arguments to nmblookup seem to be based on an old version. I'm hoping someone will have an idea. Here's the whole situation... Server: Fedora Core 3 Linux myserver 2.6.11-1.35_FC3 #1 Mon Jun 13 00:52:08 EDT 2005 i686 i686
2014 Dec 11
2
Fwd: No source view when using gdb
Dear R contributors, Say I want to debug some C code invoked through .Call() - say "varbayes" in the VBmix package. following the instructions in "Writing R Extensions", I perform the following actions : R -d gdb run library(VBmix) CTRL+C break varbayes signal 0 mod <- varbayes(as.matrix(iris)[,1:4], 2) The breakpoint is indeed activated, seemingly at the correct position
2013 Mar 08
2
Unexpected behaviour of apply()
Hello everyone, Considering the following code sample : ---- indexes <- function(vec) { vec <- which(vec==TRUE) return(vec) } mat <- matrix(FALSE, nrow=10, ncol=10) mat[1,3] <- mat[3,1] <- TRUE ---- Issuing apply(mat, 1, indexes) returns a 10-cell list, as expected. Now if I do: ---- mat[1,3] <- mat[3,1] <- FALSE apply(mat, 1, indexes) ---- I would expect a
2014 Dec 20
2
Unexplained difference between results of dppsv and dpotri LAPACK routines
Dear R contributors, Considering the following sample C code, that illustrates two possible uses of a Cholesky decomp for inverting a matrix, equally valid at least in theory: SEXP test() { int d = 2; int info = 0; double mat[4] = {2.5, 0.4, 0.4, 1.7}; double id[4] = {1.0, 0.0, 0.0, 1.0}; double lmat[3]; F77_CALL(dpotrf)("L", &d, mat, &d, &info); lmat[0] = mat[0]; lmat[1]
2019 Nov 28
2
security=domain fails after upgr. to 4.9, winbind doesn't help
Hi, we've problems getting samba shares to work after upgrading from 4.7 to 4.9. We have one samba PDC server providing some shares and the users via local passdb.tdb file. Its smb.conf (names/ips changed): [global] security = user encrypt passwords = yes passdb backend = tdbsam:/etc/samba/passdb.tdb workgroup = OURWORKGROUP netbios name = SERVER1
2013 Jan 31
1
Using eigen() for extracting only few major eigenpairs
Hi everyone, I am using eigen() to extract the 2 major eigenpairs from a large real square symmetric matrix. The procedure is already rather efficient, but becomes somehow slow for real time needs with moderately large matrices (few thousand lines). The R implementation statically extracts all eigenvalues (and optionally associated eigenvectors). I heard about optimizations of the eigen
2012 Sep 27
1
Problem with grid.rect
I have a stupid problem that is currently driving me crazy... Let us suppose that I want to draw a big red square in the middle of my current device (say X11) I tried the following code : pushViewport(viewport(xscale=c(0,1), yscale=c(0,1)), just=c("center", "center")) vp1 <- viewport(x=unit(0.5, "native"), y=unit(0.5, "native"), width=unit(0.4,