search for: lu2

Displaying 6 results from an estimated 6 matches for "lu2".

Did you mean: l2
2004 Mar 17
1
file name starting with [0-9]* not synchronized (!?)
...trying to backup a remote directory. Although the remote directory hasn't been changed after rsync's run, I realize that the supposed synchronization missed some files. Does it have to do with rsync or I miss something ? Thanks very much, Mihai. ______________________________ quad ...lu2/BACKUP/k2/mnt/i1/vbs# rsync -av --stats rsync://mlozo@k2/vobuser/user /mnt/lu2/BACKUP/k2/mnt/i1/vbs/ --password-file=/mnt/lu2/BACKUP/rsync/.pass receiving file list ... done Number of files: 271 Number of files transferred: 0 Total file size: 1207607 bytes Total transferred file size: 0 bytes...
2011 Nov 07
1
Aggregate or extract function ?
...47 12 2 -86.58333 66.25000 0 16 119 -345 42 3 3 -62.58333 -17.91667 0 68 334 152 144 28 4 -68.91667 -31.25000 0 54 235 -45 25 7 5 55.58333 48.41667 0 23 319 -172 23 14 6 66.25000 37.75000 0 34 363 -18 49 0 and this one : X Y LU1 LU2 LU3 LU4 LU5 LU6 LU7 LU8 LU9 LU10 LU11 LU12 LU13 LU14 LU15 LU16 LU17 LU18 1 -36.5 84 0 0 0 0 0 0 0 0 0 0 0 0 0 0.000000 0 0 0 0 2 -36.0 84 0 0 0 0 0 0 0 0 0 0 0 0 0 0.000000 0 0 0 0 3 -35.5 84 0 0 0...
2011 Aug 27
3
Windows and Ubuntu and Windows and......
...longer supported or run correctly on Vista or Win7, but work happily in XP. These are used for my business and are mission critical. The two main ones are Labels Unlimited and Sage Line50 ver11. I am fed up with being told to keep buying new software because Windows no longer supports my software. LU2 is no longer available, So I have been persuaded to try Ubuntu. So far so good. Here's the snag - both programs access their data across the Windows Domain, and need to see a mapped drive (G: )! I have installed Ubuntu and Wine(1.2)and Samba. I have (after a bit of faffing around) installed b...
2007 Dec 31
16
Firewall frustration
Well FWbuilder is NOT easy. The documentation does not match the current GUI. Now the box is locked up. I will have to pull it again, hook it up to a kybd/VGA and reset iptables.... Maybe Shoreline with webmin.... Problem is I want a REAL router/firewall with little work. Both public and private nets have routable addresses. No NATing for me! I just help write the RFC ;) And all the
2020 Apr 02
2
[RFC] [Windows SEH] Local_Unwind (Jumping out of a _finally) and -EHa (Hardware Exception Handling)
* When a goto in a _finally occurs, we must "unwind" to the target code, not just "jump" to target label I'm not sure what you're trying to say here. In the Microsoft ABI, goto out of a catch block also calls into the unwinder. We have to run any destructors, and return from the funclet (catchret/cleanupret). * The call inside a _try is an invoke with EH
2020 Apr 01
2
[RFC] [Windows SEH] Local_Unwind (Jumping out of a _finally) and -EHa (Hardware Exception Handling)
...njected for each target. The catchpad/catchret must be added at the same _try scope as its corresponding target label. For example, Try { try { try { /* inner try */ if (ex) RtlRaiseException(&ExceptionRecord); } finally { if (lu) goto t10; else if (lu2) goto t20; else if (lu3) goto t30 printf(" inner finally: normal return \n\r"); } } except(Counter) { /* inner handler */ } // after inner handler t10: ... t20: .. except(1) { /* outer handler */ } // after outer try t30: // after t30 The...