similar to: rsync

Displaying 20 results from an estimated 2000 matches similar to: "rsync"

2006 Mar 27
4
Can rsync handle any type of file?
Hiya I have been doing some substantial research about rsync and the rsync algorithm. I was wondering: can rsync backup any type of file? I have tested it with "common" files Word, Excel, SQL dumps, log files etc But what about more complex types of files, like vector images etc. Thank you for your thoughts in advance. Hamish
2006 Apr 07
1
Windows rsync without cygwin (looking for Unicode support).
Hi! Let's share an info about Windows rsyncs or rsync-compatibles that works wint Windows native libs, not cygwin. The main task - find a solution with Unicode support. I know two: Unison - has a problems with Unicode filenames like cygwin does. DeltaCopy - found it just a few minutes ago, can't try from home so can't comment out. Any others? G.
2006 Mar 19
2
.net port
All, I wrote a port of rsync to c# / .net. If there is interest in this, I'd be happy to make the code available. The current code will send synchronize with a linux rsync server, and can run in daemon mode on windows (I've made even a windows service wrapper for it). It's far from clean, and far from perfect, but it works and can be a good starting point. Please let me know,
2006 Apr 16
3
Encryption
Hi all, I recently came across a possible requirement of backing up certain files on a remote server ... in an encrypted format. This got me seriously thinking about the possibility of doing such a thing with rsync. I am not too knowledgable about encryption and the mechanisms of the rsync algorithm (at least as yet :), but I would like to know whether this is attainable or 'far fetched'
2012 May 02
3
Consulta gráfica
  Hola,   Por favor, ¿podríais indicarme qué recursos (librerías o ideas) pueden resultar de utilidad para crear un gráfico del estilo del de la figura 3.8 del siguiente link?   http://www.tsc.uvigo.es/BIO/Bioing/ChrLDoc3.html#3.5   Actualmente estoy utilizando funciones muy básicas y la verdad es que no me encuentro muy satisfecha con el resultado.   Muchas gracias.   Eva [[alternative HTML
