similar to: member server config problem

Displaying 20 results from an estimated 1000 matches similar to: "member server config problem"

2007 Jun 07
0
urgent: winbind doesn't see groups from samba pdc+ldap
Hallo! after migrating the pdc from nt to samba+ldap my member fileserver doesn't see the groups anymore. I set it up with nss as shown in: http://samba.org/samba/docs/man/Samba-Guide/unixclients.html#ch9-sdmnss getent passwd + group show all user and groups correctly wbinfo -u shows all users correctly, but wbinfo -g show only 2 builtin accounts. I tried without nss only with winbind
2004 May 03
1
Changed UIDs from winbind after server reboot!
I set up a samba 3.0.2 server as member server in a NT4 Domain. Winbind works great and I can "use" the NT Domain users for all I need. At the moment I'm testing different shares with their permissions. The Samba will also be our printserver, so I set up also cups and added the printers to samba with cupsaddsmb - Great tool! . Users could connect and all worked fine. After a reboot
2004 Jul 27
1
Roaming Profiles
Hi, i'm using samba 3.0.5 and the roaming profiles take ages to save and to load i just created a user, and it creates the proper windows files in the profiles share The files are very small so i should be a quick login, but it ins't Copying files from normal shares is quick, but the login it self is very long What to do? I'm using windows 2k with all windows updates here is my
2009 Jan 13
1
Converting Factor to Vector
Hi all, How can I convert factor like this: > str(repo) 'data.frame': 1000 obs. of 1 variable: $ AAA: Factor w/ 1000 levels "AAT","AAC",..: 1 2 3 4 5 6 7 8 9 10 ... > print(repo) AAA 1 AAA 2 AAT 3 AAC ... into to simple vector > str(new_repo) chr [1:100] "AAA" "AAT" "AAC" "AAG" "ATA" "ATT"...
2003 Nov 10
0
Samba 3.0 - LDAP create machine account fails
Hello, It's me again. I'm running Samba 3.0 and LDAP 2.1.23 on a RedHat 8.0 system. I am able to browse shares and home directories. I get a: Logon failure: unknown username or bad password when I try to connect a W2k machine. For Win/95/98 the system already works. I believe it is setup OK I need to work on scripts that work with MMC. I just want a basic connect a w2k machine right
2004 Jul 29
4
samba runs 1 month and then crash and never come back
guys need help my samba was working fine for about 1 month then it stoped working and now i get this error log [2004/07/29 13:36:53, 5] lib/charcnv.c:charset_name(74) Substituting charset 'ISO-8859-1' for LOCALE [2004/07/29 13:36:53, 5] lib/charcnv.c:charset_name(74) Substituting charset 'ISO-8859-1' for LOCALE [2004/07/29 13:36:53, 5] lib/charcnv.c:charset_name(74)
2019 Feb 13
2
error on the modificed permission
Hi, witch command getent group Domain\ Admins I optaing domain admins:x:10512: It's correct? Il 12/02/2019 12:57, Rowland Penny via samba ha scritto: > On Tue, 12 Feb 2019 11:13:56 +0100 > marco pirola via samba <samba at lists.samba.org> wrote: > >> I obtaing this resulta. Imposible enumerated the object in the >> container: access negated. >> > Hi
2019 Feb 12
0
error on the modificed permission
On Tue, 12 Feb 2019 11:13:56 +0100 marco pirola via samba <samba at lists.samba.org> wrote: > I obtaing this resulta. Imposible enumerated the object in the > container: access negated. > Hi Marco, you posted this as your smb.conf: [global] security = ADS workgroup = ROBINOOD realm = ROBINOOD.TST log file = /var/log/samba/%m.log log level = 1 vfs objects = acl_xattr map
2007 Dec 27
2
groupedData function not found
Hello, I'm trying to use the groupedData function and R is giving me the message: Error: can not find function "groupedData" The code is coming from a textbook so I think it should be correct: pigs<-data.frame(cbind(pig.time,pig.id,pig.wt)) pig.growth<-groupedData(pig.wt~pig.time|pig.id,data=pigs) I have added the package "nlme" and to confirm that it was installed
2004 Mar 17
1
Cupsprinter over samba won't work for w2k clients
Hallo! I installed Samba 3.0.1 on Deb Woody 3.0 with Cups 1.1.19 and joined to an NT4 Domain without problems, after solving the "Umlaut" problem. Unfortunately the System was installed in german... I read a lot in the Samba HowtoCollection and installed the printer following to it step by step. Added the printer driver via APW, then connected from the Client and changed some
2019 Feb 12
1
Sama + Windows Shadow Copies
Hello, i installed zfs-auto-snapshot with Samba/Windows Shadow Copy. If the share contains "path = /srv/userdata/" it runs for me. But if I use "path = /srv/userdata/%U" I get no "Previous Versions" on my Win10 Client. I think the problem is the variable "shadow: snapdir = .zfs/snapshot". I tried with "shadow: snapdir = ../.zfs/snapshot" and
2018 Jun 14
2
Weird permissions issues with samba shares and XFS
Hi, We are trying to deploy samba sharing on Centos 7.4, linked to windows 2016 AD for authentication. We are having an issue related to permissions where different directories with seemingly the exact same permissions cannot all be accessed from smbclient. I was hoping somebody could help me figuring this out. We have the following structure: 1. one LVM2 volume on /dev/storage/test (XFS)
2007 Jan 25
0
[854] trunk/wxruby2/swig/classes: Add support for GridBagSizer
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2009 Jan 13
3
Returning Non-Unique Index with Which (alternatives?)
Dear all, I tried to find index in repo given a query with this: > repo <- c("AAA", "AAT", "AAC", "AAG", "ATA", "ATT") > qr <- c("AAC", "ATT", "ATT") > which(repo%in%qr) [1] 3 6 Note that the query contain repeating elements, yet the output of which only returns unique. How can I make it
2006 Jul 29
3
Validating two models
Hi, I have a model Account wich "has_one" model called UserData. Both models use validation. # Model contains user name, email etc. class Account < ActiveRecord::Base has_one :user_data, :foreign_key => "user_id" validates_presence_of :email end # Model contains firstname, lastname etc. class UserData < ActiveRecord::Base
2020 Apr 01
0
[ANNOUNCE] nftables 0.9.4 release
Hi! The Netfilter project proudly presents: nftables 0.9.4 This release contains fixes and new features available up to the Linux kernel 5.6 release. * Support for ranges in concatenations (requires Linux kernel >= 5.6), e.g. table ip foo { set whitelist { type ipv4_addr . ipv4_addr . inet_service flags interval
2015 Jun 19
0
windows acl not saving, no error, nothing in log file
On 19/06/15 13:50, Thomas Bauserman wrote: > I'm running samba 4.1.6 as a PDC on ubuntu 14.04. OK, are you actually running samba as an NT4-style PDC, or are running samba as an AD DC ? they are very different. > I'm following these guides to setup print shares > > https://wiki.samba.org/index.php/Samba_as_a_print_server >
2015 Jun 19
1
windows acl not saving, no error, nothing in log file
Regarding the insertion of "user_xattr,acl,barrier=1" in to /etc/fstab file. The Sambawiki page 'https://wiki.samba.org/index.php/OS_Requirements' has instructions there for ext4 to include this. I seen it commented here, in the mailing list, many time that this is now default for ext4. Maybe the wiki page should be changed? (Just a suggestion, you guys always give great
2010 Mar 15
1
Windows Vista and option in smb.conf
Hello, I have a difficulty with the option 'hide unreadable' in the smb.conf regarding to it's effect on my Vista machines. In the smb.conf I have declared the following share: [userdata] path = /data/userdata admin users = domain+adminuser browseable = yes writeable = yes hide unreadable = yes csc policy = disable The
2012 Aug 17
1
antispam_plugin prevents IMAP login (error 3) [Dovecot 2.0.19]
Hi everybody, trying to get the Dovecot antispam_plugin to work and I must be doing something wrong, because as soon as it is enabled with a certain backend, imap logins do not work anymore (the session is immediately closed after a successful login). Interestingly, pipe and spool2dir are working (that is, the session won't be closed), dspam-exec and crm114-exec are not. If this happens,