Displaying 20 results from an estimated 1000 matches similar to: "SAMBA digest 1706"
1998 Jun 02
0
ARGH!! why does my samba server lose domain master elections??
Subject pretty much says it all.
(And *please* don't point me BROWSING.txt since I've been there done
that and it still doesn't work)
First let me vent...
What a shit microsoft is for doing the following...
creating a browsing protocol where the WINS server is dynamically
elected from a possibly infinite set of machines; yet you need to
hard code a static address in the
1998 Jun 03
0
SAMBA digest 1706 (PR#7484)
dan@gasboy.com wrote:
>
>
> Me too. Samba 1.9.18p7. It doesn't happen right away, though. Several
> days of running, and nmbd begins losing elections consistently, although
> it is still responding.
>
> My workaround is a script that runs once a minute looking to see who is
> master. When it sees the samba server isn't, kills nmbd on the
> server then
2004 Dec 01
1
masquerading problem
I have to restart my shorewall manually everynow &
then cos my masquerading will failed and terminal
inside my lan will not have access to the internet.
Anyone know why? I''m using mandrake 10, shorewall
2.08, iptables 1.2.9.
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
2011 Oct 07
2
[LLVMdev] [cfe-dev] Release: Two Weeks 'Til 3.0 Branch
On Oct 7, 2011, at 1:29 AM, John Wiegley wrote:
>>>>>> Duncan Sands <baldrick at free.fr> writes:
>
>> If we had a larger set of volunteers that could help qualify releases AND
>> buildbots to continuously test the new release criteria, then we are willing
>> to expand this criteria. We haven't had a lot of volunteers step up in this
>> area
2011 Oct 07
0
[LLVMdev] [cfe-dev] Release: Two Weeks 'Til 3.0 Branch
>>>>> Duncan Sands <baldrick at free.fr> writes:
> If we had a larger set of volunteers that could help qualify releases AND
> buildbots to continuously test the new release criteria, then we are willing
> to expand this criteria. We haven't had a lot of volunteers step up in this
> area though.
Just to note, BoostPro has already expressed a willing to run
2000 Jun 11
0
ssh-agent2?
I noticed Mr. Manton queried about the availability status of
ssh-{agent,add}2 for OpenSSH.
I would also like to know when this feature will be added and
available?
I can help code it or document it but my understanding
of the inner workings of the SSH protocols is pretty much nil.
and the RSA authention agent routines seem pretty involved and
complex which sort of discouraged me right off the
2012 May 09
0
[LLVMdev] llvm.git mirror & release_31 branch
Hello Everyone
As some of you already noticed release_31 branch on llvm.git was
somehow created w/o history. I fixed this via manual grafting (kudos
to John Wiegley!), but please carefully watch the results:
1. refs in release_31 branch should be changed. This is expected and
this is the price we're paying for connected history (if you have
something on top you might want to do git pull
1999 Apr 10
0
smbprint(ing) to an HP 3100??
Jeff Wiegley wrote
>Date: Fri, 09 Apr 1999 11:36:34 -0700
>Subject: Re: smbprint(ing) to a HP 3100??
[snip]
>On a linux box:
>1) open up netscape
>2) print the netscape window to a file "netscape.ps"
>3) use ghostscrip to change it to an HP command language...
> gs -dNOPAUSE -sDEVICE=ljet2p -sOutputFile=bug.prn netscape.ps -c quit
>4) now use smbclient to print
1998 May 11
2
determining domain master and forcing elections?
Every now and then one of my lusers sets up a machine which attempts
to be a local master and/or a domain master for our workgroup. This
sucks since we want our samba machine to *always* be the WINS master
server. (we have os level set to 255 for this machine) but appearantly
it still loses elections that come up from time to time.
The only way I know when this happens is when people come to me
1997 Oct 30
1
necessary to bind TCP/IP to Microsoft network client?
Having some strange difficulties with samba...
it compiled fine and seems to be running ok but none
of my win95 client machines can see the samba server.
They can't even see the samba server when the server
is configured as a WINS server and the client is
configured to look at the server as its WINS server.
anyways, my clients all have the following...
microsoft network client
IPX protocol
2016 Dec 11
0
[PATCH 2/2] lib: use guestfs_int_make_temp_path to generate temporary files
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
src/drives.c | 5 ++---
src/file.c | 22 +++++++++-------------
src/journal.c | 4 ++--
src/tsk.c | 17 ++---------------
4 files changed, 15 insertions(+), 33 deletions(-)
diff --git a/src/drives.c b/src/drives.c
index 1e3b0af..1e04f81 100644
--- a/src/drives.c
+++ b/src/drives.c
@@ -421,7 +421,8 @@ create_drive_dev_null
2016 Sep 17
0
[PATCH 4/4] TSK: small refactoring
Removed duplicated code.
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
src/tsk.c | 69 ++++++++++++++++++++++++++-------------------------------------
1 file changed, 28 insertions(+), 41 deletions(-)
diff --git a/src/tsk.c b/src/tsk.c
index 6b1b29c..8e6d266 100644
--- a/src/tsk.c
+++ b/src/tsk.c
@@ -34,96 +34,71 @@
#include "guestfs-internal-all.h"
#include
2020 Apr 03
0
The finalizer of the externalPtr does not work when closing R?
See R_RegisterCFinalizerEx() and set onexit to nonzero. Here:
https://github.com/wch/r-source/blob/9353ddfa8d30069ad8975e0364307d710f2488d5/src/include/Rinternals.h#L1279-L1280
Gabor
On Fri, Apr 3, 2020 at 1:56 PM Wang Jiefei <szwjf08 at gmail.com> wrote:
>
> Hi all,
>
> I found that the finalizer of the externalPtr is not called when R is
> quitting. However, manually
2020 Apr 03
0
[External] The finalizer of the externalPtr does not work when closing R?
Use R_RegisterFinalizerEx in your C code. See
https://cran.r-project.org/doc/manuals/r-release/R-exts.html#External-pointers-and-weak-references
This still gives you only "best effort"; for anything stronger you
would need a different approach.
In general, finalizers should only be used as a backstop, not as a
primary resource management tool (in R or any other garbage-collected
2008 May 01
3
[LLVMdev] building cross llvm-gcc for new target
everyone--
I'm trying to build LLVM-GCC as a cross-compiler for a new target.
I've successfully patched binutils, the FSF GCC, LLVM and Clang to
build for this new target-- they work fine, but the LLVM-gcc build is
failing for me. All my llvm.org sources are tracking the Subversion
trunk, but my problem is probably not related to any ongoing churn
there. I'm doing something
2019 Apr 08
0
[PATCH v4 5/7] v2v: -o libvirt: switch away from virsh
Now that we have a proper libvirt connection object, use it directly to
refresh the storage pool, and define the final guest. This avoids
spawning a new virsh process twice, with no possibility to even share a
possible authentication required.
---
v2v/output_libvirt.ml | 35 ++++++++++++++++-------------------
1 file changed, 16 insertions(+), 19 deletions(-)
diff --git a/v2v/output_libvirt.ml
2020 Apr 03
4
The finalizer of the externalPtr does not work when closing R?
Hi all,
I found that the finalizer of the externalPtr is not called when R is
quitting. However, manually calling GC() works fine. This behavior is
observed on devel R 2020-04-02 r78142 on Win and R 3.6.3 on Ubuntu. I make
a reproducible package here: https://github.com/Jiefei-Wang/example
Here is the detail of how to reproduce the problem, I create a temporary
file in the package root path and
2016 Oct 24
0
[PATCH 2/2] builder: consolidate handling of temporary files/dirs
Create a single temporary directory for all the files created during the
virt-builder run (except big disk images, which already use the
libguestfs cache directory). A single directory means there is no need
to manually schedule all the temporary files and directories for removal
when the application quits.
---
builder/builder.ml | 12 ++++++++++--
builder/downloader.ml |
2016 Oct 25
0
[PATCH v2 2/2] builder: consolidate handling of temporary files/dirs
Create a single temporary directory for all the files created during the
virt-builder run (except big disk images, which already use the
libguestfs cache directory). A single directory means there is no need
to manually schedule all the temporary files and directories for removal
when the application quits.
---
builder/builder.ml | 12 ++++++++++--
builder/downloader.ml |
2017 Mar 13
0
[PATCH 1/2] v2v: -i ova: Hoist utility functions to the top of the file.
These functions obscure the true flow of the code, so hoist
them out of the source () method to the top of the file.
No change, just refactoring.
---
v2v/input_ova.ml | 139 +++++++++++++++++++++++++++----------------------------
1 file changed, 69 insertions(+), 70 deletions(-)
diff --git a/v2v/input_ova.ml b/v2v/input_ova.ml
index 72a63d3..9a6a615 100644
--- a/v2v/input_ova.ml
+++