similar to: rsynch related question

Displaying 20 results from an estimated 1200 matches similar to: "rsynch related question"

2004 Sep 29
0
Rsynch question
Can a linux box running rsynch as either a client or server backup a remote windows mssql database without having to run mssql on the linux box via wine? -- My "Foundation" verse: Isa 54:17 No weapon that is formed against thee shall prosper; and every tongue that shall rise against thee in judgment thou shalt condemn. This is the heritage of the servants of the LORD, and their
2007 Apr 26
0
Need help to rsynch the directory structure only excluding the files from remote to local.
Hi Tim, I tried using the rsync like how you specified in your example and it worked fine. But when I tried it between my UNIX box and a remote server the command would just not complete and give any output whatsoever. This is how I did it: rsync -av --include '*/' --exclude '*' tashaikh@remotebox:/dw/etl/home/ prod/log/ /export/home/tashaikh/auto/log In the above I need to copy
2012 Jun 13
2
[LLVMdev] Assert in live update from MI scheduler.
On Jun 13, 2012, at 1:15 PM, Sergei Larin <slarin at codeaurora.org> wrote: > Andy, > > You are probably right here – look at this – before phi elimination this code looks much more sane: > > # *** IR Dump After Live Variable Analysis ***: > # Machine code for function push: SSA > Function Live Outs: %R0 > > BB#0: derived from LLVM BB %entry >
2012 Jun 13
2
[LLVMdev] Assert in live update from MI scheduler.
On Jun 13, 2012, at 10:49 AM, Sergei Larin <slarin at codeaurora.org> wrote: > So if this early exit is taken: > > // SSA defs do not have output/anti dependencies. > // The current operand is a def, so we have at least one. > if (llvm::next(MRI.def_begin(Reg)) == MRI.def_end()) > return; > > we do not ever get to this point: > >
2012 Jun 13
0
[LLVMdev] Assert in live update from MI scheduler.
Ok, after a long detour I am back to where I have started. I think there is a problem at dep DAG construction. Let me try to convince you. Here is the C code we are dealing with: push () { struct xx_stack *stack, *top; for (stack = xx_stack; stack; stack = stack->next) top = stack; yy_instr = top->first; } If the loop never iterates, "top" will have
2005 Jan 26
9
Cisco 7960 Message Light on multiple phones
Here is what I am attempting to do (which works well on Cisco Call Manger). I have some 7960's that have multiple lines on them. The second line specifically is a "helpdesk" line that is shared among multiple phones. Here is how I am making that line ring on multiple phones, maybe you have other suggestions: exten => 135,1,Dial(SIP/135@100&SIP/135@101,20,rt) So this
2012 Jun 14
1
[LLVMdev] Assert in live update from MI scheduler.
Sergei, Absolutely right, the copy/ldriw should not be reordered. I was attempting to explain that I consider it a phi-elimination bug, not a DAG builder bug. Liveness will also have problems with this code in the long run. To avoid confusion, I filed PR13112: Phi elimination generates uninitialized vreg uses, and disabled the SSA check until its fixes in r158461. However, your C code is also
2003 Apr 17
1
Odd error: Physical size does not match superblock size
Hello, I had something interesting happen on a RH8 ext3 system I setup.I am at a loss to understand what happened. Info: This system has two IDE disks, partitioned identically, and the largest partition on each (/dev/hda3 and /dev/hdb3, 96GB each) was mirrored in a linux software RAID-1 configuration. It was running fine for many months. Then I updated the kernel and needed to reboot accordingly.
2002 Aug 01
1
2 errors when running rsync
I'm kinda new to rsync, and decided to mirror openssl.org. When running the command below, as suggested by openssl.org, I get the following.. rsync -rztpv --delete rsync://ftp.openssl.org/openssl-ftp/ /home/ftp/pub/openssl/ I get the output: ----------------- receiving file list ... opendir(incoming): Permission denied done IO error encountered - skipping file deletion send_files failed to
2012 Jun 13
0
[LLVMdev] Assert in live update from MI scheduler.
Andy, You are probably right here - look at this - before phi elimination this code looks much more sane: # *** IR Dump After Live Variable Analysis ***: # Machine code for function push: SSA Function Live Outs: %R0 BB#0: derived from LLVM BB %entry %vreg5<def> = IMPLICIT_DEF; IntRegs:%vreg5 %vreg4<def> = TFRI_V4 <ga:@xx_stack>; IntRegs:%vreg4
2010 Mar 18
2
Rsync behaviour on harddisc crash
I was just pondering: Lets look at Server A with one extra harddisc hdb, where hdb1 is mounted at /mnt/folder. /mnt/folder is the folder which should be mirrored on Server B. So Server B rsyncs rsynch -a -delete server::folder /folder from Server A and gets all the new files and deletes all the files, which doesn't exist on Server A's /mnt/folder anymore. What would happen,
2012 Jun 12
2
[LLVMdev] Assert in live update from MI scheduler.
Hello everyone, I am working on a release based on the branch 3.1 version of code. Unfortunately it has enough differences that exact rev does not apply. I am hitting an assert in liveness update with seemingly trivial code (attached). /local/mnt/workspace/slarin/tools/llvm-mainline-merged/lib/CodeGen/LiveInter valAnalysis.cpp:1078: void
2007 Feb 28
1
Kickstart with all the latest updates?
Currently, I kickstart my machines over http to install CentOS 4.4 and then in a script called from %post do a "yum -y update" to install all the latest updates. Is there a way to set up the kickstart server so that I can do this all in one step? In other words, is there a "supported" way to roll in all the updates into the kickstart server? In case it matters, I
2005 Nov 09
1
Problem with rsync on WinXP going to HP-UX or Linux
Hi, I can't get rsync from a PC to an HP-UX or Linux box to work, and am hoping for a pointer or two. I checked the FAQ and googled ... with no luck, so I hope this isn't a patently obvious newbie problem :) I just got interested in trying to use rsync to backup my WinXP PC to a Linux or HP-UX computer. I got the cygwin package from Robert Scholten's site at
2004 Dec 23
2
local yum repository
bit off topic, but.... I've set up my first Centos gateway server and now setting up another server on internal network. I thought it would be nice to use the gateway servers "/var/cache/yum" as a local repository for any internal servers since it would be up to date with the lastest packages and save bandwidth. So... I created a sym link to create a repository through gateways
2012 Jun 13
0
[LLVMdev] Assert in live update from MI scheduler.
On Jun 12, 2012, at 10:22 AM, Sergei Larin <slarin at codeaurora.org> wrote: > > Hello everyone, > > I am working on a release based on the branch 3.1 version of code. > Unfortunately it has enough differences that exact rev does not apply. > I am hitting an assert in liveness update with seemingly trivial code > (attached). > >
2012 Jun 11
0
[LLVMdev] scoreboard hazard det. and instruction groupings
On Jun 11, 2012, at 12:07 PM, Hal Finkel <hfinkel at anl.gov> wrote: > Looking at VLIWPacketizerList::PacketizeMIs, it seems like the > instructions are first scheduled (via some external scheme?), and then > packetized 'in order'. Is that correct? Anshu? > In the PowerPC grouping scheme, resources are assigned on a group > basis (by the instruction dispatching
1998 Feb 17
1
R-beta: R on AIX running with errors
Hi, I am doing a project to make R-0.61.1 available on 30 IBM RISC/6000 machines running AIX 4.1.5.0. Running the make command works fine after some changes, but R does not behave as it should. Here some examples of error messages which I get: > plot(1:20) Error: Length cannot be negative > hist(1:20) Error in seq(z$l, z$u, length = z$n + 1) : negative length vectors are not allowed >
2003 Oct 30
6
Info on UK ISDN30e?
Hi :) My employer is looking to move a call centre to a new office, and has been increasingly frustrated with their legacy PBX (call-logging licensing and hardware upgrade costs). So I've stepped forth as the Open Source Pedant and suggested Asterisk so we can do all our own CallerID / call logging / analyses, and make use of IP Phones / teleworking, etc. The problem begins in that I only
2012 Jun 11
3
[LLVMdev] scoreboard hazard det. and instruction groupings
On Mon, 11 Jun 2012 10:48:18 -0700 Andrew Trick <atrick at apple.com> wrote: > On Jun 11, 2012, at 9:30 AM, Hal Finkel <hfinkel at anl.gov> wrote: > > > I'm considering writing more-detailed itineraries for some PowerPC > > CPUs that use the 'traditional' instruction grouping scheme. In > > essence, this means that multiple instructions will stall