Displaying 20 results from an estimated 2000 matches similar to: "rync killing the machine"
2000 Jun 07
1
2.0.05a smbmount problem
I think that I have found what I consider a bug using smbmount 2.0.05a that
came with linux 6.1, and also have a question at the end of this e-mail.
I can successfully mount a shared drive from a windows NT machine using the
following format.
smbmount //computername/sharedfolder /mountpoint -U username%password
I can manipulate folders and files from the linux computer with no problem.
However
2006 Oct 12
1
clarifiaction about rync zlib.
i would like a more detailed answer to a question.
{Z_INSERT_ONLY is used to update history}
How is this feature used in rsync?
Other than transfering less data, what other aplications might this feature have?: https://webnetmail.port.ac.uk/w?aB.DDM.EK.UQJ-RugE.DCHEw.CbacuRQ.K
2014 Mar 05
2
[LLVMdev] github's llvm mirror down
Just curious, what's the reason we don't make the github mirrors the
official mirrors? ...besides not knowing how to revive them when they
go down. :)
-Greg
On Tue, Mar 4, 2014 at 5:35 PM, Steven Noonan <steven at uplinklabs.net> wrote:
> Someone should enable the smart HTTP protocol:
>
> https://www.kernel.org/pub/software/scm/git/docs/git-http-backend.html
>
> On
2014 Mar 05
3
[LLVMdev] github's llvm mirror down
> LLVM has its own mirror at http://llvm.org/git/llvm.git, if that suits your needs.
The llvm.org mirror seems to be quite a bit slower (~3.5x). I think
it's because github lets me use the git protocol whereas llvm.org
suggests http. When I try to clone "git at llvm.org:git/llvm.git", I'm
asked for a password for user 'git'.
-Greg
On Tue, Mar 4, 2014 at 3:54 PM,
2006 May 22
2
I've broken voicemail
I went to put in the new sound files over the weekend, but forgot to backup
the custom folder and lost my custom digital receptionist files.
I then had to copy the old files back from a duplicate machine.
The problem is now though that voicemail just hangs up when I dial it.
Other apps work - *70 for example gives me 'call waiting...activated' so I
know it's accessing the files
2004 Aug 06
2
Liveice & Icecast...help
I'm running FreeBSD 4.2. I downloaded and installed Icecast 1.3.10,
Liveice, mpg123, and Lame. I know the Icecast streamer is working because I
can feed it from WinAMP on my PC and listen to the stream somewhere else and
it sounds fine. I know liveice is working too because Icecast shows that it
connects and is sending audio to it. However when I listen to the stream on
my PC with WinAMP
2015 Jan 20
4
[LLVMdev] How to contact LLVM admins?
You can email the list, what url says that?
-Chris
> On Jan 20, 2015, at 9:31 AM, Greg Fitzgerald <garious at gmail.com> wrote:
>
> Ping
>
>> On Mon, Jan 19, 2015 at 9:52 AM, Greg Fitzgerald <garious at gmail.com> wrote:
>> I am not a member of the llvm-admin email list and on the description
>> of that page it says, "DO NOT MAIL THIS LIST!"
2009 May 25
3
Interpolating variables within (RODBC library) SQL statements for MySQL
Hi everyone,
I am desperately looking for a method to interpolate strings within an SQL
statement as follows:
I get a lot of rows out of a database (in my example POSITION_to_ZIPCODE
Database with holds records for German ZIP Code <--> Gauss-Krueger
Coordinate System ) and want this to be selected and computed individually
row by row as follows:
library(RODBC)
channel <-
2013 May 31
2
[LLVMdev] compiler-rt tests in cmake?
As a temporary fix, you can replace this line in sanitizer_linux_libcdep.c:
const uptr kThreadDescriptorSize = FIRST_32_SECOND_64(1216, 2304);
with
const uptr kThreadDescriptorSize = FIRST_32_SECOND_64(1168, 2304);
The tests should pass after that. I need to figure out which ifdefs to put
this under, so I might not be able to land the fix until Monday.
On Fri, May 31, 2013 at 8:48 PM, Greg
2013 May 31
3
[LLVMdev] compiler-rt tests in cmake?
Those changes shouldn't affect ARM at all, since everything is under #if
defined(__i386__) || defined(__x86_64__).
What version of glibc are you building with on x86?
On Fri, May 31, 2013 at 7:16 PM, Greg Fitzgerald <garious at gmail.com> wrote:
> The failures happen on x86 Linux, Ubuntu Lucid. On ARM Android, my
> example code segfaults, whereas before it worked. I
2013 May 29
4
[LLVMdev] compiler-rt tests in cmake?
> Cool, can you use clang 3.3 then? :)
I can, but digging deeper I see that the compiler-rt sanitizer tests depend
on just-built-clang for its object instrumentation. The next time the
instrumentation changes, I'd expect those tests to break. If the lit tests
that require -fsanitize were moved to the clang repo, then I think it'd be
safe to build compiler-rt with clang 3.3 or gcc
2005 Oct 25
6
ipf stopped working on 5.3
I've had ipf working on a few 5.3 servers for quite awhile. Not too long ago
some developers had to do some coding work and were coming from dynamic
IP's. I (reluctantly) opened up SSH to the world. Immediately I started
seeing the attacks where bots of some sort would try to break in with a
variety of different users.
So, I (thought) I closed it up again and told the developers to use a
2013 Nov 19
3
[LLVMdev] switching ARM modes and integrated-as
> I just tried the above code in a .s file and it worked fine for me.
> Can you show exactly what you’re seeing that looks wrong?
Thanks Jim. I can only reproduce the issue when that code is inline
assembly in a bitcode file. Attached is a bitcode file and Makefile
to demonstrate. Calling 'make' will dump two object files 'c.o' and
'asm.o'. The former is created
2015 Jan 08
7
[LLVMdev] LLD Standalone CMake build
I'm hoping to revive the LLD standalone CMake build. I'm new to this
build but it looks like it borrowed code from an old version of
compiler-rt, which I did some work on last year. Like compiler-rt,
I'd like to get the LLD build up running with only CMAKE_PREFIX_PATH
instead of defining custom variables like LLD_PATH_TO_LLVM_BUILD and
LLD_PATH_TO_LLVM_SOURCE. Any objection to that?
2014 May 29
2
[LLVMdev] setrlimit vs ulimt
> Why does fork-exec for llvm-symbolizer work, but simple exec(self) does not?
Because the llvm-symbolizer the runtime finds is built for the host
architecture. This is weird, yes, but once we integrate the
symbolizer, it goes away.
> Could we write a ulimit-like utility that would do setrlimit and then
> exec the specified binary
> %run %ulimit -s 8192 %t?
I like that idea. How
2006 May 23
0
Faxing - machines stop talking, line stays up
Hi,
I haven't seen this situation described anywhere. We have an Asterisk
server configured with 2 T4XXP cards and a TDM400P. We are using
spandsp's txfax to send faxes on one of the E1 channels.
The calls originates and the faxes start talking to each other for about
10 seconds. Then they just stop. The line stays up for a while after
that until the remote end hangs up. The local line
2006 May 23
0
[Fwd: Faxing - machines stop talking, line stays up]
Sorry,
I didn't mention we're using spandsp txfax (0.0.2pre25) to send the
faxes.
-------------- next part --------------
An embedded message was scrubbed...
From: Warrick Zedi <wzedi@noojeeit.com.au>
Subject: [Asterisk-Users] Faxing - machines stop talking, line stays up
Date: Tue, 23 May 2006 17:23:08 +1000
Size: 4568
Url:
2006 Nov 14
0
TDD - stops receiving characters
We are working on a TDD application and testing with an Ultratec
SuperPrint 4425 in Australia.
We've got it to exchange characters fairly cleanly for a minute or two
but after that we seem to be getting a signal but no character in Asterisk.
Has anybody done any work with the Asterisk TDD functionality and got it
to work reliably? Does anyone have any idea what might be causing the
2006 Nov 26
0
spandsp
We've found spandsp to be quite reliable and robust in recent months,
particularly 0.0.3 versions. We have had issues with particular fax
machines though.
Has anyone else had experiences where some fax machines get errors
sending to spandsp and spandsp get's Unexpected DCN sending to some fax
machines?
Steve, is there a any sort of compatibility list?
I really want to establish that
2013 May 28
4
[LLVMdev] compiler-rt tests in cmake?
Okay, dropping gcc 4.4.3 makes sense. How do you feel about using clang
3.2 (and the upcoming 3.3) instead of tip-of-the-trunk clang? It looks
like everything works great, but that you just need to make those UB tests
'unsupported' since they fail with "libclang_rt.ubsan was built without
__int128 support".
Thanks,
Greg
On Mon, May 27, 2013 at 12:36 AM, Alexey Samsonov