search for: ccox

Displaying 9 results from an estimated 9 matches for "ccox".

Did you mean: cox
2019 Oct 03
2
Browsing shares of a server
...t the expert here, but: > > A) you are using Samba as a standalone server 'security = user' > > B) you also seem to want to use another server for passwords 'password > server = ldap.skopos.me' > > C) Samba tries to use kerberos : > > ???? Enter SKOPOS\ccox's password: cli_session_creds_prepare_krb5: Doing > kinit for ccox at SKOPOS to access doc_svr2 > ???? kerberos_kinit_password: as ccox at SKOPOS using [MEMORY:cliconnect] as > ccache and config [(null)] > > ???? And fails: > > ???? Kinit for ccox at SKOPOS to access doc_...
2019 Oct 03
2
Browsing shares of a server
On 9/27/19 1:39 PM, Jeremy Allison wrote: > On Fri, Sep 27, 2019 at 01:36:42PM -0500, Christopher Cox via samba wrote: >> On 9/27/19 1:32 PM, Rowland penny via samba wrote: >> ....snippity... >>> I repeat, smbclient never had anything to do with network browsing, so >>> it is unlikely to have anything to do with Network Discovery. Perhaps >>> you are
2019 Oct 03
0
Browsing shares of a server
...amba.org/show_bug.cgi?id=14151 > I am not the expert here, but: A) you are using Samba as a standalone server 'security = user' B) you also seem to want to use another server for passwords 'password server = ldap.skopos.me' C) Samba tries to use kerberos : ???? Enter SKOPOS\ccox's password: cli_session_creds_prepare_krb5: Doing kinit for ccox at SKOPOS to access doc_svr2 ???? kerberos_kinit_password: as ccox at SKOPOS using [MEMORY:cliconnect] as ccache and config [(null)] ???? And fails: ???? Kinit for ccox at SKOPOS to access doc_svr2 failed: Cannot find KDC...
2019 Oct 03
0
Browsing shares of a server
...>> A) you are using Samba as a standalone server 'security = user' >> >> B) you also seem to want to use another server for passwords 'password >> server = ldap.skopos.me' >> >> C) Samba tries to use kerberos : >> >> ???? Enter SKOPOS\ccox's password: cli_session_creds_prepare_krb5: Doing >> kinit for ccox at SKOPOS to access doc_svr2 >> ???? kerberos_kinit_password: as ccox at SKOPOS using [MEMORY:cliconnect] as >> ccache and config [(null)] >> >> ???? And fails: >> >> ???? Kinit for...
2019 Nov 12
1
Tracking of SAMBA users activity
Hello, I would like to know if there is a SAMBA feature () that tracks users' login/logout (by name and not by IP address) accessing the shares. Maybe by using Unix command lines, do you know into which log files these information are stored in ? ie "Share ID" Date Time "Username" logged in "Share ID" Date Time "Username" logged off ? I tried
2019 Nov 14
0
Tracking of SAMBA users activity & log files
...= full_audit full_audit:prefix = %u|%I full_audit:success = connect disconnect Now, I didn't direct the syslog above, so likely all those messages would go to your default log file (e.g. /var/log/messages on many Linux hosts). Nov 12 12:03:30 samba-test smbd_audit: MYDOMAIN\ccox|192.168.1.1|connect|ok|test Nov 12 12:04:21 samba-test smbd_audit: MYDOMAIN\ccox|192.168.1.1|disconnect|ok|test Obviously, you can do more than just "connect" and "disconnect", see the man page referenced at the top. On 11/12/19 11:38 AM, Jean-Louis Renaud via samba wrote:...
2005 Mar 01
4
[LLVMdev] Using LLVM to target the JVM
Mips2Java solves the same problem. The latest version of Mips2Java is called NestedVM and is part of the larger Vexi project. Much work has been done on NestedVM and it is quite impressive. http://wiki.vexi.org/ Still, it could use a lot of improvement. It's biggest immediate problems are: 1) It doesn't integrate well into a standard (Ant-based) Java build 2) There is no documented
2005 Mar 01
2
[LLVMdev] Using LLVM to target the JVM
Hi, I'm interested in using LLVM to run source languages supported by GCC (mostly just C and Fortran, actually) on a JVM. There seem to be two general ways this could be accomplished. 1. LLVM bytecodes could be compiled to JVM bytecodes 2. LLVM bytecodes could be interpreted by a program running on a JVM Has anybody started work in either direction? Has anyone started work on anything
2005 Mar 01
1
[LLVMdev] Using LLVM to target the JVM
The reasons I'm interested in are compiling legacy Fortran/C code to Java bytecode are: 1) to run the same binaries on all platforms with a supported JVM 2) to run in environments with security restrictions (AKA sandboxes) I care about performance. A major reason that I'm attracted to LLVM is that it would seem to have a better upper limit for attainable performance. My primary