similar to: Account is not authorized to log in from this station

Displaying 20 results from an estimated 800 matches similar to: "Account is not authorized to log in from this station"

2007 Jan 23
1
login problem with domain users
Hi all, I am using samba 3.0.23d on my linux machine. This machine is connected in a domain where all other users are using domain username and password to login. but with this username and password they are unable to login in samba. my smb.conf file is like following, [global] workgroup = BSIL server string = Samba testing encrypt passwords = yes os level = 20
2007 Feb 04
0
samba authentication problem
Hi all, I am trying to configure samba (3.0.23d) on my linux machine. This is my smb.conf file, [global] workgroup = BSIL netbios name = MDT506 security = share server string = samba testing........ [data] read only = No guest ok = yes path = /export force user = mahesh.pawar force group = users comment = for
2010 Oct 12
2
Fwd: undefining and redefining a Domain from libvirt java bindings
hi, i am trying to undefine a domain by using dm.undefine(); and then trying to create one with same name is giving me error saying 'Domain not found: no domain with matching uuid 'aeae9d4e-17cb-b661-a612-88ac677c28c1' i have attached my test program which reproduces the issue. please let me know where i am going wrong? configuration: libvirt : 0.6.3 Java
2002 Sep 06
1
"delete list" parameter
Hi, Samba has the "read list" and "write list" parameters in smb.conf. I'm looking for a patch that provides a "delete list" option. So that only that list of users can delete files or directories in that share. I know the filesystem doesn't natively have a delete bit, but couldn't it be done on the samba level, independant of the filesystem. Thanks,
2005 Jun 03
1
Need Help - Urgent
Hello, I am a student and some really urgent help.I am using R software and while creating a grid with eight elements its showing the error and while if i do it with seven it says that the memory is not sufficient... here is the line ...with the error.... > Z<-as.matrix(expand.grid(x,y,x,y,t,s,t,s)) Error in rep.int(rep.int(seq(length = nx), rep.int(rep.fac, nx)), orep) : cannot
2010 Oct 04
1
Anyone has new libvirt java binding jar, i want the latest one. i dont have the build env at my end.
-- Thanks & Regards Ravi Pawar -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20101004/7754d9d9/attachment.htm>
2014 Mar 16
2
Contribute in the Xapian project throgh GSoC.
Hi everyone, My name is Shreedhar Pawar. I am a Software Engineering MS student from San Jose State University. I have an immense interest in Information Retrieval and Machine Learning and look forward to contribute Xapian in its "Ranking project". My previous work includes a research paper(attached below), though not related to this topic represents my experience in Programming and
2014 Mar 18
2
Considering Parallel computing for Letor
Hi everyone, My name is Shreedhar Pawar. I have already introduced myself on Xapian-discuss... I feel that the Xapian Search/Letor Algorithm, can speed up using Parallel computing. Techniques like Map-reduce, 'compact n split', radix sort, scan, parallel hashing n much more can be used to speed up the learning algorithms as well as the search... support vector machines in the Letor
2010 Sep 02
1
is libvirt java binding thread safe?
please check the java file attached they throws the exception in case of passing. please let me know if i am missing something. -- Thanks & Regards Ravi Pawar -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20100902/f820e029/attachment.htm> -------------- next part -------------- A non-text
2010 Oct 06
1
Error while starting the domain "error: monitor socket did not show up.: Connection refused"
All, here is my domain xml <domain type='kvm'> <name>tests</name> <uuid>76bc677f-ee5b-ef0b-1d02-72d12785b1d8</uuid> <memory>524288</memory> <currentMemory>524288</currentMemory> <vcpu>1</vcpu> <os> <type arch='x86_64' machine='pc-0.12'>hvm</type> <boot
2018 Mar 31
3
Writing tests with Filecheck without emitting output to stdin
That works. Thanks. One more followup question though. Once i run opt on bitcode, there is not useful output/transform on bitcode. this rpt files are extra. I am hoping to do something like this, ; RUN: FileCheck --input-file=a.rpt.gold --check-prefix=CHECK-A < a.rpt ; RUN: FileCheck --input-file=b.rpt.gold --check-prefix=CHECK-B < b.rpt i did not find much examples in tests hence
2011 Jul 14
9
Extension wise dialplan
Hi all, I have n no. of extensions in my dialer. from 456 to 556 extensions. I was created 2 other extensions 667 and 668 I need to allow only STD calls to go from this extensions. These all extensions are same context . I need to define the STD dialplan for only this 2 extensions. how I can ? Best Regards, Mahesh Katta *BUZZ**WORKS* Business Services Private Limited BANGALORE | CHENNAI |
2010 Oct 08
3
How to use Atxfer in AMI
Hi, I'm trying to make a attended transfer through AMI. I though i could use Atxfer, and it seems ok, but nothing happens. And I can't find any how-to or description on how to do this. What more do I have to do to make this work? In Asterisk Call Manager: Action: Atxfer Channel: SIP/36-xxxxxx Exten: 33 Priority: 1 Context: Phone Response: Success Message: Atxfer successfully queued
2018 Mar 31
4
Writing tests with Filecheck without emitting output to stdin
Hello I have pass operating on bitcode file which produces more than one equivalent representation. opt --my-pass <%s | Filecheck %s --my-pass generates files a.rpt b.rpt c.rpt . How do i write test without writing all 3 files to stdin. I have considered CHECK-LABEL for each. it creates bulky checks. Thanks Mahesh -------------- next part -------------- An HTML attachment was
2010 Nov 16
1
DAHDI / dial in / overlap digits / timeout
Hi, our Asterisk is connected to an E1 port. So we are using the DAHDI-Driver. Please , how do I tell the driver/Asterisk to wait for overlap digits for in-calls? I found the option "overlapdial=yes" but I did not try yet. Is that "my" option? Is there any option for setting an timeout? Thorsten
2017 Oct 03
2
About LLVM Pass dependency
Hello I am working on pass which has dependency on multiple passes. Say D1,D2,D3 I used INITIALIZE_PASS_BEGIN INITIALIZE_PASS_DEPENDENCY(D1) INITIALIZE_PASS_DEPENDENCY(D2) INITIALIZE_PASS_DEPENDENCY(D3) INITIALIZE_PASS_END. While running it through opt tool it, I had to specify this D1,D2,D3 pass names to get this pass executed before my pass. Is there way, to let llvm pass manager to know
2017 Oct 03
1
About LLVM Pass dependency
Hi Hongbin I am not quite familiar with AnalysisUsage, let me correct question a bit. I have read Writing Pass <http://llvm.org/docs/WritingAnLLVMPass.html#specifying-interactions-between-passes>, All examples that i see here are based on collecting information .i.e Analysis Passes. I wonder if this applies to Transformation passes also. e.g. void MyInliner::getAnalysisUsage(AnalysisUsage
2006 Sep 04
3
Subsetting vectors based on condition
Hello, I have a question regarding subsetting of vectors. Here's an example of what I'm trying to do: vect.1 <- c(76,195, 290, 380) vect.2 <- c(63, 95, 133, 170, 215, 253, 285, 299, 325, 375) I would like to subset vect.2 so that it has the same length as vect.1, and its numbers are the first corresponging higher value compared to vect.1. The output should be: final.output =
2017 Dec 11
2
target porting : objdump is not giving proper registers.
Hi, we have seen proper register numbers when we have generated assembly files through clang but when we generated dump files from object file then we didn't see expected register numbers. Note : all registers are replaced with R0 *Disassembly of section .text:00000000 <main>: 0: 3000ffcc addik r0, r0, -52 4: f8000000 swi r0, r0, 0 8:
2010 Nov 08
15
Can I use shorewell stuff for my problem
Hi all, Im new to shorewell, can anyone guide me whether I can use shorewell for my work. I have a requirement in our work: Each system shall have two Ethernet card interfaces(system means hardware devices, servers, clients in other words any device or host used in the project). The IP address of each interface will be of different networks, subnets and gateways completely. Bcoz if one of