2004 Apr 18
4
Intel 536ep as a FXO?
Hi, I've seen some reports about ruuning Intel modem with 537 or MD3200 chipset running with Zaptel drivers as a FXO port. Did anybody managed to set up a PCI faxmodem based on Intel536ep chipset to work with * and Zaptel drivers? Modem seemd to work just fine with Linux, but the driver says no;) some more info: Linux 2.4.26 mazuchna:~# cat /proc/pci | grep 536 Communication
2010 May 18
1
lattice::panel.levelplot.raster too picky with unequal spacing
Dear all, I got a couple of warnings using panel.levelplot.raster, In panel.levelplot.raster(..., interpolate = TRUE) : 'y' values are not equispaced; output will be wrong although I was quite sure my data were equally spaced (indeed, I created them with seq()). A closer look at the source code reveals that the function tests for exact uniformity in grid spacing, if
2007 Feb 17
2
HOW to enable traceroute with IPTABLES
Hi, I am setting up a firewall on CENTOS 4.4. I have done default block iptables -P INPUT DROP iptables -P FORWARD DROP iptables -P OUTPUT DROP I have enabled ICMP to www.google.com iptables -A OUTPUT -p icmp -d 64.233.189.104 -j ACCEPT iptables -A INPUT -p icmp -s 64.233.189.104 -j ACCEPT Ping works fine as below [root at firebox rc.d]# ping 64.233.189.104 PING 64.233.189.104 (
2007 Jan 30
2
Accessing an external USB disk
I was able to remove the NTFS partition and repartition the HD as a type Linux (83). Next I created the ext3 file system. If I reboot with the USB drive attached, the boot process hangs, however if I turn off the drive, boot and then turn it on, all is fine. # cat /etc/fstab shows the drive, but I am not sure how to use it for a backup nor do I know how to access it. Any help would be
2013 Apr 08
1
VNC Server in libvirt
My name is Jaime Loureiro and I work in the Network & Applications area in University of Vigo. I am writing to you hoping you can help me with some libvirt graphics issues. I was analysing the source code of the libvirt in order to find how to access the display of each virtual machine. We are trying to generate a video streaming from the graphics content, though it is not easy to find what
2010 Mar 10
1
How to take out the content of character string
My question is represented by the following example. For example, I have a character string a, which is defined as AA="list(x=1, y=2)" I want to take out the content of AA by using some function, so that I can obtain the following expression automatically. list(x=1, y=2) Does anyone know how to do it? Thanks a lot, -- View this message in context:
2013 Feb 11
1
Deques in R
I've been searching for information on using deques in R for the past couple of days. What little I've found has pointed me towards either the Rcpp package or the cpp project on R-forge (https://r-forge.r-project.org/projects/cpp/), but I've had trouble finding working examples. Are these the best ways to go about trying to implement a deque in R and does anyone have examples of how to
2003 May 22
1
basic question on getGroups for lme analyses
Hi all! I am working on a nested lme model with one fixed effect ("treatment", which 3 levels) and two random effects for "Individuals" (four of them) within "treatment" and "replicate -2 levels-" within "individual" within "treatment". For doing so, I´ve been trying to create a factor for Individual%in%Treatment, say IT by
2010 Dec 07
2
tableGrob and properties of a cell
Hello there, could you please help to modify gpar() properties of a cell inside tableGrob() output. In the following example I want to have different color for one out of 4 cells require(gridExtra) z<-matrix(1:4,2,2) grid.draw(tableGrob(z)) The only way I found for now how to do it is to do something like this downViewport(current.vpTree()$children[[1]]$children[[6]]$name)
2010 Jun 06
3
Creating pdf report
I'm looking for a way to create a pdf report that contains multiple graphs on one page as well as tables (ideally with some lines below categories etc.) . I have used the pdf(filename) followed by dev.off() to date but this prints one graph per page and does not seem to have functionality for tables. Thanks Sent from my BlackBerry? wireless device
2010 Feb 26
3
Plotting a Trivial Matrix
Dear All, Consider a matrix (N x N) where each entry is either zero or one (can hardly get any simpler). Now, I would like to plot it as a 'chessboard' where every matrix entry is a black (1) or white (0) square. Whatever tool I use to plot it, it should not try to interpolate the data at all. I found some online references http://www.phaget4.org/R/image_matrix.html but probably I can
2010 Mar 05
3
how to make this sequence: 1,2,3,4,5,4,3,2,1
I'm just beginning R, with book Using R for Introductory Statistics, and one of the early questions has me baffled. The question is, create the sequence: 1,2,3,4,5,4,3,2,1 using seq() and rep(). Now, as a programmer, I am punching myself to not be able to figure it out.. I mean, as simple as a for loop, but using seq, I am stumped. I would think c(1:5, 4:1) would be the brute force method
2010 Aug 18
1
Automatically retrieve correct collation
Dear List, consider the following scenario: setClass(Class = "A", representation = representation(B = "B", C = "C")) setClass(Class = "B", representation = representation(C = "C")) setClass(Class = "C", representation = representation(something = "character")) Obviously, the collation for sourcing these defs needs to be: C,
2010 May 31
4
Fancy Page layout
Hi, Working on a report that is going to have a large number of graphs and summaries. We have 80 "groups" with 20 variables each. Ideally, I'd like to produce ONE page for each group. It would have two columns of 10 graphs and then the 5 number summary of the variables at the bottom. So, perhaps the top 2/3 of the page has the graphs and the bottom third has 20 rows of data
2010 Feb 25
2
How to fill in a region with different patterns?
Hi to all, Here is a question which I cannot solve. Appreciate so much for any suggestions! I have a squared region which is irregularly divided into many rectangular patches. Each patch is associated with a value, and two patches possibly share a common value. I hope to fill in each patch a pattern according to its value. For instance, if a patch has value 1, then I fill in that patch