search for: getme

Displaying 5 results from an estimated 5 matches for "getme".

Did you mean: getmd
2008 Jun 04
5
Mounting cifs shares by non-root users on CentOS 4.6
...users via /etc/fstab on a CentOS 4.6 box - I've followed the instructions at: <http://wiki.centos.org/TipsAndTricks/WindowsShares> Using something like the /etc/fstab example given in the wiki page (with, of course, using a valid share, username and password for my set up): //winbox/getme /mnt/win cifs user,uid=500,rw,suid,username=sushi,password=yummy 0 0 When as a non-root user I do: % mount /mnt/win mount error 1 = Operation not permitted Refer to the mount.cifs(8) manual page (e.g.man mount.cifs) Running mount as root works fine, but I can not get it to work for non-root us...
2007 Apr 26
1
Weird exclude info
...nfig file and creates a local exclude list to use when doing the backup. I wont bore you with the script details but im having a weird issue with exclude. If there are files to be excluded they are put into a file like this :- $ cat tmp/lavatest.exclude /path/to/exclude /export/home/user/test/dontgetme Now when the rsync runs i use the following options (ignore the variables):- rsync -exclude-from=/path/tmp/lavatesting.exclude -PaRzq --delete --delete-excluded --copy-unsafe-links --numeric-ids -e "${SSH}" root@${remote_get_host}:${RLIST} ${remote_get_localdir} >> ${remote_error...
2006 Dec 29
1
How to improve speed of a single file transfer over an unstable link?
...their new computer. But the link is sporadic, thus a continous copy will not succeed. The session dies after 25mins - 2 hours. Thus, I've scripted the following script 'get_me.sh' #!/bin/sh mv .file.bkf.* ./file.bkf rsync --timeout 90 user@remote:/dir/file.bkf ./file.bkf ./getme.sh So, the script moves the temp file created by rsync onto the file itself, then calls rsync to continue sync'ing, and then after rsync losses it's connection, the script calls itself and the cycle starts again. Not very elegant but it's working. Sort of. I'm now starting to decr...
2023 Dec 02
1
Try reproduce glmm by hand
...)) x <- (x-min(x))/(max(x)-min(x)) # In g0, I have the results of the glmm library(lme4) g0 <- glmer(formula = df ~ x + (1 | ID), family = binomial(link="logit"), nAGQ=1) -logLik(g0) # 'log Lik.' 268.0188 (df=3) # I get the fitted parameters fixep <- fixef(g0) par <- getME(g0, c("theta","beta")) # _______________________________________________________________________ # Question 1: how theta is converted into the specific effect on (intercept) for the random effect ? # Then how a theta parameter is converted into intercepts? # ___________________...
2017 Aug 22
2
more questions on setting up autofs on C7
...ondering how to specify that in an autofs recipe instead... If doing cifs mounts, /etc/auto.master may contain this line: /mymount /etc/auto.mymount then there would be a file /etc/auto.mymount that contains a line similar to this: winbox -fstype=cifs,rw,noperm,user=sushi,pass=yummy ://winbox/getme so, in my case, the USB drive contains an xfs filesystem. would I do something like this: in /etc/auto.master: backup /etc/auto.backup and in /etc/auto.backup backup -fstype=xfs,defaults,noauto,users :UUID=09bfc97a-8db2-46de-b4dd-427da19b114 Would that be expected to work, or am I all overloo...