search for: rsourc

Displaying 20 results from an estimated 47 matches for "rsourc".

Did you mean: rsource
2003 Oct 16
0
make error R-1.8.0 on SuSE Linux 7.3 (i386)
...ists.R-project.org because: Delivery time expired I already had this problem earlier and last time r-help at stat.math.ethz.ch worked. 2. But now the real issue: I can't make R-1.8.0 on our SuSE Linux 7.3 (i386). make reports: make[3]: Entering directory `/yphome/hoffman/projects/rsources/R-1.8.0/doc/html' make[3]: Leaving directory `/yphome/hoffman/projects/rsources/R-1.8.0/doc/html' make[2]: Leaving directory `/yphome/hoffman/projects/rsources/R-1.8.0/doc/manual' make[1]: Leaving directory `/yphome/hoffman/projects/rsources/R-1.8.0/doc' make[1]: Entering direct...
2010 Sep 15
4
Sas to R
Hi, I need to call an R program from Sas. I have tried using the following code in Sas using the x command but it just calls up dos and says 'D:\Program' is not recognized as an internal or external command, operable program or batch file. ] SAS CODE: options xwait xsync; %let Rsource=S:\EPI_Data\Communicable Diseases\DR1355 Historic Communicable Disease Analaysis\R graphics; options xwait xsync; x '"D:\Program Files\R\R-2.9.2\bin\Rgui.exe" --no-save --quiet <""&rsource.\Rtest.R""> ""&rsource.\Rtest.log""'...
2013 Mar 07
1
Fwd: mistake on Securing SSH
..., 2013 4:44 AM Subject: mistake on Securing SSH To: <timothy.ty.lee at gmail.com> Cc: Hi TImothy, I saw wiki http://wiki.centos.org/HowTos/Network/SecuringSSH and it is pretty good, but there is a mistake. *Instead of having* iptables -A INPUT -p tcp --dport 22 -m recent --set --name ssh --rsource iptables -A INPUT -p tcp --dport 22 -m recent ! --rcheck --seconds 60 --hitcount 4 --name ssh --rsource -j ACCEPT *You should have* iptables -A INPUT -p tcp --dport 22 *-m state --state NEW* -m recent --set --name ssh --rsource iptables -A INPUT -p tcp --dport 22 *-m state --state NEW* -m recent...
2005 Aug 23
0
problems installing R from source: R-2.1.1 Windows XP
...i everyone, I’m a Windows XP user. I’m trying to install R-2.1.1 from source, and it doesn’t work. Here’s what I have done: * Got the source code from CRAN : R-2.1.1.tar.gz * Ran ‘tar zxvf R-2.1.1.tar.gz’ in a CMD terminal window. Everything worked fine. I got my R-2.1.1 folder in C:/Rsource. * I got the iconv.dll file downloaded and unzipped it in C:/Rsource/src/gnuwin32/unicode. No problem there. * I also unzipped R_Tcl.zip in C:/Rsource. * I got the files libpng-1.2.8.tar.gz and jpegsrc.v6b.tar.gz, put them in C:/Rsource/src/gnumin32/bitmap/ and unzipped them there....
2003 Oct 08
1
Installing GLMMGibbs problems
...on Oct. 2, bounced), I saved the GLMMGibbs package from the tmp directory, edited the offensive lines in src/ars.c and saved the file. Following a test compiling the edited ars.c without error, I re-tarred and gzipped the saved GLMMGibbs package, stored the new GLMMGibbs_0.5-1.tar.gz in a directory Rsources. I expected to install the package from the saved directory (similar to "install package(s) from local zip files..." on W2K) and used the install.packages(): > install.packages("GLMMGibbs", lib="/PATH/Rsources/R-1.7.1/library", destdir = "/PATH/Rsources&quo...
2014 Jun 19
2
[Bug 961] New: Can not remove rules with the default --mask parameter (-m recent)
...: 0.0 Hi, libxt_recent has a --mask parameter which defaults to 255.255.255.255. When --mask is not specified iptables-save shows the default anyway but iptables -D fails to remove the rule when issuing --mask. Here's an example: # iptables -F INPUT # iptables -A INPUT -m recent --update --rsource --mask 255.255.255.255 -j ACCEPT # iptables-save | grep "A INPUT" -A INPUT -m recent --update --name DEFAULT --mask 255.255.255.255 --rsource -j ACCEPT # iptables -D INPUT -m recent --update --name DEFAULT --mask 255.255.255.255 --rsource -j ACCEPT # iptables-save | grep "A INPUT&qu...
2010 Apr 22
2
Unable to make bitmapdll files on windows 7 64 bit machine
I am trying to build a windows 32 bit version of R 2.11.0 from source on a machine running windows 7 - 64 bit while running as the machine's administrator. I am able to run "make all recommended"...However, once I attempt to build the bitmap files I get the following: C:\Rsource\R-2.11.0\src\gnuwin32>make bitmapdll make -C bitmap make[1]: Entering directory `/cygdrive/c/Rsource/R-2.11.0/src/gnuwin32/bitmap' make CC='gcc -std=gnu99' AR='ar' \ CFLAGS="-O3 -I../../../extra/zlib -DPNG_NO_MMX_CODE" \ RANLIB=ranlib ZLIBLIB=../../../extra/zli...
2011 Apr 04
6
sshd: Authentication Failures: 137 Time(s)
Hi, to prevent scripted dictionary attacks to sshd I applied those iptables rules: -A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -m recent --update --seconds 60 --hitcount 4 --name SSH --rsource -j DROP -A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -m recent --set --name SSH --rsource And this is part of logwatch: sshd: Authentication Failures: unknown (www.telkom.co.ke): 137 Time(s) unknown (mkongwe.jambo.co.ke): 130 Time(s) unknown (212.49.70.24)...
2015 Dec 28
9
Firewall trouble?
...I found on the wiki. Below is a dump of the resulting rules. root at dc01:~# iptables -S - -P INPUT DROP - -P FORWARD DROP - -P OUTPUT ACCEPT - -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT - -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent --set - --name BLOCKED --rsource - -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent - --update --seconds 600 --hitcount 4 --name BLOCKED --rsource -j DROP - -A INPUT -p icmp -m icmp --icmp-type 3 -j ACCEPT - -A INPUT -p icmp -m icmp --icmp-type 11 -j ACCEPT - -A INPUT -p icmp -m icmp --icmp-type 12 -j ACCEPT - -A...
2004 May 03
2
adding a method to the dist function
Hi all, I'd like to add the Bhattacharyya method to the dist function. What is the best way to do this? I'm using R 1.9.0 and I was looking for the code that defines the already existing distances, but I didn't manage. As far as I understand, dist is defined in mva that is part of the stats package now, but where is the code? Thank you very much, Giampiero
2019 Oct 09
2
[Bug 1370] New: iptables-restore-translate
...ECN --ecn-tcp-remove # -t mangle -A POSTROUTING -p tcp -m tcp --dport 5353 -j TOS --set-tos 0x00/0xff # -t mangle -A POSTROUTING -p tcp -m tcp --dport 512:65535 -j TOS --set-tos 0x10/0xff # -t filter -A INPUT -m recent --update --seconds 300 --hitcount 1 --name DEFAULT --mask 255.255.255.255 --rsource -j DROP # -t filter -A OUTPUT -p tcp -m tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu # -t filter -A FRAG_UDP -p udp -f -m recent --set --name DEFAULT --mask 255.255.255.255 --rsource -j DROP # -t filter -A IN_SANITY -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -m recent -...
2015 Dec 29
1
Firewall trouble?
...s://support.microsoft.com/en-us/kb/929851 Here is the new configuration: root at dc01:~# iptables -S -P INPUT DROP -P FORWARD DROP -P OUTPUT ACCEPT -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent --set --name BLOCKED --rsource -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent --update --seconds 600 --hitcount 4 --name BLOCKED --rsource -j DROP -A INPUT -p icmp -m icmp --icmp-type 3 -j ACCEPT -A INPUT -p icmp -m icmp --icmp-type 11 -j ACCEPT -A INPUT -p icmp -m icmp --icmp-type 12 -j ACCEPT -A INPUT -p tcp...
2012 May 25
1
R+Stata batch mode
Dear R help, I am using Stata, and I use a Stata ado file (Rsource) to run R in batch mode within Stata Everything works fine .... except for the fact that I cannot export the graphics that I obtain with my computations written in my R source file I believe this is related to the global Rterm_options `"--vanilla"' that I need to precise to Rsource...
2003 Oct 01
1
permission problem on R install
Dear R People: I'm trying to compile R for Windows from source. I get to the Making package base and then c:\rsource\R-1.7.1\bin\rterm.exe permission denied How do I change the permissions, please? Thanks again R-1.1.1 Sincerely, Erin mailto: hodgess at gator.uhd.edu
2009 Sep 22
2
A couple of suggestions: source function (package base)
...ed when "echo=T". Example, suppose I have in the editor the three lines below: a=rnorm(10) a sort(a) and I would like to send it to R interpreter (file, block or selection). The current output is (using Vim-R-plugin2): ------------------------------------------- > source('/tmp/.Rsource-jcfaria', echo=TRUE, max.deparse=50) > a=rnorm(10) > a [1] 0.08648104 -1.74996635 0.61027538 0.42042031 -0.02025884 -0.39891256 [7] -0.30219635 -0.84476668 1.06341674 -0.12030620 > sort(a) [1] -1.74996635 -0.84476668 -0.39891256 -0.30219635 -0.12030620 -0.02025884 [7] 0.08...
2015 Dec 29
1
Firewall trouble?
...is a dump of the resulting rules. > > root at dc01:~# iptables -S > -P INPUT DROP > -P FORWARD DROP > -P OUTPUT ACCEPT > -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT > -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent --set > --name BLOCKED --rsource > -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent > --update --seconds 600 --hitcount 4 --name BLOCKED --rsource -j DROP > -A INPUT -p icmp -m icmp --icmp-type 3 -j ACCEPT > -A INPUT -p icmp -m icmp --icmp-type 11 -j ACCEPT > -A INPUT -p icmp -m icmp --icmp-type 12...
2008 Jan 30
5
One approach to dealing with SSH brute force attacks.
...Firewall-1-INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT ... # Block brute force attacks # Drop repeated ssh connection attempts within 20 seconds interval -A RH-Firewall-1-INPUT -p tcp -m tcp -m state -m recent -i eth0 --dport 22 --state NEW -j DROP --rcheck --seconds 20 --name THROTTLE --rsource # Accept ssh connection if not attempted within past 20 sec. -A RH-Firewall-1-INPUT -p tcp -m tcp -m state -m recent -i eth0 --dport 22 --state NEW -j ACCEPT --set --name THROTTLE --rsource You can change the interval from 20 seconds to whatever you feel represents a decent compromise between u...
2015 May 22
5
[Bug 2404] New: scp skips file/directory on permissions error
https://bugzilla.mindrot.org/show_bug.cgi?id=2404 Bug ID: 2404 Summary: scp skips file/directory on permissions error Product: Portable OpenSSH Version: 6.7p1 Hardware: All OS: All Status: NEW Severity: major Priority: P5 Component: scp Assignee: unassigned-bugs at mindrot.org
2015 Dec 28
0
Firewall trouble?
...f the resulting rules. > > root at dc01:~# iptables -S > - -P INPUT DROP > - -P FORWARD DROP > - -P OUTPUT ACCEPT > - -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT > - -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent --set > - --name BLOCKED --rsource > - -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent > - --update --seconds 600 --hitcount 4 --name BLOCKED --rsource -j DROP > - -A INPUT -p icmp -m icmp --icmp-type 3 -j ACCEPT > - -A INPUT -p icmp -m icmp --icmp-type 11 -j ACCEPT > - -A INPUT -p icmp -m icmp --icm...
2015 Dec 28
0
Firewall trouble?
...f the resulting rules. > > root at dc01:~# iptables -S > - -P INPUT DROP > - -P FORWARD DROP > - -P OUTPUT ACCEPT > - -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT > - -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent --set > - --name BLOCKED --rsource > - -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m recent > - --update --seconds 600 --hitcount 4 --name BLOCKED --rsource -j DROP > - -A INPUT -p icmp -m icmp --icmp-type 3 -j ACCEPT > - -A INPUT -p icmp -m icmp --icmp-type 11 -j ACCEPT > - -A INPUT -p icmp -m icmp --icm...