similar to: timeout problem

Displaying 20 results from an estimated 1000 matches similar to: "timeout problem"

2010 Apr 11
2
Yum/WGET/HTTP sourceforge etc.
I am having a problem with 5.4 that I did not have with 4.5. The problem happens only sometimes but in specific instances. Basically a summary of the problem is that certain network transactions timeout. The specfic instances are with wget, rpm, http. The problem usually, but not always, occurs with pptp stuff. (NOT running pptp but getting pptp stuff). For instance, the following command, which
2007 Jan 02
5
--link-dest
Has anyone else had problems using the --link-dest flag? I do what it says in the example rsync -a --delete --link-dest=/home/chamberl/oldbk/ /home/chamberl/source/ /home/chamberl/backup/ I make sure that /home/chamberl/source has some files exactly the same as in /home/chamberl/oldbk/ but evertything gets copiued, and no hard links are done (though they should be). Anyone know the problem?
2008 Oct 03
7
find
I am looking for something similar to the windows SEARCH FILES comman with the option "files containing ..." (that is where I can specify a string and it will find all files containing that string -- not just having the string as part of the name but actually containing it in the text). Is there some way to do this?
2007 Jan 17
1
rsnapshot
Hi I got rsnapshot working, but I am still unclear about a few things. Say I have intervals daily 7 weekly 4 monthly 12 so running "rsnapshot daily" for seven days will create files daily.0, daily.1, daily.2, daily3, daily.4, daily.5, daily.6 If at the end of the week I do "rsnapshot weekly", then daily.6 gets moved to weekly.0 The next time daily runs, 5 will move to 6,
2009 Oct 12
2
scp with tty
Hello I need to know a way to have scp allocate a tty on a remote machine so I can have it run sudo and activate a vpn which it will need to activate. scp with "-S" does not work. I can't chmod +s the cisco vpn client because when I try to run it it says it can not have setuser. I could have the user scp via root but I do not want to do that. Any way to have scp allocate a tty?
2008 Sep 11
2
/etc/rc5.d
I have a shell script, /usr/bin/joevpn, which does a quick VPN connect. Basically (HOST and DOFIL are defined above and are correct. I just did not list them here) case "$1" in start) date > $DOFIL while [ -f $DOFIL ] do echo y | /usr/local/bin/vpnclient connect $HOST sleep 10 done ;; #
2008 Oct 09
2
find cont'd 3
Another question about find. I looked at the gnome tool and tried to simulate what it is doing. I can't use it directly because it won't do sed. Basically I want to find all files with a string (except binary) and change it. let STR be the string I am looking for. NEW is new string. I am doing TFIL=/usr/tmp/dummy$$.txt find . -type f | while read fil do grep "$STR"
2010 Jun 18
3
Upgrade
I am currently running CentOS 4.5 (which, through many Yum updates) now appears to be CentOD 4.8. 4.8 is still rather old, but I havbe lots of stuff (files and stuff installed). I would like to install Fedora but I am worried about losing all the stuff I have. I would have to back everything up, uninstall/reinstall things, etc. I am wondering whether there is some way to upgrade to Fedora from
2008 Aug 13
3
ks
I made a file partition-ks.cfg and put it in our machine 192.168.5.17 under /var/www/html. When I install a new machine I just do a linux ks=http://192.168.5.17/partition-ks.cfg I have a couple questions though: 1) I have the following in it: clearpart --all part /boot --fstype ext3 --size=100 part /var --fstype ext3 --size=10000 part / --fstype ext3 --size=10000
2010 Jul 30
2
DHCPD
Not sure if there is a DHCPD/PXE forum so I will ask here. I have been trying to get netboot to work (i.e. a machine with nothing on it but a NIC card, no linux, no operating system, whatever) boots up and receives a file from a dhcp server. This dhcp server gives it all the Linux stuff it needs so a full install can be done over the network. I actually got this working by turning my desktop
2010 Nov 24
5
Optimal VPN
I am looking for the optimal VPN. Well it doens't have to be that elaborate. Just the best VPN. We currently have some customers using PPTP, some using openvpn, some using Cisco Any Connect and there are a few others. So my question is, if you have control of both ends (client and server) what is the best VPN to use? There are not too many requirements, but a big one is The VPN must return
2009 Sep 07
0
[LLVMdev] Graphviz and LLVM-TV
Edwin, thanks, it starts making sense inline comments... Török Edwin wrote: > On 2009-09-06 19:57, Ioannis Nousias wrote: > >> Edwin, >> >> thank you for your effort, but I'm not sure I understand. >> Are you describing a graph traversal problem? Is the data model stored >> in a predecessor/successor fashion, which requires you to 'walk' the
2009 Sep 06
3
[LLVMdev] Graphviz and LLVM-TV
On 2009-09-06 19:57, Ioannis Nousias wrote: > Edwin, > > thank you for your effort, but I'm not sure I understand. > Are you describing a graph traversal problem? Is the data model stored > in a predecessor/successor fashion, which requires you to 'walk' the > graph in order to visit all nodes? (and what happens when you have > disjointed DFGs?). Sorry for the
2012 May 31
2
[LLVMdev] DFG of machine functions
Hi, I am trying to generate the DFG of machine functions. Initially, I added a pass to generate the DFG of LLVM IR functions. This was based on the mail thread - http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-September/025582.html. This pass worked fine and I was able to generate DFG of LLVM IR functions. Later, I ported the DFG pass code for machine functions. I ported the InstIterator.h
2008 Dec 27
1
indexed expression
Hello expeRts, I need generate symbolize the autocovariances matrix of a Gaussian ARMA(1,1), for derivate it and evaluate. I try this codes, but whitout sucess vacv<-NULL vacv[1]<-1-2*phi*theta-theta^2 vacv[2]<-(1-phi*theta)*(phi-theta) vacv[3:n]<-acv[2]*(phi^(1:(n-2))) facv<-list() for(i in 1:2)
2012 Jun 02
0
[LLVMdev] DFG of machine functions
I tried debugging it and the issue seems to be in the implementation of MachineInstrIterator.h and the way it interacts with GraphWriter.h functions. I found this by replacing the ( template <> struct GraphTraits<MCDFGraph<MachineFunction*> >) with a similar MCDFGraph based template of CFG similar to the one in MachineFunction.h (similarly replacing the DOTGraphTraits with the
2008 Oct 06
1
find - text
A while ago I sent mail about wanting to find all files that had a certain text string in it and changing it to something else. People mentioned that there is a system tool to do it (gnome has it too). I ran this, for example to find all files WITH "prog" in the name, and then I did a ps and I saw simply find . -iname '*prog*' then I did something similar, all file names
2011 Jul 01
1
[LLVMdev] Generating DFG or CDFG from C code
Unless someone else responds with "I've already done that" then you need to implement a pass. It's probably something you want to customize to your needs anyway. -Andy On Jun 30, 2011, at 11:50 PM, janarbek wrote: > Hi Andrew, > Thanks for the response. That helps a lot. > > So that means I have to implement a pass, right ? Sorry for dumb question. I just started
2005 Aug 11
2
question
Hi, I have a problem with R, after an update: this piece of code: cat("creating resolver data frame\n"); dfG<-cbind(dfG,2^(RGN$G)) dfR<-cbind(dfR,2^(RGN$R)) suddenly, creates values to inf. Is the syntax changed for the ^ symbol in the latest R downloadable version? Kind regards, wilfred -- Dr. Ir. Wilfred Van IJcken Labmanager Genomics Erasmus Center for Biomics,
2016 Jun 18
2
data flow graph
Dear professor John Criswell I would like to implement a new instruction scheduling algorithm so that I need the Data flow graph(DFG) is input of the algorithm. Thanks Huy From: John Criswell [mailto:jtcriswel at gmail.com] Sent: Sunday, June 19, 2016 1:25 AM To: huyite; llvm-dev at lists.llvm.org Subject: Re: [llvm-dev] data flow graph Dear Huyite, Your question, as