Displaying 6 results from an estimated 6 matches for "testu".
Did you mean:
test
2010 Jun 02
1
openssh sftp fails to start a session
Hi,
I am having trouble running sftp from the openssh package openssh-5.5p1. There seems to
be an authentication problem.
This is what happens:
$ sftp -o "Port 2022" testu at localhost
testu at localhost's password:
Connection closed
QUESTION:
Can someone spot the problem please? How do I fix this?
FURTHER INFORMATION
I can run openssh's ssh:
$ ./ssh -p 2022 testu at localhost
testu at localhost's password:
Last login: Wed Jun 2 12:55:01 2010 from loca...
2004 Jun 23
0
XP Client can't log on PDC/LDAP configuration
...an obvious problem in the log (other then the []\[] user
problem and I don't know what that means or how to fix it)
I've included my configuration files if anybody has a clue I would
appreciate the help, TIA
dougw
pdbedit -v of the user I'm trying to log in as
Unix username: testu
NT username: testu
Account Flags: [U ]
User SID: S-1-5-21-2381800297-159120370-3622294204-31000
Primary Group SID: S-1-5-21-2381800297-159120370-3622294204-2028
Full Name: Test W. User
Home Directory: \\norgay\nhome\testu
HomeDir Drive:...
2006 Jan 20
2
Assertation failed when trying to login twice in one session
Hello,
this command:
echo "user testu
pass q" ; sleep 5; echo "user testu
pass test
quit" | nc localhost pop3
results in this assert:
dovecot: Jan 20 10:16:09 Error: auth(default_with_listener): file
auth-client-connection.c: line 33 (auth_client_send): assertion failed:
(conn->refcount > 1)
dovecot: Jan 20 10:...
2010 Mar 12
1
unable to get domain list of KVM guests from libvirt as non-root user
...l/hypervisor versions of Xen and KVM servers:
kernel-xen-2.6.18-164.9.1.el5
xen-3.0.3-94.el5_4.2
kvm-83-105.el5_4.27
kvm-qemu-img-83-105.el5_4.27
kernel-2.6.18-164.11.1.el5
To troubleshoot, I've been running python interactively as the non-root
user. Here's how my Xen servers behave:
[testu at xen ~]$ python
Python 2.4.3 (#1, Sep 3 2009, 15:37:37)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import libvirt
>>> conn = libvirt.openReadOnly(None...
2013 Nov 26
0
Budete mit erekci, kdy se Vam zachce
...2. A? o 94 % lep?? schopnost orgasmu
3. Za m?n? ne? 45 minut a? k?orgasmu
4. A? 78 % m?n? ?navy po aktu
5. V?ce ne? dvojn?sobn? dlouh? pohlavn? styk
?
V?ICHNI ??ASTN?CI TESTU M?LI LEP?? ORGASMY A ?AST?J?? POHLAVN? STYK.
?
Jak funguje TIGRA?
?
Bod 1 - Tigra zlep?uje n?ladu a dok??e nadobro skoncovat se stresuj?c? impotenc?
Stres je jedna z?hlavn?ch p???in pro poruchy orgasmu. Mu?i, kte?? jsou pracovn? nebo doma vysta...
2014 May 22
4
[LLVMdev] RFC: Indexing of structs vs arrays in getelementpointer
...would allow for the optimization to occur.
It is worth noting up front that I could certainly do this optimization in a peephole, but I think by looking at some broader changes it might be possible to tease out other optimization opportunities.
The problem:
On x86 when you compile:
unsigned testu(llvm::DenseMap<unsigned, unsigned> &dm, unsigned key) {
return dm.lookup(key);
}
is compiled down it contains:
leaq (%r8,%rdi,8), %rax
movl 4(%rax), %eax
when what you really want is:
movl 4(%r8,%rdi,8), %eax
Exactly how bad that is depends on the exact micro architecture...