similar to: Question on "base directory"

Displaying 20 results from an estimated 430 matches similar to: "Question on "base directory""

2003 Feb 18
2
Include files though directory excluded
Hi, I got a little question on the rsync-option include/exclude: I excluded all hidden files in my home-directory but I want two files to be included. I used following command: gregor@notebook:~> rsync -avzuPn -e ssh --exclude=.* --exclude=* --include=.kderc --include=.gaimrc /home/gregor/ 192.168.0.1:/home/gregor/ building file list ... 1 file to consider wrote 69 bytes read 20 bytes
2003 Aug 24
1
problems in updating cvsroot under cygwin
Hi I've always updated and committed my cvsroot directory using rsync also under windows with rsync distributed with cygwin. After installed the new release of cywing with rsync 2.5.6 protocol version 26, updating my cvsroot does not work anymore (under windows): it locks with receiving file list ... I use this command to update: rsync -e ssh -avzu --delete -c -C --include=CVS
2003 Nov 20
1
copying pointed to links
HI, I have a filesystem containing a symbolic link. pglc0003> ls -l |grep TA lrwxrwxrwx 1 cleaw adm 26 Nov 19 17:23 TA -> /pgadm1/adm/cleaw/tempArea I'd like to copy the symbolic link TA to the /tmp area, I'd also like to have the directory tempArea from /pgadm1/adm/cleaw/tempArea to be updated in /tmp by just copying the symbolic link. During this process, I wish
2002 Dec 07
0
Tutorial: Synchronize notebook and PC (German)
Hi, I wrote a tutorial which describes how to easily fetch your data on your notebook to take your work with you. It uses rsync over ssh with the use of a little script that I have written. I'm sorry, but this tutorial is only available in German. It would be nice if you will take a look at this, for I'm not sure, if it's OK. If someone is a guru in rsync, then look at this, too,
2003 Oct 23
1
Re: ichar() function in R : 1st implementation, RFC
(RFC := Request For Comments) >>>>> "Tim" == Tim Keighley <Tim.Keighley@csiro.au> >>>>> on Thu, 23 Oct 2003 11:45:22 +1000 writes: Tim> Hi Martin, Tim> In October 2000 you wrote to r-help: >>> which reminds me that I've had a desire for something like >>> the old S function [from the blue book, and
2003 Jan 19
0
rsync-synchronize-tutorial - feedback needed [German]
Hi, I wrote a simple tutorial on how to synchronize your notebook with the desktop-PC over LAN. I described how to install und use rsync. After that I mention two scripts which I have written for comfortable synchronisation. This text is directed to newbies who want to take their work with them. I hope that everything is clearly described. It would be nice if you can take a look at this,
2006 Mar 28
1
can rsync delete only one file in one command? is it a bug?
I want to call rsync from java webserver in Linux. situation as below: source directory: 001.doc 002.doc /D01/001.doc /D01/002.doc /D01/D11/001.doc /D02/001.doc destination directory: 001.doc 003.doc 004.doc /D01/001.doc /D01/003.doc /D01/004.doc /D01/D11/003.doc /D02/003.doc now, I want to only delete /003.doc when synchronization, no add, no update, This exclude works: rsync -avzu
2014 Jan 17
1
rkhunter
I updated java-1.7.0-openjdk a few hours ago - it *was* listed as a critical security update, and I don't want yelling from rkhunter. The man page tells me I can tell it rkhunter --propupd <package name>... but it doesn't know the name above as a package. Been googling a bit, and cannot find a good example of a package (other than the manpage's coreutil). Anyone got an example,
2017 Feb 19
4
wbinfo -i returns the same id for all users, authentication doesn't seem to go through winbind at all
Emmanuel Florac via samba wrote: > Unknown parameter encountered: "winbind enumerate users" > Ignoring unknown parameter "winbind enumerate users" > Unknown parameter encountered: "winbind enumerate groups" > Ignoring unknown parameter "winbind enumerate groups" It may be irrelevant, but I have: winbind enum groups = Yes winbind enum users
2012 Nov 21
1
Rsync --update copy one file multiples times
Hi All, My using rsync command to backup my mail server mailbox to backup server. I am using following command for backup. rsync -avzu -e ssh root at 192.168.1.12:/mail_home /mail_backup I configured daily cron for this command in backup server. In mail server /mail_home folder having all user's mailbox and size of mail_home is 345 GB and in backup server I have assign 450 GB for
2006 Sep 18
1
code 23 error.
Hello everyone! I didn't find anything in the archives that seemed similar (same error, different offending lines of code). I'm having an issue with rsync on a couple of my servers. A couple of others run just fine but 2 of them give me the same message (see below) when I try to do backups from one server to these linux boxes. All of the linux boxes are the same and have the save
2012 May 10
4
NetworkManager frustration...
I would like to use dnsmasq to cache nameserver query results, and I have set dhcp to prepend the 127.0.0.1 name-server to the list of nameservers. dnsmasq would then automatically exclude the localhost as a name server and use all the others from the list provided by dhcp. But it was too nice to be true, because NetworkManager was there, ready to mess up anything I try to do, including the
2017 Feb 18
3
wbinfo -i returns the same id for all users, authentication doesn't seem to go through winbind at all
On Sat, 18 Feb 2017 13:50:52 +0100 Emmanuel Florac via samba <samba at lists.samba.org> wrote: > Le Sat, 18 Feb 2017 13:20:52 +0100 > Emmanuel Florac via samba <samba at lists.samba.org> écrivait: > > > I've added > > idmap config * : backend = tdb > idmap config * : range = 10000-30000 > > to smb.conf, and now 'wbinfo -i
2006 Mar 20
2
levels for list and data.frame
Hello! Does R core find the following pacth usefull - I created methods for levels for list and data.frame, which can be usefull to get a list of levels for entries in a list or columns in a data.frame. Patch is attached and shown bellow example # Example > tmp <- list() > tmp$a <- factor(letters[1:10]) > tmp$b <- factor(letters[5:14]) > tmp$c <- 1:10 > tmp1 <-
2005 Mar 25
4
Gmail invitation
Hello R users! I just found out that I have 49 invitations for Gmail (gmail.google.com). I have been using it now for a while and is really nice. Don't forget 1 GB for free. I will invite those who respond to this mail by FIFO. -- Lep pozdrav / With regards, Gregor Gorjanc ------------------------------------------------------------------------ University of Ljubljana Biotechnical
2006 Jul 02
4
Test for argument in ...
Hello! Say I have a function foo1, which has argument ... to pass various arguments to foo2 i.e. foo1 <- function(x, ...) { foo2(x, ...) } Say that foo2 accepts argument arg1 and I would like to do the following: - if foo1 is called as foo1(x) then I would like to assign some value to arg1 inside foo1 before calling foo2 arg1 <- "some value" foo2(x, arg1=arg1) - if foo1 is
2007 May 19
4
GPG key for Ubuntu packages
Hi! Is anyone experiencing the following: $ gpg --keyserver subkeys.pgp.net --recv-key E2A11821 gpg: requesting key E2A11821 from hkp server subkeys.pgp.net gpg: keyserver timed out gpg: keyserver receive failed: keyserver error Regards, Gregor
2005 Feb 22
6
Run Sweave and LaTeX directly from command line
Hello! Those of you, who use Sweave a lot, will probably find my shell script usable. You can get it at: http://www.bfro.uni-lj.si/MR/ggorjan/programs/shell/Sweave.sh No warranty, however don't hesitate to contact me if you find an error or have a patch! -- Lep pozdrav / With regards, Gregor GORJANC --------------------------------------------------------------- University of
2005 Feb 07
2
Programming/scripting with "expressions - variables"
Hello to Rusers! I am puzzled with R and I really do not know where to look in for my problem. I am moving from SAS and I have difficulties in translating SAS to R world. I hope I will get some hints or pointers so I can study from there on. I would like to do something like this. In SAS I can write a macro as example bellow, which is afcourse a silly one but shows what I don't know how
2004 Dec 31
4
R-intro
Hello! I was reading R-intro and I have some suggestions: R-intro.html#A-sample-session rm(fm, fm1, lrf, x, dummy) suggestion rm(fm, fm1, lrf, x, y, w, dummy) The next section will look at data from the classical experiment of Michaelson and Morley to measure the speed of light. file.show("morley.tab") mm <- read.table("morley.tab") suggestion mm <- data(morley)