Displaying 6 results from an estimated 6 matches for "thuesday".
2014 Apr 09
2
[Bug 10545] New: Rsync first time deletes files, second time it synchronates files with same name
...quot;/usr/bin/rsync -avh --delete --progress /var/disk/disk-20/
--exclude={lost+found} rsync:192.168.0.5:/var/disk-01 >/$logpath/rsync.log"
(disk-01 is a partition 2 of 146 Gb on a 200Gb Harddisk; partition 1 is Debian)
I noticid that synchronizing on Monday was just a few minutes,
but on thuesday it took about 26 minutes.
I found out that on thuesday it took so long because the file in month was
synchronised. This should be done on monday.
So on Monday after move of the full backup from daily to month the file in
daily was deleted.
And on thuesday month was synchronized.
Has this something...
2004 Mar 08
1
Gethostbyaddr failed
...d (you can't find any "active
connections" on swat), active shares are ok.
In log.smbd for these users with this trouble i have this message :
"Gethostbyaddr failed for 1.1.1.1.0 "(ip adress)
What is that ? What can i do ?
P.S. :
Is it a problem with a tbd corrupted ?
On thuesday i had a trouble with sessionid.tdb (connexion number >
3000). I think it's the beginnig of my current problem
For this problem (a collegue sayed me to do this)
I stopped samba
I destroyed this table
I restarted samba
All was ok
2016 Apr 27
1
Antwort: RE: Missing Values in Logical Expressions
Hi Petr,
Hi Jim,
many thanks for your help. Today I constructed a sample dataset and tested
your suggestions. Everything worked OK.
Then I took the code and testet on the original data. And - it worked OK
this morning also.
I went back to my script of Thuesday and ran it again. OK. Then I used my
script of Monday and ran it.. OK.
I have no idea what was wrong yesterday. To see that there is a problem
and not being able to replicate it a day later even if it did not work all
day before is very strange.
If the problem arises again, I will raise my han...
1998 Oct 08
0
Trouble with multiple login under the same name
...and without it). They have valid unix account and
password
(I don't use smbpassword)
But as the network is in a school, I don't want (and have the time) to
create a
account for every students (not really students they are ~6 years old !!
).
So I decide to create only 5 account :
-monday
-thuesday ...
And on Monday all users use monday as login and "dummy_pass" for
password.
So when 2 users logon with this method (same login/password) .. that
work fine
They have access to the server .. with the right ownership(all the same)
But when they try to logout they have a nice blanck sc...
2016 Apr 26
0
Missing Values in Logical Expressions
Hm
Based on Jim's data your construction gives me correct result.
> Umsatz_2011<-c(1,2,3,4,5,NA,7,8,NA,10)
> Kunde_2011<-rep(0:1,5)
> Check_Kunde_2011 <- ifelse(is.na(Umsatz_2011) == TRUE & Kunde_2011 == 1, 1, 0)
> Check_Kunde_2011 <- factor(Check_Kunde_2011, levels = c(1,0), labels = c("Check", "OK"))
> table(Check_Kunde_2011)
2016 Apr 26
3
Missing Values in Logical Expressions
Hi All,
I need to evaluate missing values in my data. I am able to filter these
values and do simple statistics on it. But I do need new variables based
on variables with missing values in my dataset:
Check_Kunde_2011 <- ifelse(is.na(Umsatz_2011) == TRUE & Kunde_2011 == 1,
1, 0)
Check_Kunde_2011 <- factor(Check_Kunde_2011, levels = c(1,0), labels =
c("Check",