Displaying 20 results from an estimated 5000 matches similar to: "Running Win32 application from wine"
2013 May 29
1
smbclient fails only for the domain Administrator
4.0.6 with 3.6.12 file server
Hi
Ordinary users can connect fine:
smbclient //oliva/users -Usteve2
Enter steve2's password:
Domain=[HH3] OS=[Unix] Server=[Samba 3.6.9]
smb: \>
log:
schannel_fetch_session_key_tdb: restored schannel info key
SECRETS/SCHANNEL/OLIVA
schannel_store_session_key_tdb: stored schannel info with key
SECRETS/SCHANNEL/OLIVA
auth_check_password_send: Checking
1998 Aug 20
1
Amanda + SAMBA 1.9.18p8 => useless backup
Ronny Blomme <Ronny.Blomme@elis.rug.ac.be> writes:
> The default configuration for smbclient in samba-1.9.18p8 is to send
> verbose output to stdout. The output sent to tape is a mix of this
> verbose output and the tar-file => corrupt tar file on tape
The attached patch for SAMBA fixes this problem, preventing log
messages from being printed to stdout if the tar-file is
2002 Dec 26
3
Win98 clients not 'seeing' each other
Hi there,
I have a somewhat wide experience with samba. I've succesfully installed
it as a client as well as a PDC on Windows networks.
The last time, however, there has been an issue with the win9x stations.
I've setup the Samba server over Linux to act as a PDC for the domain. I
use dhcp to assign the network configuration to the hosts, and the only
protocol installed on them is
2001 Jan 17
2
OpenSSH 2.3.0p1 won't build on IRIX 5.2
It depends on regex.h, that is not part of IRIX 5's standard library
and, in fact, that is no portable in general. I'm currently using
GNU rx as a replacement, but it would be nice to have a portable
implementation of regular expressions built into OpenSSH, if it is to
depend on them.
Best regards,
--
Alexandre Oliva Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat
2003 Jan 06
1
Using user account information from another machine
Hi,
I had no responses to my previous message about setting up a samba linux
fileserver using account info from another linux box, so I've tried to
figure out a solution.
I need to have two separate servers, one holding the UNIX accounts for
the users and also acting as a PDC, and a second one acting as a mere
file server with a backup unit (perhaps a DVD-RW).
All I want to do is that the
2004 Oct 04
2
Network browsing with through OpenVPN
Hi all,
I have succesfully joined together three LANs using OpenVPN over Linux
(Debian) gateways at the 'exit' of each one of these LANs.
The VPN seems to be OK, as I can ping network hosts from one LAN to
another using their private IP addresses with no problem at all.
However network browsing through the VPN is not working.
The network diagram for my setup is at
2013 Sep 13
1
glusterfs-3.4.1qa2 released
RPM: http://bits.gluster.org/pub/gluster/glusterfs/3.4.1qa2/
SRC: http://bits.gluster.org/pub/gluster/glusterfs/src/glusterfs-3.4.1qa2.tar.gz
This release is made off jenkins-release-42
-- Gluster Build System
2009 Jul 17
2
[LLVMdev] Stack Management in LLVM
On Thu, Jul 16, 2009 at 9:29 PM, Joshua
Moore-Oliva<llvm-dev at chatgris.com> wrote:
> To the list of modifications I need to be able to perform, add
>
> the ability to specify the ordering of local variables in the stack
If you need specific locations for everything you're allocating on the
stack, you should probably just use a continuation-passing style like
the one mentioned
2011 Aug 08
7
“bio too big” regression and silent data corruption in 3.0
tl;dr version: 3.0 produces “bio too big” dmesg entries and silently
corrupts data in “meta-raid1/data-single” configurations on disks with
different max_hw_sectors, where 2.6.38 worked fine.
tl;dr side-issue: on-line removal of partitions holding “single” data
attempts to create raid0 (rather than single) block groups. If it can''t
get enough room for raid0 over all remaining disks, it
2020 Jan 04
2
A modern object-oriented machine learning framework in R
Estimadísimo Carlos:
Muchísimas gracias por responderme y
hacerlo tan rápido. Contemplé esa posibilidad, es decir, que el
hiperparámetro estuviera suponiendo un problema, y probé de esta forma:
> learner <- lrn("classif.ranger", num.trees = 5, mtry = NULL)
Error: Element with key 'classif.ranger' not found in DictionaryLearner!
2007 Jul 08
6
Permissive devices in Xen
Hello,
is there any reason why even permissive devices cannot write some areas in the
PCI config space?
The PCI_COMMAND is handled in special way so that the device is
enabled/disabled properly, am I right?
Why is PCI_INTERRUPT_LINE read from dev->irq and not from the config space?
Why the PCI address bars are handled in very different way? And it seems that
writing these bars is never
2013 Mar 18
27
corruption of active mmapped files in btrfs snapshots
For quite a while, I''ve experienced oddities with snapshotted Firefox
_CACHE_00?_ files, whose checksums (and contents) would change after the
btrfs snapshot was taken, and would even change depending on how the
file was brought to memory (e.g., rsyncing it to backup storage vs
checking its md5sum before or after the rsync). This only affected
these cache files, so I didn''t give
2013 May 26
1
samba3 file-server crash for Samba4 DC
Hi
I have a s3 fileserver joined to a s4 DC
Here is smb.conf on the fileserver:
[global]
workgroup = HH3
realm = HH3.SITE
security = ADS
kerberos method = system keytab
winbind enum users = Yes
winbind enum groups = Yes
idmap config *:backend = tdb
idmap config *:range = 3000-4000
idmap config HH3:backend = ad
idmap config HH3:range = 20000-40000000
idmap config HH3:schema_mode = rfc2307
winbind
2009 Jul 17
2
[LLVMdev] Stack Management in LLVM
Hi, going through the tutorial (http://llvm.org/docs/tutorial/LangImpl8.html)
it linked to a post from 2004
(http://nondot.org/sabre/LLVMNotes/ExplicitlyManagedStackFrames.txt) stating
that LLVM does not allow explicit stack management. It also mentioned that
this was a deficiency in LLVM, leading me to think that there is a
possibility that things have changed since them.
I'm not just
2009 Jul 23
0
[LLVMdev] Stack Management in LLVM
If I could reduce my requirements to the ability to the following:
* Ability to know how much stack space a function requires
* Move the stack pointer arbitrarily (the ability to write my own function
prologue and epilogue, would need to be able to insert assembly/low level
code here) before and after a method call
could LLVM do that for me, using the system stack, (not continuations
2020 Jan 03
2
A modern object-oriented machine learning framework in R
Estimados amigos:
Esta tarde he estado probando la librería
mlr3, que me resulta muy interesante para trabajos de clasificación. En
concreto, para entender su funcionamiento he probado un ejemplo simple
(viene en CRAN). Sin embargo, cuando cambio el parámetro de clasifiación en
la función de aprendizaje, me aparece el error siguiente:
*Error: Element with key
2009 Jul 24
2
[LLVMdev] Stack Management in LLVM
On Thu, Jul 23, 2009 at 4:06 PM, Joshua
Moore-Oliva<llvm-dev at chatgris.com> wrote:
> If I could reduce my requirements to the ability to the following:
> * Ability to know how much stack space a function requires
> * Move the stack pointer arbitrarily (the ability to write my own function
> prologue and epilogue, would need to be able to insert assembly/low level
>
2009 Mar 12
1
migration from dovecot to dovecot on different servers without downtime (dovecot replication?)
Hello,
I have an imap server with huge Maildirs and several users running
dovecot 1.0.13, I need to migrate all the imap accounts to a new box
which runs dovecot 1.1.4.
The requisite is that need to do it with no downtime or minimal downtime
possible, and totally transparent for end users.
I have tried IMAP<-->IMAP syncing using a master user in both servers
and imapsync, however due
2020 Aug 03
2
State-of-the-art NLP models from R
Hola Diego,
Prueba a hacer otra cosa.
- Abre una consola y activa ese environment que has creado (r-reticulate)
- Y una vez activado escribe "python". Entrarás a la consola de
"python".
- Ahí, escribe "import transformers"
- Si no te devuelve error, es que en el entorno está bien instalado esa
librería y por tanto el problema es de acceso desde
2014 Nov 07
4
[Bug 10925] New: non-atomic xattr replacement in btrfs => rsync --read-batch random errors
https://bugzilla.samba.org/show_bug.cgi?id=10925
Bug ID: 10925
Summary: non-atomic xattr replacement in btrfs => rsync
--read-batch random errors
Product: rsync
Version: 3.1.0
Hardware: All
URL: http://article.gmane.org/gmane.comp.file-systems.btrfs
/40013
OS: All