similar to: Why are files synced again and again when not using -a?

Displaying 20 results from an estimated 20000 matches similar to: "Why are files synced again and again when not using -a?"

2016 Jun 24
2
UPS is not turned off in slave-only configuration?
On Mittwoch, 22. Juni 2016 17:50, Roger Price wrote: On Wed, 22 Jun 2016, Andr? H?nsel wrote: > > Now, what I see is that when the UPS feeding server-1 goes LB, > > server-1 is indeed shut down, but it seems that the UPS is never switched off. > > > > This is a problem because when power is restored after shutdown, but > > before the battery runs out (with no
2018 Dec 14
1
Can not match USB UPS
Hi list, I seem to need another pair of eyes. Here's my ups.conf: [myups] driver = usbhid-ups port = auto vendor = 051d product = 0002 serial = 4B1717P25055 And here's the output of `/lib/nut/usbhid-ups -a myups -DDD`: 0.017467 Trying to match device 0.017479 Device does not match - skipping 0.017499 Checking device (051D/0002) (001/003) 0.094770 -
2016 Jun 22
2
What is the purpose of the upsmon setting in upsd.users?
Hi list, (I think) I understand that in upsmon.conf, the MONITOR line ends with "master" or "slave". Basically if it's master it will wait for slaves to shut down and if it's slave it will signal the master to switch off the UPS after shutdown. To be able to monitor a network UPS as a slave, there must be a user in upsd.users on the master system. This user needs to
2016 Jun 23
2
What is the purpose of the upsmon setting in upsd.users?
[please use reply-all when responding - the list does not mangle reply-to headers. thanks!] On Jun 22, 2016, at 4:06 AM, Andr? H?nsel wrote: > > On Mittwoch, 22. Juni 2016 09:21 Andr? wrote: > >> Hi list, >> >> (I think) I understand that in upsmon.conf, the MONITOR line ends with >> "master" or "slave". Basically if it's master it will
2016 Jun 22
2
UPS is not turned off in slave-only configuration?
I have two hosts. One is the ups-server. It's generator powered and can be assumed to never go down. This is the one that all the UPSs are connected to. It has: - the UPSs configured in upsd.conf - a "upsmon master" user in upsd.users - an empty upsmon.conf The other one is server-1. Its upsmon.conf contains: MONITOR test-apc at ups-server 1 monuser blah slave Now, what I see is
2016 Apr 02
3
apply mean function to a subset of data
Dear all; This must have a rather simple answer but haven't been able to figure it out: I have a data frame with say 2 groups (group 1 & 2). I want to select from group 1 say "n" rows and calculate the mean; then select "m" rows from group 2 and calculate the mean as well. So far I've been using a for loop for doing it but when it comes to a large data set is
2016 Apr 02
0
apply mean function to a subset of data
Hi Pedro, This may not be much of an improvement, but it was a challenge. selvec<-as.vector(matrix(c(nsel,unlist(by(toy$diam,toy$group,length))-nsel), ncol=2,byrow=TRUE)) TFvec<-rep(c(TRUE,FALSE),length.out=length(selvec)) toynsel<-rep(TFvec,selvec) by(toy[toynsel,]$diam,toy[toynsel,]$group,mean) Jim On 4/3/16, Pedro Mardones <mardones.p at gmail.com> wrote: > Dear all; >
2016 Apr 03
1
apply mean function to a subset of data
Here are several ways to get there, but your original loop is fine once it is corrected: > for (i in 1:2) smean[i] <- mean(toy$diam[toy$group==i][1:nsel[i]]) > smean [1] 0.271489 1.117015 Using sapply() to hide the loop: > smean <- sapply(1:2, function(x) mean((toy$diam[toy$group==x])[1:nsel[x]])) > smean [1] 0.271489 1.117015 Or use head() > smean <- sapply(1:2,
2019 Apr 07
2
Post login scripts environment
Dear Dovecot users, I am running Dovecot 2.2.27 on Debian Stretch, no issue so far. I wonder if there is a way to pass the remote IP address, in an environment variable, in the post login script. My Post login scripts are working well, except that when the server is accessed through a webmail (Roundcube or SOGo), the remote IP address is systematically 127.0.0.1. The other question I have is,
2002 Dec 01
4
WinXP duplicate computer name problem
I've setup Samba as a PDC and it's working fine. I have one windows xp machine already joined in the domain and working ok. But when i tried to add another WinXP machine to the domain, i got the error: "Could not join domain because the computer name is duplicated on the network". I don't think those were he exact words, but that's what it meant. Now, there is NO other
2009 Mar 02
1
rsync ignores --force and will not delete non-empty directories from destination (HFS+ -> FAT32)
Hi. This is my first post to this list. I have searched the archives but cannot find anything that touches on this particular issue. My scenario: I am trying to rsync from an external HFS+ (USB2) to a FAT32 external NAS drive, using rsync version 2.6.9 protocol version 29 (as supplied with Mac OS X Tiger 10.4.11). The data being synced is MP3 music files and JPGs. The command I am issuing
2015 Nov 26
2
install rrdtools-devel / rrdtool-perl
Hi guys , Im have some problems installing the following packages: rrdtool-devel rrdtool-perl Before we moved to centos/rhel7 it was a simple task, just doing: yum install rrdtool rrdtool-devel and rrdtool-perl was enough. Now, I only can install the rrdtool package but not rrdtool-devel and rrdtool-perl. I tryed adding some repos, but I think I added wrong ones. Also tryed downloading and
2008 Mar 27
2
colMeans in a data.frame with numeric and character data
Hi all, I would like to know if it is posible by, someway, to get colMeans from a data.frame with numeric as well as character data, dispersed all over the object. Note that I would like to get colMeans neglecting character data. I am really in need of some function proceeding in that way… All the best Diogo André Alagador [[alternative HTML version deleted]]
2008 Nov 06
2
comparing matrices using max or min
Dear all, I have 3 matrices with the same dimension, A,B,C and I would like to produce a matrix D where in each position would retrieve the max(or min) value along A,B,C taken from the same position. I guess that apply functions should fit, but for matrices objects I am not getting it. thanks in advance, Diogo André Alagador [[alternative HTML version deleted]]
2019 Apr 07
2
Post login scripts environment
> On 7 April 2019 18:55 Aki Tuomi via dovecot <dovecot at dovecot.org> wrote: > > > > On 7 April 2019 18:45 Andr? Rodier via dovecot <dovecot at dovecot.org> wrote: > > > > > > On Sun, 2019-04-07 at 17:49 +0300, Aki Tuomi via dovecot wrote: > > > > On 7 April 2019 17:26 Andr? Rodier via dovecot < dovecot at dovecot.org> wrote:
2011 Sep 10
3
Very slow using S4 classes
Hi everybody! I'm creating an object of a S4 class that has two slots: ListExamples, which is a list, and idx, which is an integer (as the code below). Then, I read a data.frame file with 10000 (ten thousands) of lines and 10 columns, do some pre-processing and, basically, I store each line as an element of a list in the slot ListExamples of the S4 object. However, many operations after this
2019 Apr 07
2
Post login scripts environment
On Sun, 2019-04-07 at 17:49 +0300, Aki Tuomi via dovecot wrote: > > On 7 April 2019 17:26 Andr? Rodier via dovecot < dovecot at dovecot.org> wrote: > > > > > > Dear Dovecot users, > > > > I am running Dovecot 2.2.27 on Debian Stretch, no issue so far. > > > > I wonder if there is a way to pass the remote IP address, in an > >
2012 Jan 07
1
constructing yieldcurve
Hello, With which package can I build a yield curve using swap data with the bootstrapping method? Thanks for the reaction, André [[alternative HTML version deleted]]
2018 Dec 10
1
Indexer worker small bug
Hello Timo, I will try this evening. Kind regards, Andr?. On 10 December 2018 07:56:26 GMT+00:00, Timo Sirainen <tss at iki.fi> wrote: >On 10 Dec 2018, at 7.50, Andr? Rodier <andre at rodier.me> wrote: >> >> On 2018-12-09 23:13, Timo Sirainen wrote: >>> On 9 Dec 2018, at 16.44, Andr? Rodier via dovecot ><dovecot at dovecot.org> wrote:
2019 Apr 06
1
SMTPUTF8 support
On 5 Apr 2019, at 13:47, Andr? Rodier via dovecot <dovecot at dovecot.org> wrote: > >> root at portal:/etc/postfix# postmap -q andr?@homebox.space ldap:/etc/postfix/ldap-aliases.cf >> andre at homebox.space You have a solution that properly maps UTF to a non-UTF namespace. As I understand it, SMTPUTF8 uses a UTF8 namespace. So, this would indicate SMTPUTF8 # postmap -q