similar to: AFS via Samba compile problem

Displaying 20 results from an estimated 300 matches similar to: "AFS via Samba compile problem"

1999 May 14
0
Problems Building Samba 2.0.3 --with-afs
Hi all, I'm going nuts. Ken Weiss and Steve Holstead have been very nice to me and supplied me with info on how to set my configure files and such. It helped me a lot but I still get stuck a bit later in the process. Namely during pass_check.c. I'm on a AIX 4.1.5 box. Using the export version of AFS 3.4. Help is appreciated. I wouldn't ask you all this if I hadn't already spent
2003 Oct 22
0
AFS thru Samba 3.0
Hi folks, I've ran many circles about this topic, read tons of documents. But have not found a working solution. Here is the scenario: There is a network contains around 350+ nodes, mixed Win98 and Win2k. There are four mars_nwe servers they use. We'd like to migrate that 4 servers into an AFS cell and offer it thru Samba which should be acting as a PDC. So far it seems not too
2003 Oct 11
0
Samba 3.0 acl problems
Hi folks, I have set up a samba-3.0 compiled with-acl-support on a Red Hat 9 with 2.4.21 patched with acl and extra attribs, ext3 filesystem mounted acl,user_xattr. I use win2k to set up acls. Samba acting as a pdc this part works fine. I'd like to set up the samba as a pdc of 350+ nodes mixed win98 and win2k and I'd like to use acls on it. The problems are the following: If I add a
2004 May 04
1
domain member server problems
Hi folks, A friend of mine has one samba PDC and about ten member server around this PDC. The only problem he has that he has to add the new users on every member server instead of main them only on the PDC. So how can get member servers synchronized. He uses samba password authentication. I think using ldap could be the ultimate solution. I'm wondering your opinion. thanks., Sandor --
2010 Jun 01
0
Compiling Samba 3.0.37 --with-afs (Steve Linehan)
> I do not know how to proceed. I tried to comment out the line in the spec file to no avail. this is bad idea ;) > Any suggestions? OpenAFS is not supplied directly by CentOS/RHEL. You would have had to get it from a 3rd party repo such as ATrpms/DAG or install from http://openafs.org/release/1.4.12/index-rhel5.html # cd /tmp/ # wget http://samba.org/samba/ftp/stable/samba-3.4.8.tar.gz
2004 Apr 08
0
Error building Samba 3.0.2a
While building Samba 3 for SuSE linux 9.0 I have a problem with the AFS component (it builds fine if I omit the --with-afs and --with-fake-kaserver options). During configure I did get a warning: checking whether to use AFS clear-text auth... yes checking whether to use AFS fake-kaserver... yes checking for /usr/include/afs... yes checking afs.h usability... no checking afs.h presence... no
2003 Nov 28
0
PDC+LDAP+Win2k/XP domain logon
Hi, I successfully installed samba 3.0.1pre4 from cvs tree with ldap-2.0.27. I can log in with administrator but can't get my machines (win2k and XP) joined into the domain. Here are some relevant part of the log file. [2003/11/28 15:02:32, 3] rpc_server/srv_pipe.c:api_rpcTNP(1509) api_rpcTNP: rpc command: SAMR_OPEN_DOMAIN [2003/11/28 15:02:32, 3]
2003 Oct 16
0
Samba 2.2.8a ldap compile problem with pdb_ldap.c
All, I am trying to compile 2.2.8a with the ldapsam, acl-support & pam. The make appears to go ok but the compile part doesn't. At the beginning of the compiles it lists out the flags: Using FLAGS = -O -I./popt -Iinclude -I./include -I./ubiqx -I./smbwrapper -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DLOGFILEBASE="/apps/samba/var"
2003 Jun 26
0
RH9 compile problems AND WinXP netlogon script
Because of the original issue below, it dawned on me to re-compile Samba after the RH9 upgrade from RH7.1. The make fails, and I was hoping someone could shed some light on either/both issues. I'm compiling Samba 2.2.8a with: ./configure --with-smbwrapper --with-pam --with-syslog --with-netatalk --prefix=/var/samba --with-quotas --with-smbmount --with-shadow No errors there, but make fails
2004 Oct 19
0
samba 3.0.7 make check fails in function strstr_m
Hi all, I wanted to upgrade from samba 3.0.4 to 3.0.7 and installed Samba 3.0.7 in a seperate directory . OS is Solaris 8 on Sun-Sparc. Python 2.3.3 (from sunfreeware) installed libiconv 1.8 installed When running "make check" i get the following output: .......................... # make check WARNING: you need to run ./config.status Linking bigballofmud shared library
2012 Feb 13
0
[PATCH] daemon: Don't xdr_free uninitialized args struct on error paths.
From: "Richard W.M. Jones" <rjones at redhat.com> For stubs of functions that had arguments, code did this: static void mount_stub (XDR *xdr_in) { int r; struct guestfs_mount_args args; if (optargs_bitmask != 0) { //... goto done; } // possibly other tests here memset (&args, 0, sizeof args); [...] done: xdr_free ((xdrproc_t)
2003 Jun 19
1
smbwrapper/smbw.c does not compile (Error 1)
After discovering a bug in the SuSE Samba binary (2.2.7a and 2.2.8a) which prevents some older DOS programs from creating files on a Samba share, I downloaded and built Samba 2.2.8a from the sources. Everything seems to work now (the old DOS programs are able to write to Samba shares) with the exception of smbwrapper which causes the following errors when Samba is built:
2017 Apr 25
0
[PATCH] daemon: Use CLEANUP_* functions to avoid an explicit free in stub functions.
--- generator/daemon.ml | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/generator/daemon.ml b/generator/daemon.ml index b00627063..9d5ba00b2 100644 --- a/generator/daemon.ml +++ b/generator/daemon.ml @@ -155,13 +155,13 @@ let generate_daemon_stubs actions () = | RBool _ -> pr " int r;\n" | RConstString _ | RConstOptString _
2017 Mar 10
2
[PATCH 1/2] daemon: generate cleanup handlers for structs
This way it is possible to cleanup properly structs in the daemon, when using them within other daemon functions. --- .gitignore | 2 + daemon/Makefile.am | 4 ++ daemon/daemon.h | 1 + generator/daemon.ml | 101 +++++++++++++++++++++++++++++++++++++++++++++++++++ generator/daemon.mli | 2 + generator/main.ml | 4 ++ 6 files changed, 114 insertions(+) diff --git
2004 Feb 06
0
Restrict logon to groups of workstations II
After sending my first email, I tried to modify auth/auth_sam.c to allow groups of workstations to the workstations list. And, for my surprise (?!) it was quite easy. And worked fine. I use LDAP as sam backed, and for unix accounts and groups database. I create a test group "stations" and putted there into two of my workstations. Then I defined the "sambaUserWorkstations"
1999 Apr 22
0
Samba and NIS+ (lengthy desperate plea)
Hi everyone, Let me briefly describe my setup. I work at a small university and we are setting up 3 labs. 2 are filled with Ultra Sparc 5's, and the 3rd will be filled with PCs running NT4 workstation. We have an Enterprise Server 3500 running NIS+ to authenticate the Unix labs (or rather we will, once I get it working), and I'd like to set up Samba to authenticate the NT labs using
2014 May 15
2
Re: guestfsd crashes when the handle is closed
Hello, This is the ouotput for fedora guest. ========================================== *#0 0xb73b7040 in exit () from /lib/libc.so.6* No symbol table info available. *#1 0xb76fb3a8 in main_loop (_sock=_sock@entry=3) at proto.c:112* xdr = {x_op = XDR_DECODE, x_ops = 0xb753db00 <xdrmem_ops>, x_public = 0x0, x_private = 0xbba929d8 ".0", x_base = 0xbba929b0
2003 Oct 16
0
Cann't get Samba 3.0.0 installed on a SuSE 8.2
Hallo, after I got same error messages because of missing Kerberos, I deinstalled heimdal and installed Kerberos 5 (_devel, _libs, _workstation). I also made the necessary changes in the /etc/krb5.conf file and tested the connection with the Active Directory with the kinit ...@.... I also synchronized the time and so I get the tickets. Now I wanted to install Samba 3.0.0 on SuSE 8.2 and there the
2009 Sep 11
1
[PATCH] guestfish: Redirect stdout when executing remote commands
guestfish --listen necessarily redirects its stdout to /dev/null so as not to interfere with eval. The remote protocol doesn't contain any other provision for collecting stdout for the caller, so executing guestfish --remote will never generate any output. This patch fixes that by forwarding the caller's STDOUT to the listener over the unix socket connection. The listener redirects its
2001 Jan 29
0
Failed to set socket option
Hi, I run a Veritas cluster server with two different samba's 2.0.7 compiled with SUNWspro 4.0 (gcc 2.95 leads to the same results) on Solaris 7 UltraSPARC 60 server. One compiled with --prefix=/opt/samba-test the other with --prefix=/opt/samba-eng. To avoid using 127.0.0.1 or 0.0.0.0 when both smbd's running on the same cluster host I set this in both smbd.conf