similar to: About Samba passwords

Displaying 20 results from an estimated 3000 matches similar to: "About Samba passwords"

1999 Mar 25
2
problems with smbpasswd in samba-2.0.2+ (repost)
I sent the following message to the list nearly two weeks ago and didn't receive a single response. In fact, I haven't received any replies to the last 3-4 questions I have asked (over the past 6 months). Maybe it is my wording??? I see the messages in the digest, so I know they are going to the list. :-) I have no right to complain and only cause to be very happy with the rest of
2012 Nov 16
1
[LLVMdev] AddressSanitizer depends on order of doFinalization
Hello All, There is an issue in AddressSanitizer today because it depends on it's doFinalization method be called before the Printer method to output the final code (that is the printer runOnModule call). This assumption seems invalid as the doFinalization method should AFAIK only be used for clean up tasks independent of activities of other passes. When I try to call doFinalization inside
1998 Dec 31
2
NT Logon Authentication
I'm trying to set up SAMBA to handle NT logons, and have it to the point where my Sun sees the logon request come in, and I get the following in the log file: process_logon_packet: Logon from : code = 7 Does anyone know either what this code (and others) relates to, or where to find the code meanings? Anyone else gotten this to work and have some tips/tricks/gotchas? I'm trying to
1999 Apr 02
1
(Long) Newbie Question on Authentification w/ 2.0.3 & PDC
Thanks for Reading! Installed 2.0.3 with remote browsing and as a domain member per the docs. All is going just fine, but I have noticed something interesting about authenticating against the PDC. I have created accounts on the UNIX side ( Slack 3.5 , kernel 2.0.36 ) with temp passwords. The account names on the Linux side match the usernames on the NT side, but the passwords are different. I
1999 Apr 05
2
Print Jobs in /tmp
I have a quick printing question: When users print through Samba, a copy of the print job is ALWAYS left in /tmp and not erased. When I print through lpr, this is not the case. I am using LPRng 3.5.3, Samba 2.0.3, Kernel 2.2.4, and RHL 5.2 with all the update RPMs. Here are the relevant sections of my smb.conf file: [global] printing = lprng print command = /usr/local/bin/lpr -P%p %s -r
1999 Apr 09
1
smbprint(ing) to a HP 3100??
I work in a lab were the only "printer" we have is an HP 3100 (printer/fax/scanner) item. This printer is hung off a Windows98 box and I want to be able to print to it from my linux box using smbprint. I can connect to the share that represents this printer: smbclient \\\\server\\printer "" -N and I get the SMB> prompt which (I think) is pretty useless for printers.
1999 Apr 01
2
Swat password syncronization - HELP
Hi All I've installed Samba 2.0.3 and coudn't put "unix passowrd sync" to work. I set: passwd program = /usr/bin/passwd %u passwd chat = *New*password:* %n\n *Re-enter*new*password:* %n\n*changed.* passwd chat debug = Yes unix password sync = Yes log level = 100 The password page says "The password for 'user' has been changed". In fact it has been
2013 Feb 15
2
[LLVMdev] GCMetadataPrinter::finishAssembly not executed?
Hi Pedro (et al.), On 02/14/2013 11:43 PM, Pedro Artigas wrote: > I believe what is going on is that there is an issue with the way that information is deleted (the CG information). Yeap, that's exactly the problem! :-) I noticed that the GCModuleInfo::iterator (line 931 in lib/CodeGen/AsmPrinter/AsmPrinter.cpp) is empty and, thus, GCMetadataPrinter::finishAssembly is never called.
2013 Feb 14
2
[LLVMdev] GCMetadataPrinter::finishAssembly not executed?
Sorry for the triple-posting! :-$ On 02/14/2013 04:30 PM, Yiannis Tsiouris wrote: > On 02/10/2013 08:47 PM, Yiannis Tsiouris wrote: >> After rebasing my local LLVM repo to ToT, I noticed that the >> finishAssembly function is not executed and, thus, the stack map is not >> printed at all. >> >> Is this a known issue or I 'm doing something wrong? >>
2013 Feb 16
2
[LLVMdev] GCMetadataPrinter::finishAssembly not executed?
On 02/15/2013 07:13 PM, Pedro Artigas wrote: > I am not an expert on metadata or the CG information but one of the two has to happen: I'm not an expert either but I'll give it a try! :-) > - Simply moving the deleter pass to a different spot > - Changing the doFinalization of another pass (Printer?) to do the deleter pass job (this should work now because the doFinalization order
1999 Jan 25
5
solaris 2.6 printing
I have ran across a problem that I cant resolve and no one else seems to either. I recently built solaris 2.6 on an ULTRA 1 Sun Box. I retrieved compiled and installed samba 2.0 from their web site I compiled with gcc and everything works well except for the printing. Samba does deliver a file in my /var/spool/smbprint dir but nothing happens from there no matter what lp or other commands I
1998 Aug 31
2
autoconfigure new NT4 sp3 clients, samba 1.9.19 server
Hi, I'm running the Alpha of 1.9.19 (we needed Samba as a domain controller) and want to know the best way to set it up so that the first login for a new user on an WNT workstation in that domain creates the profile we want for the user, rather than the one NT seems to want. 1. The profile created is about .5 Mb in size. The parts that we want in there are maybe 20% of that. How does
2013 Feb 15
0
[LLVMdev] GCMetadataPrinter::finishAssembly not executed?
Hello Yiannis, I am not an expert on metadata or the CG information but one of the two has to happen: - Simply moving the deleter pass to a different spot - Changing the doFinalization of another pass (Printer?) to do the deleter pass job (this should work now because the doFinalization order is the reverse of the doInitialization order) Option 1 is a smaller change, option 2 will make the code
2013 Feb 23
3
[LLVMdev] GCMetadataPrinter::finishAssembly not executed?
Pedro, Yiannis, What's about the usage case, when LLVM is used as a library and the user implements its custom pass, which dump the code (implemented as a FunctionPass, but not as Printer)? You also missed in your changes the declaration of llvm::createGCInfoDeleter() in include/llvm/CodeGen/Passes.h -Dmitry. On Mon, Feb 18, 2013 at 9:34 PM, Pedro Artigas <partigas at apple.com>
2013 Feb 14
0
[LLVMdev] GCMetadataPrinter::finishAssembly not executed?
Hello Yiannis, I believe what is going on is that there is an issue with the way that information is deleted (the CG information). Right now there is a pass whose only job is to delete that information (CGInfoDeleter) and that pass deletes the info before the AsmPrinter has a chance to call the finishAssembly function. Right now the order that the doFinalization is called on passes is the reverse
1998 Oct 08
0
readbraw vs. readX
Using Samba 1.9.18p10 I have found a difference between Win95 and WinNT: opening 'Lotus Freelance' files from Win95 is really slow (about 17 kB/s only) vs fast (~hundreds of kB/s) from WinNT. Looking into the log (with debug level=4) I see using Win95: switch message SMBopenX (pid 33994) Skipping become_user - already user unix_clean_name [./PRIVATE/Goyal_Sep98.PRZ] Got dir cache hit on
1998 Apr 16
2
Problem with visual C++ and samba
We are having a problem with Microsoft visual C++ compiling source code maintained on a samba server. Occasionaly the compiler reports that it cant open the file vc50.pch. The samba server is running on a freebsd box. Taking a look at the log files it looks like when the operation fails the server is processing the command open (vc50.pch for exclusive use write setattrE write open (vc50.pch
2014 Aug 08
3
[LLVMdev] Proposal: Add a target lowering hook to state that target supports floating point exception behavior.
I assume you meant to ask for ports that *don’t* support floating point exceptions. To my knowledge, neither R600 nor NVPTX support floating point exceptions. —Owen > On Aug 8, 2014, at 2:41 PM, Eric Christopher <echristo at gmail.com> wrote: > > There's a lot of cut and paste in those routines. Can you do something > to unify it a bit? Also, do we have any ports that
1997 Jul 18
0
Samba 1.9.16pl11: dropping connections between Solaris 2.5.1 and WinNT4SP3
Hi all: I am experiencing a problem where WinNT and Samba are dropping connections during file transfers. I have the following smb.conf settings: keep alive = 30 dead time = 1440 socket options = IPTOS_THROUGHPUT SO_KEEPALIVE (although I tried IPTOS_NODELAY with no apparent benefit). The client is copying a large number of files up to the server, then there is a pause at a random file,
1997 Jul 31
0
Passwords fail from Win95 but not from DOS (Samba 1.9.16p11/NetBSD)
Hi, I'm having some problems with Samba 1.9.16p11 on a Sun3/60 running NetBSD 1.2. I have a Win95 client and a couple of DOS clients on a single ethernet segment (it's at home :-). I've set up a simple configuration, intention was just to serve files from the Sun to the PC's. Everything works perfectly except authentication from the Win95 client. I can connect to the Samba shares