search for: rtv

Displaying 20 results from an estimated 28 matches for "rtv".

Did you mean: rtc
2002 Jul 23
2
--delete doesn't work when transferring many files
This is a curious thing. I'm syncing two directories, containing some 250 subdirectories totalling around 11,000 files. This: rsync --password-file=/usr/local/etc/rsync/.passwd --delete -rtv --exclude-from=/usr/local/etc/rsync/excludes /usr/local/sourcedir username@destserver.com::modulename ...works fine if both directories are already nearly in sync. Deleting a few files from the source causes matching deletions on the destination. But recently I made major changes to the source di...
2002 Sep 13
4
logging on client side on NT
Hi, I would like to log whatever happens with rsync on client side when it runs with Cygwin on NT4. First, I just did a redirect of the screen output to a log-file: rsync -rtv --delete --modify-window=2 --stats /cygdrive/g/users/bco/test/ bee2bs01::d/test/ >>c:\rsync\log\%FDATE%.log The problem with this method is that it does not redirect whatever Rsync reports as errors; because they are showed on the screen. This is a shame, because that's the info that in...
2002 Jan 23
3
problem with parent directories
hello, i am having problems syncing directories. what i want to accomplish is the copying of a directory from a beta environment to a live environment. at the moment what i am doing is this: /usr/local/bin/rsync -rtv --include '*/' --include 'dir/to/publish' --exclude '*' /web/beta/betawebsite user@webserver::web/livewebsite unfortunately this takes ages, as rsync of course runs through the entire list of directories on the beta site. the problems that arise are that parent directories...
2010 May 30
0
Yet Another Package for Time Data
Hi fellow R developers/users, I've recently revised a package called rtv, and now consider it reasonably stable. Description: A package for conveniently representing, manipulating and visualising time data. Here, time is regarded as a random variable, and objects are used to represent realisations of that random variable. This is particularly useful for change points,...
2010 May 30
0
Yet Another Package for Time Data
Hi fellow R developers/users, I've recently revised a package called rtv, and now consider it reasonably stable. Description: A package for conveniently representing, manipulating and visualising time data. Here, time is regarded as a random variable, and objects are used to represent realisations of that random variable. This is particularly useful for change points,...
2009 Aug 20
2
Include a directory inside an excluded one?
Hello, On my windows xp machine, with cygwin, I run rsync to backup important files on another drive (samba share, mapped on h:). It works fine. I currently use the following command line: rsync -rtv --del --delete-excluded --progress --iconv=ISO-8859-1,UTF-8 --partial \ --exclude "/Videos/" \ --exclude "/Ma musique/" \ /cygdrive/d/Documents/ \ /cygdrive/h/Documents/ My problem is that I would like to synchronize a directory located inside &...
2003 Jun 20
1
good snapshot solution
...found three candidates: - Dirvish - Rlbackup - Rsync_snapshots by Mike Rubel The first two seem to be pretty elaborate, but are based on Rsync 2.5.6 and I'm wondering if that's going to give problems with the Rsync 2.5.5 on Netware. Can one safely mix versions? I use only these options: -rtv --delete --modify-windows=2 Also, I was wondering if can still share the snapshotted versions of the files with Samba in an intuitive way. Dirvish for instances seems to use a certain subdirectory system making that somewhat more complex. The last one is very straight forward and looks sufficient...
2012 Mar 22
1
Rspec not loading fixtures
...a[target=_blank]" assert_select "span.button a[onclick]" end after(:each) do `rm #{@registrant.pdf_file_path}` end end **** And here is what in various directories: spec/fixtures/partners.yml - which contains 2 yaml records: sponsor: id: 1 username: rtv email: rocky at example.com crypted_password: "c8e5b51b237344fe0e72539af0cac7197f094a5e933ffacf6e7fa612363c5933f520710c6427ac31fc4c68a2d7bb48eae601c74b96e7838f9ca1a0740b67576a" password_salt: "Y4PPzYx2ert3vC0OhEMo" name: Rocky organization: Rock The Vote url: http://...
2004 Aug 18
0
[Bug 1605] New: Copy from NTFS to VFAT produces mkstemp and stat errors
...or directory mkstemp "/mnt/backup/lisa/g/Work/Mac_Home/CONFERENCE PAPERS/ISSPR/HLM ATT RUNS/\ .att2 out.54lonG" failed: No such file or directory The NTFS partition is on a real Windows XP machine elsewhere on the network, mounted on the Linux box via samba. The copy command is: rsync -rtv /mnt/xp/machine /mnt/backup/lisa where /mnt/xp/machine is the samba-mounted XP NTFS disk and /mnt/backup/lisa is the local VFAT partition. Is this a limitation of the filesystems or an rsync bug? -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving...
2010 Jul 12
2
[R-pkgs] New package "list" for analyzing list survey experiments
I know nothing about your package, but "list" is a terrible name for it, as "list" is also the name of a data type in R. -- Jeff
2006 Oct 19
1
Logging only files transferred not directories
Hello, I'm running my rsynce server on Win2k3 Server. One client under Linux and another on Win2k3 Server. The problem is not really OS related though. My Server 2k3 client command is: C:\Progra~1\cwRsync\bin\rsync -rtv --ignore-errors --stats --delete --delete-during --delete-excluded --link-dest=/cygdrive/d/previous/c/backup.1 --files-from=files-from.txt --exclude-from=exclude-from.txt <src> <dst> Before running I cycle the directories keeping the last 30 so the last sync is in backup.1 and then I u...
2015 Jun 25
0
[PATCH v2 4/9] daemon: Add -l / --listen flag.
...+++++ 2 files changed, 56 insertions(+), 18 deletions(-) diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index 8285d27..1bcdfa3 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -139,15 +139,17 @@ usage (void) int main (int argc, char *argv[]) { - static const char *options = "rtv?"; + static const char *options = "lrtv?"; static const struct option long_options[] = { { "help", 0, 0, '?' }, + { "listen", 0, 0, 'l' }, { "test", 0, 0, 't' }, { "verbose", 0, 0, 'v' },...
2005 Oct 12
3
Icecast logging
Hi Guys, My first post here so hello to all :-)) Anyway, my question: Does anybody know if there is a tool out there that can process the icecast log files and return a graph of listener numbers over a set period? I'd like to be able to know when our most busiest time was. Thanks very much in advance, Andy
2018 Aug 04
2
Troubleshooting RSYNC
Greetings, I am having a problem with rsync deleting entire folders and files and then attempting to recopy the entire contents of the folder(s) even though they are up to date. The task is syncing from ubuntu (rsync version 3.1.1) to windows using cygwin (rsync version 3.1.2). I have a number of these configurations, and they all work except this one. I use the modify-window=600 and cannot
2016 Mar 18
0
Wine release 1.9.6
...tml: Fixed cloning comment nodes. mshtml: Fixed copy&paste typo in GetAsciiHostPort implementation. Jens Reyer (1): winegcc: Document WINEBUILD in the manpage. Józef Kucia (43): d3d10_1/tests: Port test_create_device() from d3d11. d3d10core/tests: Add test for creating RTV with DXGI_FORMAT_UNKNOWN. d3d11/tests: Add test for creating RTV with DXGI_FORMAT_UNKNOWN. d3d10core/tests: Add test for creating DSV with DXGI_FORMAT_UNKNOWN. d3d11/tests: Add test for creating DSV with DXGI_FORMAT_UNKNOWN. d3d11/tests: Introduce d3d11_test_context for visu...
2002 Dec 28
2
rsync windows -> unix still hanging :(
I spent about 12 hours today writing a nice backup system based on Mike Rubel's snapshot system; but much to my dismay, when I took it for a test drive, I found that rsync hung on the first large directory I tried to back up. Aiee! A few web searches later, I realized that a lot of folks have seen this problem. I saw one proposed fix...
2017 Jan 06
0
Wine release 2.0-rc4
...from SetVolume when 3D processing is disabled. dsound: Don't write more than three periods to IAudioClient. André Hentschel (1): hlink/tests: Test skipped data. Henri Verbeet (4): ddraw: Keep an explicit reference to the wined3d device in surfaces. wined3d: Only check rtv and dsv bindings in device_resource_released() when D3D is initialised. wined3d: Pass GL_SYNC_FLUSH_COMMANDS_BIT to glClientWaitSync() if WINED3DGETDATA_FLUSH was specified. d2d1: Update "p0" after inserting a vertex in d2d_geometry_resolve_beziers(). Hugh McMaster (3):...
2016 Jun 24
0
Wine release 1.9.13
...returned when creating shader resource views. wined3d: Forbid creating SRVs with level or layer count equal to 0. d3d11: Validate "ViewDimension" field in D3D11_SHADER_RESOURCE_VIEW_DESC. d3d11/tests: Add test for invalid SRV descriptions. wined3d: Forbid creating RTVs with layer count equal 0. wined3d: Fix error code returned when render target view description is invalid. wined3d: Forbid creating typeless render target views. d3d11: Validate "ViewDimension" field in D3D11_DEPTH_STENCIL_VIEW_DESC. d3d11: Validate "ViewDime...
2002 Aug 23
2
High CPU on multiple syncs on Win2K
Hi all, Allow me to quickly sketch our backup situation: we have about 40 sites. On each site there's a Rsync client on an NT machine (Cygwin). In the main site we have a huge Win2K fileserver which acts as a Rsync server. I'm doing tests now with syncing the volumes of several Netware servers on the sites (to which the Rsync NT clients have a mapping) to the Win2K server. Initially we
2009 Aug 24
6
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week New packages ------------ Updated packages ---------------- New reviews ----------- This email provided as a service for the R community by http://crantastic.org. Like it? Hate it? Please let us know: cranatic at gmail.com.