similar to: Samba High Availability

Displaying 20 results from an estimated 800 matches similar to: "Samba High Availability"

2000 Feb 16
2
Embedding samba...
Hi All, I am working on a port of Samba to the uClinux/ColdFire system. This is a port of Linux running on the Motorola ColdFire processors. These processors have no MMU, so no virtual memory. It also means that there is no true fork() call, only a vfork() type primitive is supported. Other than this the fact that there is no MMU is pretty transparent applications, it looks like any other Linux
1999 Nov 09
2
netbios
Hi all, My NT environment cannot recognize my SAMBA servers(Bad IP address when ping from MS DOS prompt) and after I restarted the nmbd daemon it can see my SAMBA servers. Does anyone know why this happens? Is it there is a change in the WINS server's database? Please advise. thanks & regards, Bridget
1999 Oct 15
1
99.9% uptime
Sorry, forgot to change the subject on my first posting. I was reading a comment this morning about something Microsoft had published to the effect that there were vendors guaranteeing 99.9% uptime for NT. The guy who wrote the reply did the math for what that means, and the results are very interesting. Quote below: OK, now what does a 99.9% uptime guarantee mean? Well, it means that at
1999 Sep 13
2
smbfs mounted files created owned by root?
Hi all. We have been denying NFS access to our Linux et al users since they can of course set their uid to whatever they want. So we tell them to use smbfs. But when I just tried experimenting by mounting my own network share on my Linux box via smbfs, and created a few files, I loo on the serevr and the files are all owned by root?! This has got to be a configuration issue right? -- Mark E
2000 Apr 26
2
Rapid transfers cause kernel panic
Our site has been experiencing problems with Samba causing kernel panics under heavy use. We are running Mandrake 7.0 and Samba 2.0.6. We are no longer using the distro included with Mandrake - we actually downloaded the 2.0.6 release and recompiled. Downloading from Samba shares causes no problems - and downloads are frequent and heavy - but uploading similar amounts of data leaves a catatonic
2007 Feb 01
3
SEXP i/o, .Call(), and garbage collection.
Apologies for any obtuseness in the following. We have been working on Version 2.0 of the randomSurvivalForest CRAN package and we're encountering a perplexing 'memory not mapped' segfault that we believe is "influenced" by GC. We essentially have two R functions, rsf.default(..), and predict.rsf(..) and two corresponding entry points, rsfGrow(...), and rsfPredict(...),
2004 Nov 07
2
Flag file management techniques using rsync
G'day, I am just getting into rsync and have been very impressed with performance and reliability. There is one thing I haven't worked out how to do yet and I haven't found much with several Google sessions or by way of consulting the examples. I am looking for a way to check for (or duplicate) single flag files to and from a remote host (without any dummy spit errors when it is not
2009 Jan 10
2
Problem with compiling shared C/C++ library for loading into R (Linux)
I am using the .Call interface to call c++ code from R. For that, I am trying to create a dynamic library (mylib.so) using "R CMD SHLIB" by linking my own c++ code and an external c++ library (blitz++). The makefile works fine on my Mac, produces mylib.so and I am able to call .Call() from R, but on a linux server (I think Debian), I got the following error: ---------- /usr/bin/ld:
2009 Jan 10
2
Problem with compiling shared C/C++ library for loading into R (Linux)
I am using the .Call interface to call c++ code from R. For that, I am trying to create a dynamic library (mylib.so) using "R CMD SHLIB" by linking my own c++ code and an external c++ library (blitz++). The makefile works fine on my Mac, produces mylib.so and I am able to call .Call() from R, but on a linux server (I think Debian), I got the following error: ---------- /usr/bin/ld:
2010 Aug 11
3
Using command line --file or -f
*What I want to do: *Create a windows shortcut that will start the R gui **and** simultaneously source a file *What I have already tried: *This almost works, but it's not the interactive R GUI: R --no-save --sdi -file="C:\SomePath\example.R" These open the R GUI, but doesn't recognize -f --f --file -file RGUI --no-save --sdi -file="C:\SomePath\example.R"
2010 Apr 27
1
[LLVMdev] llvm-2.7: --with-udis86 failure
Debug build on x86_64 with`--with-udis86=<path>' option to 'configure' seems broken. Configure command line: ./configure --disable-optimized --enable-assertions --enable-debug-runtime --enable-debug-symbols --enable-jit --enable-pic --enable-targets=x86_64 --with-udis86=/somepath/udis86/udis86-1.7 At least 2 issues: (1) '-L/somepath/udis86/udis86-1.7' is added to the
2014 Oct 14
1
pop3-login segfaulting
I upgraded dovecot from v1 to v2 as part of a CentOS upgrade (5.6->6.5) and am now running on 2.0.9. Any time I connect to the pop or imap ports however I get "master: Error: service(imap-login): child 2860 killed with signal 11 (core not dumped - add -D parameter to service imap-login { executable }" after following the core dump instructions at http://www.dovecot.org/bugreport.html.
2011 Oct 10
1
pmml for random forest & rules
Hi, I am having some trouble using R 2.13.1 for generating a pmml object of of class "c('randomForest.formula', 'randomForest')" I see that these methods are available: > methods(pmml) [1] pmml.coxph* pmml.hclust* pmml.itemsets* pmml.kmeans* pmml.ksvm* pmml.lm* pmml.multinom* pmml.nnet* pmml.rpart* [10] pmml.rsf* pmml.rules* pmml.survreg*
2005 Nov 22
4
the matrix of rows with specific row sums
I am just starting with R and have the following problem: given a matrix of ones and zeroes, say mdim=4 m<-matrix(round(runif(mdim^mdim)),mdim,mdim) how to construct the matrix of those rows of m, whose elements sum to 2. Contrary to the random matrix above, the actual matrix always has at least one such row. Serguei Kaniovski
2016 Feb 08
3
strace clang refers files from lib/tls/x86_64 multiple times
Greetings! Sample program: int main(int argc, char **argv) { int myLocal=0xAA; return 0; } Command: clang t.c -o a.o -c With above simple program we are observing that clang is stat-ing and trying to open various files from lib/tls location. Eventually all calls to "lib/tls" leads to ENOENT (No such file or directory)! <sample_strace>
2013 Nov 25
4
question about file {} type
My class reads like: class name1::name2 ($gidvariable) { file { "somepath-to-file": ensure => file, mode => ''0640'', gid => $gidvariable, } } The problem is that the file isn''t getting set to the $gidvariable''s value which is a string "abc". The other things work (presence as file, mode). Stuart -- You
1999 Jan 23
3
What kind of system works best?
If any of you recall, I sent a message before regarding issues with a 100 client-based Samba server. After speaking with the company I'm working with and showing them some of the replies, they are enthusiastic about the system, and we're all looking forward to seeing it working. Thank you for all your replies and for your help. There were quite a few replies, and I can't get a
2000 Jan 16
1
Report on openssh-1.2.1pre26.tar.gz
Dear developers, I tried to make openssh-1.2.1pre26 on my Linux box with kernel 2.2.13 and libc 5.4.46. First I needed to modify the file "fake-getaddrinfo.h" as attached diff. Then I tried again, and gave up with the error: gcc -g -O2 -Wall -I/usr/local/ssl/include \ -DETCDIR=\"/usr/local/openssh/etc\" \ -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" \
2005 Jan 28
0
Oplocks with concurrent access from same client
I am observing the following behaviour with samba-2.2.12 (Yes, I know, it's old) and MS-Access XP on a Win2K box: The client opens a .mdb file and gets a level2 oplock. Then it opens the .mdb file again and loses the oplock (at least I assume it does: The server sends an SMBlockingX request to the client and waits for another SMBlockingX request from the client before sending the Reply to
2006 Oct 27
3
How to best divide table by table
Hi all, how can I divide two tables of the same dimension so that all names are preserved, ie do not become NA? I have "tab1" and "tab2", each having names in the first column. I want "tab3" with the same names and values "tab1/tab2". Thanks, Serguei