similar to: rsync & Time Zones

Displaying 20 results from an estimated 40000 matches similar to: "rsync & Time Zones"

2002 Apr 05
1
is it a bug or a feature? re:time zone differences, laptops, and suggestion for a new option
It's much easier than that. The linux box keeps time in GMT, and displays it in the configured time zone. Try this, on the linux box: "touch testfile ls -l testfile TZ=EST5 export TZ ls -l testfile" You will see the displayed time change, because it's being translated from epoch time (that's what I call it, anyway) - seconds since midnight, January 1, 1970. Your windows
2013 Oct 26
1
Feature: date grouping with proper time zone
I''m not sure if this fits in Rails'' core but since I spent sometime trying to solve a problem and couldn''t find any solution, I decided to share this method I''ve created to extend ActiveRecord::Relation. Here''s a Gist of it: https://gist.github.com/leods92/7164159 The problem is that when we try grouping timestamps by date, SQL returns unexpected
2013 Aug 31
23
ERROR: Log level INFO requires LOG Target in your kernel and iptables
Hi, I have 2 Debian testing boxes running a very similar setup (both running the latest aptosid kernel); on one of them, since the iptables/libxtables10 packages have been upgraded from 1.4.19.1-1 to 1.4.20-2, shorewall-init can''t start shorewall anymore and for this reason ifupdown also fails triggering firewall up. Shorewall can be successfully started later on, and ifupdown starts
1998 Dec 04
1
timezones not properly reflected on timestamps of files
I have read the documentation, performed the diagnostic tests, checked the archives, so if the answer is there, please accept my apologies in advance and simply direct me. I am running redhat Linux 2.0.3 and using smbmount to mount several directories from NT3.51 servers which are distributed gloablly in different timezones. Once mounted the files all have local timestamps which makes syncing
2016 Apr 22
4
Storage cluster advise, anybody?
Dear Experts, I would like to ask everybody: what would you advise to use as a storage cluster, or as a distributed filesystem. I made my own research of what I can do, but I hit a snag with my seemingly best choice, so I decided to stay away from it finally, and ask clever people what they would use. My requirements are: 1. I would like to have one big (say, comparable to petabyte)
2012 Feb 26
6
Continuous pings going through a full DROP policy
For a same configuration in which the default policy is drop and only one connection is accepted in rules, continuous pinging to devices will stop squarely in 4.0.15 as soon as a very basic firewall is enabled whereas in 4.4.26.1, pinging will still continue after the firewall is enabled. All tests are done with proper reboot of the unit3 where the firewall is applied: unit1 <---> eth4
2010 Dec 16
3
Icecast Logs Timestamp in UTC
Hello, I'm having a major problem with the timestamps in both the Icecast access.log and error.log. The timestamp on the logfiles themselves is accurate, but the logging of the various connections to my streams is in UTC. No matter how I try to configure the hwclock or the system clock, the log timestamp is always UTC, which is 8 hours ahead of my current time zone. I've even tried
2017 Oct 31
1
Secondary Nameserver not working
I've configured a secondary slave nameserver based on what I consider rather expert advice, but it's not working as expected. I'm trying to determine if I've done something wrong with basic configuration or if there are AD/DC nuances afoot. The main nameserver is the domain Active Directory/Domain Controller running Samba 4.4.16 on Slackware64 14.2. This has been running for a few
2006 May 23
3
ignoring file times - but still examining content
Hello. I would like to transfer files which have changed on another box. The rsync man page says: --size-only ..This is useful when starting to use rsync after using another mirroring system which may not preserve timestamps exactly.. Which is my situation. My problem is that the size-only switch (clearly) ignores files with different content, but that have the same size. I'd like to
2010 May 04
2
sched provider
Hi All, I used the following script from the dtrace manual to measure how long a particular process runs on the cpu. Modified it to look at the exact timestamps: [i] sched:::on-cpu { self->ts = timestamp; printf("on=%d\n", self->ts) } sched:::off-cpu /self->ts/ { printf("off=%d\n", timestamp) self->ts = 0; } [/i] The output looks like this: [i]on=24591 off=24603
2010 Jul 14
1
Arrange values on a timeline
I have a set of labels arranged along a timeframe in a. Each label has a timestamp and marks a state until the next label. The dataframe a contains 5 such timestamps and 5 associated labels. This means, on a continious scale between 1-100, there are 5 markers. E.g. 'abc' marks the timestampls between 10 and 19, 'def' marks the timestamps between 20 and 32, and so on. a <-
2016 Jun 09
4
rsync keeps writing files over
Hi Steven, Yes, both file systems are the same. rsync -nri --modify-window=1 <src> <dest> Gives me the following for most files >f..T....... 2015_167_1_1__Boy_What_A_Girl_R2/2015_167_1_1__Boy_What_A_Girl__UHD_DPX_R2/ BWAG_R2_00138428.dpx Although a few have >f..T......n 2015_167_1_1__Boy_What_A_Girl_R2/2015_167_1_1__Boy_What_A_Girl__UHD_DPX_R2/ BWAG_R2_00135909.dpx
2010 Jul 29
1
Linear Interpolation question
Hi R experts, I have the following timeseries data: #example data structure a <- c(NA,1,NA,5,NA,NA,NA,10,NA,NA) c <- c(1:10) df <- data.frame(timestamp=a, sequence=c) print(df) where i would like to linearly interpolate between the points 1,5, and 10 in 'timestamp'. Original timestamps should not be modified. Here the code I use to run the interpolation (so far): # linear
2017 Apr 20
2
Question about the ticket #743 omindex: delay libmagic checks
Hi, I'm working on the ticket #743 omindex: delay libmagic checks <https://trac.xapian.org/ticket/743>. As the ticket's Description mention, the call to libmagic is expensive than call the stat, so we can check the size by call the stat to get size before call libmagic to get a mime type. But how about the timestamps check? since timestamps check need to iterate the DB to check if
2008 Aug 04
1
S10u6, zfs and zones
My server runs S10u5. All slices are UFS. I run a couple of sparse zones on a seperate slice mounted on /zones. When S10u6 comes out booting of ZFS will become possible. That is great news. However, will it be possible to have those zones I run now too? I always understood ZFS and root zones are difficult. I hope to be able to change all FS to ZFS, including the space for the sparse zones. Does
2020 Jan 15
2
[Intel-gfx] [PATCH v2 03/21] drm: Add get_vblank_timestamp() to struct drm_crtc_funcs
On Wed, Jan 15, 2020 at 01:16:34PM +0100, Thomas Zimmermann wrote: > The callback get_vblank_timestamp() is currently located in struct > drm_driver, but really belongs into struct drm_crtc_funcs. Add an > equivalent there. Driver will be converted in separate patches. > > The default implementation is drm_calc_vbltimestamp_from_scanoutpos(). > The patch adds
2002 Oct 29
8
important caveat with Rsync on NT and dayligt savings time
Hi, just a small warning about something that has, like we experienced just last weekend, great consequences. We rsync more than 20 Netware servers through a mapping on an NT machine to central Rsync destination servers (also NT). Last weekend our clock changed to Daylight Savings Time. It appears that NT changes the file stamps on NTFS volumes accordingly (Q129574 on their suppor site). This
2007 Jul 07
4
VLAN tagged interfaces in zones
Hi, I''m trying to work out a solution for multiple zones with exclusive IP stacks, and existing on the same VLAN. For example, I have 3 zones on the same subnet (lets say 10.10.10.0/24), and want to put them in the same VLAN (let''s say 20). If they weren''t zones, I would plumb up e1000g20000 or equiv on each and off we go, but with zones and exclusive IP stack, I
2006 Aug 04
4
policy ordering when mixing interface zones and host defined zones
Running shorewall 3.0.6, Linux 2.6.16, iptables 1.3.0. This firewall has eth1 facing the DMZ and eth0 is a 802.1q trunk with 6 VLANs and zones on it. I would like to allow one subnet living out beyond the DMZ to have access to all zones on this firewall. It seemed that creating a zone would allow for this to be done cleanly via a line in the policy file. I defined this special subnet as the
2013 Apr 02
2
rsync to sync time without attempting to modify the content
Hello I am setting up a central data repository for my team (several thousands of files, totaling about 4TB). There are multiple sources that I need to consolidate: a source may have a fraction of the total number of file, and there can be conflicts between different sources (that should be very occasional though). I want to detect those conflicts and manually merge them. Also, the