similar to: username doesn't work

Displaying 20 results from an estimated 1000 matches similar to: "username doesn't work"

2003 Mar 11
1
Data replication/migration
Hello. Does Samba or the CIFS protocol support files replication/migration? Regards Brain -------------------------------- Petr `Brain' Kulhavy <brain@artax.karlin.mff.cuni.cz> http://artax.karlin.mff.cuni.cz/~brain Faculty of Mathematics and Physics, Charles University Prague, Czech Republic --- A man without a woman is like a statue without pigeons.
2013 Nov 07
2
[LLVMdev] [PATCH] Do not generate nopl instruction on CPUs that don't support it.
On Tue, 5 Nov 2013, Rafael Espíndola wrote: > Please include a testcase with the patch. I'm sending testcase here. Compile it with "clang -O2 -march=k6-2 -c loop.c" > gas uses " nopl 0x0(%eax)" for k6_2. Are you sure it is a gas bug? Yes, it is gas bug. I should report it to binutils maintainers. Mikulas > On 3 November 2013 13:50, Mikulas Patocka >
2014 Sep 22
3
[LLVMdev] ARM assembler bug on LLVM 3.5
On Sun, 21 Sep 2014, Renato Golin wrote: > On 20 September 2014 15:19, Mikulas Patocka > <mikulas at artax.karlin.mff.cuni.cz> wrote: > > The problem is this - you either compile this program with > > -mcpu=cortex-a9, then clang reports error on the sdiv instruction because > > cortex a9 doesn't have sdiv. Or - you compile the program with > >
2013 Nov 12
0
[LLVMdev] [PATCH] Do not generate nopl instruction on CPUs that don't support it.
On 7 November 2013 18:31, Mikulas Patocka <mikulas at artax.karlin.mff.cuni.cz> wrote: > > > On Tue, 5 Nov 2013, Rafael Espíndola wrote: > >> Please include a testcase with the patch. > > I'm sending testcase here. Compile it with > "clang -O2 -march=k6-2 -c loop.c" The test should be in the patch itself. It can use llvm-mc to check how the nops are
2013 Nov 05
0
[LLVMdev] [PATCH] Do not generate nopl instruction on CPUs that don't support it.
Please include a testcase with the patch. gas uses " nopl 0x0(%eax)" for k6_2. Are you sure it is a gas bug? On 3 November 2013 13:50, Mikulas Patocka <mikulas at artax.karlin.mff.cuni.cz> wrote: > Hi > > This patch fixes code generation bug - 586-class CPUs don't support the > nopl instruction and some 686-class CPUs don't support it too. > > I
2006 Sep 18
1
joining domain fails because of no samba entries with 3.0.23c
Hello All, I am having a very strange problem with samba 3.0.23c. I upgraded everything from 3.0.9 and I am able to smbclient to the samba 3.0.23c PDC with the administrator user just fine. When I go to add a machine to the domain, it adds the unix machine account to the ou=computers like it is supposed to but none of the samba entries are added. I get an error on the windows side of
2016 Oct 03
1
How to Migrate Samba AD from one server to another
On Sun, 2 Oct 2016 22:01:32 -0600 "Paul R. Ganci via samba" <samba at lists.samba.org> wrote: > > > On 10/02/2016 07:57 PM, Paul R. Ganci via samba wrote: > > > > > > On 10/02/2016 06:15 PM, Paul R. Ganci via samba wrote: > >> On 09/11/2016 10:38 AM, Paul R. Ganci via samba wrote: > >> > >>> On 09/11/2016 01:23 AM, Rowland
2019 Dec 22
4
Cannot remove old NS record
Hi All, A while ago I replaced a Samba AD on old hardware with a another AD on newer hardware. Everything went smoothly including the demotion of the old AD. However after I did some cleanup DNS records and turned off the old hardware I noticed that there still was a NS record associated with the old AD. So I went to the wiki page https://wiki.samba.org/index.php/DNS_Administration and
2020 Jan 02
2
Cannot remove old NS record
Hai, > -----Oorspronkelijk bericht----- > Van: samba [mailto:samba-bounces at lists.samba.org] Namens Paul > R. Ganci via samba > Verzonden: woensdag 1 januari 2020 23:49 > Aan: samba at lists.samba.org > Onderwerp: Re: [Samba] Cannot remove old NS record > > On 12/22/19 12:07 PM, Rowland penny via samba wrote: > >> > >> Are there any suggestions to
2020 Jan 01
2
Cannot remove old NS record
On 12/22/19 12:07 PM, Rowland penny via samba wrote: >> >> Are there any suggestions to to fix the problem? >> > Cached record somewhere ? > > You seem to have done everything correctly. > Okay I discovered that any changes to my DNS are not being seeing by bind.? So exploring the Wiki
2009 Nov 23
1
xrcise not working
Hi. I''m back. Unfortunately I can''t get xrcise working. Here is the sample xrc file and the resulting error messages: =============== TestWxFb.xrc ========================================= <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <resource xmlns="http://www.wxwindows.org/wxxrc" version="2.3.0.1">
2016 Oct 03
2
How to Migrate Samba AD from one server to another
On 10/02/2016 06:15 PM, Paul R. Ganci via samba wrote: > On 09/11/2016 10:38 AM, Paul R. Ganci via samba wrote: > >> On 09/11/2016 01:23 AM, Rowland Penny via samba wrote: >> Rowland, thanks for your reply. What you describe is pretty simple in >> principle. It is the details about which I am confused. There are 3 >> aspects of a Samba 4 AD that have to be properly
2014 Sep 20
2
[LLVMdev] ARM assembler bug on LLVM 3.5
Hi I have the following ARM Linux program. The program detects if the processor has division instruction, if it does, it uses it, otherwise it uses slower library call. The program works with gcc, but it doesn't work with clang. clang reports error on the sdiv instruction in the assembler. The problem is this - you either compile this program with -mcpu=cortex-a9, then clang reports
2013 Nov 03
2
[LLVMdev] [PATCH] Do not generate nopl instruction on CPUs that don't support it.
Hi This patch fixes code generation bug - 586-class CPUs don't support the nopl instruction and some 686-class CPUs don't support it too. I created bug 17792 for that. BTW. I think you should also optimize padding on these CPUs - instead of a stream of 0x90 nops, you should generate variants of "lea (%esi), %esi" instruction like gcc. This patch disables generation of
2013 Nov 22
1
[LLVMdev] [PATCH] Do not generate nopl instruction on CPUs that don't support it.
On Tue, 12 Nov 2013, Rafael Espíndola wrote: > On 7 November 2013 18:31, Mikulas Patocka > <mikulas at artax.karlin.mff.cuni.cz> wrote: > > > > > > On Tue, 5 Nov 2013, Rafael Espíndola wrote: > > > >> Please include a testcase with the patch. > > > > I'm sending testcase here. Compile it with > > "clang -O2 -march=k6-2 -c
2013 Nov 22
1
Re: Help with Vrbr0
On Friday 22 November 2013 04:19 PM, Sherin A wrote: > On Friday 22 November 2013 01:33 PM, Sherin A wrote: >> On Friday 22 November 2013 01:24 PM, Gao feng wrote: >>> On 11/22/2013 03:47 PM, Sherin A wrote: >>>> Hello, >>>> >>>> I am not able to see vrbr0 in my box. Can some one help me >>>> with this ? . I am trying
2009 Apr 13
3
Clamd and Amavis
I'm trying to get amavis to play using clamd and tried to follow this: # ### http://www.clamav.net/ ['ClamAV-clamd', \&ask_daemon, ["CONTSCAN {}\n", "/var/run/clamav/clamd"], qr/\bOK$/, qr/\bFOUND$/, qr/^.*?: (?!Infected Archive)(.*) FOUND$/ ], # # NOTE: run clamd under the same user as amavisd, or run it under its own # # uid such as clamav, add
2003 Oct 02
2
join domain failure "system account not in primary...."
I am trying join a w2k bo to a samba DC on RH9. I have read that I need to add the computer as a user first then join so I did it via these commands: adduser myComputer$ smbpasswd -a -m myComputer Is that all i need to do? When I join I get the "welcome to the domain message" and then I restart. However when trying to login I get "This systems computer account is not in the
2005 Oct 13
1
[LLVMdev] small bug in profile.pl?
I wanted to use to use profile.pl to know the execution count of basic blocks. However, I was not successfull with the following error message. I am using the latest version from CVS repository. Could somebody help me out? Thanks. --- Error Message I got ------------------------ linux$ profile.pl -block ccc.bc Error opening '/home/myhome/llvm/llvm-install/bin/../../Debug/lib/libprofile_rt\
2002 Dec 18
1
Samba pdc, Norton Ghost enterprise edition and joinin g the domain?
Lars, You could try a batch file with NETDOM /Domain:MYDOMAIN /user:adminuser /password:apassword MEMBER MYCOMPUTER /JOINDOMAIN Then NETDOM /Domain:MYDOMAIN MEMBER MYCOMPUTER /JOINDOMAIN search microsoft.com for comand line join domain for more info. Bob -----Original Message----- From: Lars O. Grobe [mailto:grobe@gmx.net] Sent: Wednesday, December 18, 2002 7:53 AM To: