similar to: How to - Samba, winbind and Active Directory

Displaying 20 results from an estimated 2000 matches similar to: "How to - Samba, winbind and Active Directory"

2000 Feb 14
0
samba 2.05 with RH6.1 and Win98
Hello, I had samba working fine with RH6.0 but now I cannot get it to work... I cannot even see the SAMBA machine in my network neighbor hood. TCP/IP connectivity is fine... Has something changed in this version?? Why does the smb.conf now have 'server string' instead of 'netbios name'??? I have attached smb.conf and smb thanks Ken -------------- next part --------------
2003 Nov 11
1
Samba 3 Redhat 9 Openldap doc
Hello I'd like to thank you all for helping my setup of samba3 with Ldap, here are my notes on configuring samba3 openldap on redhat 9. Hopefully this information will help all of you who are trying to preform a similar setup. -=Carl=- this can also be found at: http://www.carlweiss.com/Samba3-redhat9-openldap.html Installing Samba 3 With OpenLDAP on Redhat 9 Commands are listed in
2001 Feb 18
3
PATCH: Round 2: RH initscripts backward compatibility
I've cleaned up Pekka Savola's newly revised sshd.init and additional sshd-functions and modified them to work they way i've been arguing they should work. Compatibility functions are defined in ./contrib/redhat/sshd-functions, which should get installed no matter what release of Red Hat Linux OpenSSH is getting built for, to be consistent across releases. Specific changes from
2012 May 14
0
Help: Icecast running multiple times on Cent-OS
I'm not the most experience Linux user on the block so please excuse me if this is an easy fix. I noticed the other day while looking at my active services that Icecast has started more than once on my server. I'm wondering if someone would be able to look at my config and tell me why this is happening, or how to stop this from happening. My guess is that since I'm binding to an IP,
2008 Aug 29
2
When to restart samba
If I understand correctly, in order to have the smb.conf file applied you need to restart smbd. Is "service smbd reload" sufficient (which does a "killproc smbd -HUP")? Will this kill any active connections to samba resources causing user disruption? Or is this a seamless process that can be carried out midday? I ask because if I need to kill all user connections to
2007 May 31
0
suggestion of service
I think that in hw_rng machines something like this is good (not via-rng): > #!/bin/bash > # > # chkconfig: 2345 20 80 > # description: Rngd daemon\ > # processname: rngd > # pidfile: /var/run/rngd.pid > # config: /etc/sysconfig/rngd > > # source function library > . /etc/init.d/functions > > RETVAL=0 > > start() { > echo -n
2003 Mar 03
5
Samba 2.2.7 problem
I am running Samba 2.2.7 on a Red Hat 7.3 box. 1. I have some windows xp computer on my network. With the following settings the Samab can not able to win the election. local master = No preferred master = Yes domain master = No changing to local master = Yes It can. How these settings should work? 2. When samba is running (ps -ax) 1828 ? S 0:00
2010 Feb 22
2
[LLVMdev] Patch - big stackframes on SPU
Hello all, currently the SPU backend does not handle big stack frames (>16*511 bytes) nicely. llc asserts on malformed machine instructions. (Assertion `MI->getOperand(OpNo).isImm() && "printDFormAddr first operand is not immediate") E.g. the function: define i32 @foo() nounwind { entry: %retval = alloca i32 %big_data = alloca [1000 x i32] store i32 3840, i32*
2007 Dec 03
1
[LLVMdev] lli interpreter crashed for integer type whose bitwidth > 64
Hi, The lli interpreter crashed for the following case: ; ModuleID = 'x.c' target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32" target triple = "i686-pc-linux-gnu" define i32 @main() { entry: %retval = alloca i32 ; <i32*> [#uses=2] %tmp = alloca i32 ;
2000 Nov 07
4
RedHat sshd.init script typo ?
Hi, I noticed one small possible error in the openssh-2.3.0p1/contrib/redhat/sshd.init script. In the stop option: stop) echo -n "Shutting down sshd: " if [ -f $PID_FILE ] ; then killproc sshd [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd fi echo
2010 Feb 24
0
[LLVMdev] Patch - big stackframes on SPU
On Feb 22, 2010, at 6:08 AM, Kalle.Raiskila at nokia.com wrote: > Hello all, > > currently the SPU backend does not handle big stack frames (>16*511 > bytes) nicely. llc asserts on malformed machine instructions. > (Assertion `MI->getOperand(OpNo).isImm() && "printDFormAddr first > operand is not immediate") Sounds fine to me in general. Please write a
2011 Jul 11
0
Xen and timekeeping
Hi everyone, I have the problem with Xen domU's and timekeeping in dom0. Time in dom0 was incorrect by 5 hours due to wrong timezone assumed. Fixed it by ntpdate ntp.nist.gov. The time on a dom0 was changed. I didn't append xen.independent_wallclock=1 to sysctl.conf thus the time in all domU's was also changed. But THEY DIDN'T "KNOW" THAT! The 'date' output
2008 Jun 18
4
[LLVMdev] Ответ: using dynamic libraries from bytecode?
Mike Stump wrote: >> Is it possible to use dynamic library (*.so *.dll) from bytecode? >> If "yes" - how? > > dlopen? That's be one way. Also, most systems have shared libraries > in /usr/lib and these routines are meant to be linked against and > used. For example, on darwin, there sinf is resolved from a shared > library, you declare it and call it, as
2007 Jul 11
2
[LLVMdev] thread_local
Hi, This weekend, I've noticed that GlobalVariable's could be declared as thread-local in LLVM 2.0. However, when using it on a small example (OSX), I got the following error: ========= Cannot yet select: 0x56059f0: i32 = GlobalTLSAddress <i32* @a> 0 Abort trap ========= This is the example code: ========= ; ModuleID = 'test.o' target datalayout =
2007 Jul 09
2
[LLVMdev] AsmParser fails
Hello everybody, unfortunately, I have some problems using the LLVM assembler parser ... - use llvm-gcc ( llvm-gcc -O0 -S --emit-llvm -o system2.ll system2.c) to translate the following small example into LLVM assembly language: int common_func1() { return 5; } int common_func2(int a) { return a + 5; } void Handler1() { int e = 4; int f = common_func1(); int ret = common_func2(e);
2009 Jan 09
1
[LLVMdev] naked assembler / function written entirely in asm
Hi everybody. I'm having (yet) another look at trying to get naked functions from D (1) working in our LLVM D Compiler - LDC (2). I have this test case: /// D CODE /// extern(C) int printf(char*, ...); ulong retval() { asm { naked; mov EAX, 0xff; mov EDX, 0xaa; ret; } } ulong retval2() { return (cast(ulong)0xaa << 32) | 0xff; } void main() {
2008 Sep 08
1
Running ices on startup
Hi everyone. I'm running icecast and ices2 on OpenSuse 10.2 (could upgrade to 11.0 in a breeze though). What I'm trying to achieve right now is to use this for a kind of "baby-phone" functionality. That means: 1. There is a microphone attached to the server which records sound in the room 2. I'm in another room, listening to the server on Winamp, so I can hear what goes on
2006 Jun 21
2
startup script for icecast
Hello, I was wondering about the feasibility of including a startup script for icecast for redhat/fedora installs? I've had to do an rpm install on an fc4 box, and a source install, rpms couldn't be found for an rh9 machine, yah i know that's old. And in both cases i had to drop in a custom-made startup script, see below. I was wondering esepcially in the case of the rpm, and
2008 Jul 03
2
Icecast Fedora9 migration problems
Ok, First I want to start off with this isn't the first icecast I have cloned, but it is the first where I have not only jumped Fedora release versions, but arch types as well (i386 - x86_64) and I am having strange problems. The Icecast versions are the same between the old and new servers. The biggest being is that the server binds to whatever port it feels like instead of the bind port
2002 May 23
1
$SMBDOPTIONS in xinetd.conf
hi list, got a little trouble of understanding, how to convert from old /etc/rc.d/init.d/smb to the new version redhat 7.1 this is, what I should know : the old version looks like this : # see how we were called case "$1" in start) if [ -s /etc/smb.conf ]; then echo -n "starting $ident: start-stop-daemon -S -n $Name1 -x $DAEMON1 - -D -d 2 start-stop-daemon -S -n