similar to: Glusterfs over wan?

Displaying 20 results from an estimated 2000 matches similar to: "Glusterfs over wan?"

2014 Oct 21
1
Samba member server behavior if WAN down ?
Hello, we are trying to use samba 3.6 over a big network with multiple xdsl link (512Kbit to 10 Mbits not symetric). We have a main site with two domain controlers (Windows 2k8 R2) and about one hundred middle sites with samba member servers. We have a big issue with Active Directory (AD) ACL which disapear when member server (powered by samba and winbind) can't discuss (for network
2009 Jan 15
2
[LLVMdev] Testcase for OS kernel
Hi, The source attached at the bottom is a testcase which causes a back-end error in LLVM 2.4. These types of assembly routines are mainly used in OS kernels. I checked that GCC 4.3 works for this routine. The error messsage is ... Couldn't allocate output reg for constraint 'A'! I just need help or comments so that I could analyze and fix this bug. My
2001 May 03
2
configure problem
Hi! I am trying to install samba 2.2 on a Sun and I'm getting this error: ./configure --prefix=/local --with-ssl checking how to get filesystem space usage checking statvfs64 function (SVR4)... no checking statvfs function (SVR4)... no checking for 3-argument statfs function (DEC OSF/1)... no checking for two-argument statfs with statfs.bsize member (AIX, 4.3BSD)... no checking for
2009 Jan 18
3
[LLVMdev] Qs on building LLVM passes
Hi, I have couple of questions that those who design unconventional passes would be interested in. 1. How to move a virtual register data to another new virtual register? It seems like that there is no LLVM instruction similar to mov machine instruction. Arithmetic or logical operators could be used for integer variables but what about pointer variables? 2. What is
2011 Jan 30
5
How to relocate $HOME directory
Hi there, As you know, $HOME is generally located at "/home/$username" by default. I would like to re-locate all users' $HOME directories to something like "/export/home/$username" without having a hassle/trouble. Initially, I've thought of just copying them to the new directory (under /export/home/xxx), but guessed it might trouble for the normal use (I'm pretty
2008 Dec 14
3
[LLVMdev] How to correlate LLVA with native ISA
Thank your for reply. The reason why these information are needed is that I am trying to extract the program signature (e.g., control flow) out side of the binary. Conventional compiler technique adds extra checking code into the target source or target IR in an invasive manner. Since code generator combines the added code with the original one, they don't need to correlate these two
2008 Dec 08
0
[LLVMdev] How to correlate LLVA with native ISA
Keun Soo Yim wrote: > > Hi, > > How to correlate the LLVM IR-leve instructions and memory values > with the machine instructions and memory locations? Can you tell us what goal you are trying to accomplish that requires you to do this? There might be better ways of doing what you want. The answer to your question probably depends on whether you're trying to write a
2005 Aug 04
4
What's the Linux equivelant of an exe file?
This is one of those questions that seems to be soo obvious to people that no one feels the need to have an explanation anywhere. I've been looking around the net for ages, and I can't figure out what, on Linux, is actually a program. I've downloaded OpenOffice 1.9 Beta, and would like to run it. I go to the /opt/openoffice.org1.9.122/program/ directory and... then what? What do
2011 Jan 25
2
regarding quit, exit and stop now in asterisk
Hi all, i am running asterisk by using command asterisk -r, asterisk -vc ............ when i want to come out of asterisk it not getting exit or quit from the shell.... i have tried soo many options like... stop now stop gracefully exit stop quit its not working stillll can any one tell me what would be the problem with this? please help me ... :( with regards, viswavardhan
2009 Feb 12
9
df -k takes too long only at random times
How do I find out why df -k is taking soo long to respond only sometimes? -- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing?
2009 Dec 22
3
iptables ... *BSD pf ... pfSense
Hi, I followed the "Optimizing CentOS for gigabit firewall" posting and as some posters wrote pf is soo sooo ssooooo mutch faster, I was thinking to give it a try. But I'm not familier to BSD so I was looking for some tools and found "pfsense" http://www.pfsense.org/ "pfSense is a free, open source customized distribution of FreeBSD tailored for use as a
2008 Dec 08
2
[LLVMdev] How to correlate LLVA with native ISA
Hi, How to correlate the LLVM IR-leve instructions and memory values with the machine instructions and memory locations? For example, if CMP instruction in machine ISA is selected for the ICMP instruction in LLVA, with the Instruction datastructure for ICMP, is it possible to get the memory address of CMP instruction? Assume that the code segment base address is given. Similarly, by
2010 May 02
3
help with tapply or other apply
Hi, my data looks this: id forma program kod obor rocnik 1 10001 kombinovan? Matematika M1101 matematika 1 2 10002 prezen?n? Informatika N1801 teoretick? informatika 1 3 10002 prezen?n? Informatika B1801 obecn? informatika 3 4 10003 prezen?n? Informatika M1801 softwarov?
2020 Feb 23
4
OwnCloud vs NextCloud
On February 22, 2020 9:02:05 PM EST, "bryn1u85 ." <m.bryn1u at gmail.com> wrote: >The Nextcloud has more features and all are for free. The ownCloud has >some >for enterprise features which are paid. Soo i think the choice is >clear. > >niedz., 23 lut 2020 o 02:35 H <agents at meddatainc.com> napisa?(a): > >> I am planning to install either ownCloud
2001 Nov 08
4
win2k + >2GB files problem
hi! I have a problem with rsync (current CVS version), running on a win2k machine (rsync compiled using Cygwin). c:\rsync>rsync --version rsync version 2.4.6dev protocol version 24 Copyright (C) 1996-2001 by Andrew Tridgell, Paul Mackerras and others Capabilities: 64-bit files, socketpairs, hard links, symlinks It can DOWNload >2gb files from my linux box (with rsync reporting negative
2003 Aug 14
1
Monitor Modules
Hello Everyone, I am porting ssh IBM's AS400 and am having a hard time with the monitor modules (monitor.c, monitor_fdpass.c, monitor_mml.c, monitor_wrap.c) I first of all don't understand what these modules are doing, and the parts I do understand don't make sense to me. So if anyone out there could be soo kind to help me out with this issue I would be greatly appreciative. Thank
2008 Dec 25
1
[LLVMdev] how to get the llvm IR from C source code?
Keun Soo Yim wrote: > > Please run… > > $ llvm-gcc -O3 -emit-llvm hello.c -c -o hello.bc > > $ llvm-dis < hello.bc > hello.ll > > The first command is to generate a byte code > > and second is to translate the bytecode to a readable form. > llvm-gcc can emit the textual form directly too: llvm-gcc -O2 -emit-llvm hello.c -S -o hello.ll llvm-gcc -O2 -emit-llvm
2010 Feb 23
1
S_ISSOCK fails in openssh >= 5.1
Starting with openssh 5.1 the following code fails (when executed on a remote host)... prior to 5.0 this worked, ie S_ISSOCK says STDIN is a socket. struct stat s; fstat(STDIN_FILENO, &s); if (S_ISSOCK(s.st_mode)) // STDIN is a socket else // STDIN is not a socket Soo... if I have a command on a remote host that includes the above code and I ssh to the remote host
2008 Mar 28
1
Yum update erased jdk, jre, and fuse-davfs2
I just did a yum update. It pulled in a number of updates including the latest firefox and davfs2.i386. Then I watch the following show up during the cleanup phase of yum (/var/log/messages): Mar 28 15:42:18 nc2400 Erased: jdk Mar 28 15:42:25 nc2400 Erased: jre Mar 28 15:42:31 nc2400 Erased: fuse-davfs2 Are the first jsut removal of the alternatives? How do I tell and how do I find that
2004 Feb 22
1
New Perl module Statistics::R
I have released the new module Statistics::R and need some feedback of it's status. This will permit the control of the the R (R-project) interpreter through Perl in different architectures and OS. You can for example, start only one instance of the R interpreter and have different Perl process accessing it. What will save the initiation time of R and memory. Soo, I will appreciate if some