similar to: Samba 3 PDC & BDC Servers

Displaying 20 results from an estimated 1100 matches similar to: "Samba 3 PDC & BDC Servers"

2012 Feb 16
1
Help!!!! Gettting samba core dumps
I transferred a Xen vm that was running on centos 5.7 with samba 3.6.3 to a centos 6.2 bare metal server with one E5502 and 16gig of memory. I have been running Centos for 6 years on different servers for 6 years on several different upgrades. This new server has a dual network card in it. I have samba 3.6.3 on it and here is the smb.conf below: [global] workgroup =
2008 Jul 22
0
Routes dependent on subdomain
Hi, I''m having little problem getting my idea to work, would be very thankful if you could help me. I have one Ruby on Rails application sitting on server, and multiple subdomains, pointing to the same server/app. For example: mainserver.com user1.mainserver.com user2.mainserver.com I want to have exactly the same app and exactly the same routes on all, except that I want to map root
2008 Sep 05
1
Weird TCP problem
Last week, I started seeing very strange behavior in one of the networks that I manage. The office LAN uses a Linux firewall which masquerades their workstations over their DSL connection. There are probably ~75 workstations in the office LAN. Their mail server is in a collocated facility nearby. That server has an RFC1918 address; its router does SNAT to forward packets to the system. Both
2010 Apr 16
2
rsync over ssh - possible attack vectors
Hello everybody! First my setup: I connect from Debian Lenny to Ubuntu Karmic with a command like: user1 at localserver:$ rsync -rtcve ssh user1 at remoteserver:/.../ /local/.../ (using default versions of ssh and rsync in the vendor repos, ssh with password authentication) As far as I understand if localserver got compromised an attacker could read the password and then get full access to
2002 Jul 24
1
Win2k, Samba 2.2.5 and LDAP
I can't get a Win2k computer to execute a login script. Also, on both the XP computer and the w2k computer I get this message in their log file [2002/07/24 13:27:17, 0] rpc_server/srv_netlog_nt.c:get_md4pw(188) get_md4pw: Workstation sales1$: no account in domain sales1 is the XP computer, but I get the exact same error for win2k. Both computers (appear) to log on to the domain (as in, I
2015 Dec 29
2
vfs_fruit: cannot remove any file
Mon, 28 Dec 2015 18:24:17 +0100, Ralph Boehme <slow at samba.org>: > On Tue, Dec 29, 2015 at 01:34:34AM +0900, HAT wrote: >> In case of OS X 10.9 and later, any file could not be removed. >> >> $ rm test.txt >> rm: test.txt: Resource busy >> >> cannot remove: >> OS X 10.11.2 El Capitan >> OS X 10.10.5 Yosemite >> OS X 10.9.5
2020 Oct 18
1
Lookup sid with libsmbclient (invoked from c# on mono)
Hi, There is some additional work to do (close lsa handle), but the far the code below is working. Let me share it with you in case somebody will have the same need that me. br Vincent LE TOUX using Microsoft.Win32.SafeHandles; using System; using System.ComponentModel; using System.Diagnostics; using System.Net; using System.Runtime.InteropServices; using System.Security.Principal; namespace
2013 Oct 24
3
PROBLEM WITH PRINTERS.
Hi people, I have a print server using Debian, LPRNG and SAMBA working without any problems. Now I 'm trying to set up a new server with CentOS 6, CUPS and SAMBA. It 's a very simple setup: a few local users and a few printers, nothing special. The clients also map the printer using 'net use lpt1 \\mainserver\printerX' because they need to print over an old DOS application.
2004 Sep 13
1
mount.cifs doesn't do japanese?
On a FC2 system (which includes kernel 2.6.5 and samba-3.0.3), I am able to use "smbmount" to mount filesystems with japanese filenames on them by specifying codepage=cp932. But when I mount with "mount.cifs" the translation from SJIS to UTF-8 isn't done right: # uname -a Linux 5nave 2.6.5-1.358 #1 Sat May 8 09:04:50 EDT 2004 i686 i686 i386 GNU/Linux # smbclient
2004 Sep 12
1
Can't get logon script option working with PDC
Environment: Samba 3.0.6 on FC2 as PDC (replacing an NT 4.0 PDC) Windows 98/ME/2K/XP desktops on the domain I can't seem to get "logon script" to function. My [netlogon] share exists, the batch file is there, and if I manually run \\MAINSERVER\netlogon\logon.bat, it runs just fine. However, it doesn't run on login. I set "log level" to 3 and poked through the
2007 Aug 22
0
PDF file not getting deleted in File Share Folder!
Hi We are facing an issue with Samba3.0.25b. Some pdf files are not getting deleted from Samba fileshare. The sequence to reproduce this bug is as follows. Copy 150 PDF files in a shared folder. Open the file share (FILE_SHARE) from Windows XP+SP2. 1. open 1.pdf file then close 1.pdf file 2. Delete the 1.pdf file. 3. now, open 2.pdf file then close 2.pdf file 4. Delete the 2.pdf file. Repeat
2006 Sep 29
1
DO NOT REPLY [Bug 4130] New: Does not delete partial files upon completion of transfer
https://bugzilla.samba.org/show_bug.cgi?id=4130 Summary: Does not delete partial files upon completion of transfer Product: rsync Version: 2.6.8 Platform: Other OS/Version: Windows XP Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org
2006 Sep 29
1
DO NOT REPLY [Bug 4131] New: Does not delete partial files upon completion of transfer
https://bugzilla.samba.org/show_bug.cgi?id=4131 Summary: Does not delete partial files upon completion of transfer Product: rsync Version: 2.6.8 Platform: Other OS/Version: Windows XP Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org
2010 Apr 09
5
SSH Through R Script
Hi, I am trying to SSH to a remote server through R script. In other words, I would like to know how I can get a SSH connection to the remote server and then execute commands on that server with the R script. So in bash, I would normally type ssh -lusername remoteserver.com; press enter and then wait for the password prompt to key in my password. I have tried system("ssh
2015 Sep 12
3
Differentiating between ssh connection failures and ssh command failures
On Sat, Sep 12, 2015 at 11:14:07AM +1000, Damien Miller wrote: > ssh server.example.com /usr/bin/do/something > r=$? > if [ $r -eq 0 ] ; then > echo success > elif [ $r -eq 255 ] ; then > echo ssh failed > else > echo command failed > fi ssh remoteserver exit 255 Hmm :-) exit(-1) aka exit(255) is a pretty standard "generic failure code" for many
2000 Aug 04
0
FreeBSD and Samba 2.0.7 NT domain logons?
Hi, I came across this page while browsing in the list archives: http://bioserve.biochem.latrobe.edu.au/samba/ The link on the page about adding machines and users had some interesting things in it that I thought I would try out. Specifically this link is: http://bioserve.biochem.latrobe.edu.au/samba/adding.html I wna to be able to log into the samba 2.0.7 'domain' from an NT
2000 Aug 04
0
FreeBSD 4.0 Samba 2.0.7 NT machine accounts & domain logins?
Hi,I came across this page while browsing in the listarchives: http://bioserve.biochem.latrobe.edu.au/samba/ The link on the page about adding machines and users had some interesting things in it that I thought I would try out. Specifically this link is: http://bioserve.biochem.latrobe.edu.au/samba/adding.html I want to be able to log into the samba 2.0.7 'domain' from an NT
2005 Apr 21
0
Windows caching Netbios names ??
Hello, we have a setup with a main samba server an an emergency server which synchronizes its data via rsync. Recently, I got the idea to run the emergency server under a different server name parallel to the main server so that users can easily recover deleted files etc. This lead to massive problems; the reason was that the clients randomly connected to the main or the backup server !
2013 Oct 28
0
Printing with errors ...
Hi people, the following bug makes some error messages to appear al log level 0 when they are supposed to be al level 3. Any guy at the printer team could tell if I am safe printing with all those messages and why they are generated? Only a few computers are affected in my network. https://bugzilla.samba.org/show_bug.cgi?id=10118 Thanks! On Oct 25, 2013 1:21 PM, "Ezequiel Larrarte"
2006 Sep 29
3
DO NOT REPLY [Bug 4132] New: Does not delete partial files upon completion of transfer
https://bugzilla.samba.org/show_bug.cgi?id=4132 Summary: Does not delete partial files upon completion of transfer Product: rsync Version: 2.6.8 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org