similar to: Rsync Minimalist: --include

Displaying 20 results from an estimated 9000 matches similar to: "Rsync Minimalist: --include"

2005 Jan 18
1
Rsync Minimalist: --include only does "add_exclude"
Why does this not include? I have tried many variations including adding an exclude command. Includes.txt: + //aBackup/* + //apic/* - /* rsync --verbose --progress --stats -vv --recursive -e "ssh -p 2423" --include-from=includes.txt rsynchost: add_exclude(+ //aBackup/*.*) add_exclude(+ //apic/*) add_exclude(- /*) user@rsynchost's password: receiving file list ... add_exclude(+
2003 Jan 30
0
smbclient -c commands
Hello, Has anyone else run into the problem where smbclient only processes the commands before a space in the "command string" (-c) field but not the rest? My NON-WORKING example: # smbclient '\\server\Documents' -d 0 -U abackup -E -c 'archive 1;recurse;du' Password: Archive level is 0 It processed the "archive" (returning what archive level it's at
2004 Sep 27
0
Re: Mail Delivery (failure minimalist@vanheusden.com)
ERROR: There is no such list DELIVERY here. SOLUTION: Send a message to minimalist@vanheusden.com with a subject of 'info' (no quotes) for a list of available mailing lists. -- Sincerely, the Minimalist
2003 Nov 20
3
minimalist rsync on windows
Hi, Is the rsync-minimalist still supported for windows? I am using Windows XP Home. I am testing, to get a solution for a client. The minimalist looked very nice--a cygwin.dll and an rsync and an ssh.exe. However, I can connect with ssh, but not with rsync over ssh using these files. I have also tried plink from putty with this rsync. I gather from a lot of the messages that the consenus is
2006 Feb 04
1
Trying to mount with minimalist smb.conf
I am trying to mount a share on a remote machine using a miminal smb.conf as suggested in the Samba HOWTO. Nmbd and smbd are running on the target machine. The calling machine (server?) has the name of the target (linda2) in /etc/smbshares. When I try to mount I get the error message: Got a positive name query response from 127.0.0.1 ( 192.168.0.4 ) Connecting to 192.168.0.4 at port 445
2009 Dec 24
2
Include and Exclude
I thought this command would do what I wanted, but instead it doesn't transfer any files: rsync -avh --stats --password-file=/var/rsync.passwd --include=Maildir/ --exclude=* mail::root/usr/home /backup/usr/ I want to backup ONLY the /usr/home/*/Maildir directories. I don't want any other files from any other directories to be transferred. I can see in the man page where this is a
2005 Jun 04
1
Usage question for source at /
I wish to rsync an entire Linux tree to another partition for backup while excluding certain directories. /home /var and /usr/local are mounted on separate partitions. How do I specify starting at the root directory? Is // correct? The USAGE section of man rsync and some googling suggest I need a trailing / for the source path. Is the line below correct? rsync -uacHv
2003 Apr 23
2
Fixing some exclude/include bugs
As threatened a while back, there are some exclude/include bugs that I'd like to see fixed in rsync. Here is the patch: http://www.blorf.net/rsync-exclude.patch This fixes the following bugs: - A non-anchored, slash-including pattern with a wildcard needs to be matched at the end of the path (e.g. "CVS/R* should match throughout the tree, not just at /CVS/R*). - A leading
2013 May 27
1
Platform variations with --exclude-from
On Linux, an rsync command and exclude_file contents of: # cat exclude_file /etc/alsa # rsync -a --delete --delete-excluded --exclude-from=exclude_file /etc server::module properly excludes /etc/alsa but not any file within /etc's directories that is named alsa. On Windows I don't seem to be able to reliably emulate this: C:\Scripts\Backup\rsyncd>type rsyncd_exclude
2006 May 20
1
problem to backup some folder - folder empy
hi my script to backup my home folder BDIR=/home/$USER EXCLUDE=exclude.txt OPTS="-a -r -v -p -t --del --exclude-from=$EXCLUDE --progress" BACKUPDIR=/media/dvdrecorder rsync $OPTS $BDIR $BACKUPDIR my exclude file + .kde/ + .kde/share/ + .kde/share/apps/ + .kde/share/apps/kmail/*** + .kde/share/apps/kwallet/*** + .kde/share/apps/konqueror/*** + .kde/share/apps/kabc/*** - .** when i
2006 Jul 10
5
Definition of "anchored" and "unanchored" probes
Referring to the DTrace manual: "Module If this probe corresponds to a specific program location, the name of the module in which the probe is located. This name is either the name of a kernel module or the name of a user library. Function If this probe corresponds to a specific program location, the name of the program function in which the probe is located." and then ...
2010 Oct 22
3
include-from or files-from
Hello List, i have got a large File-List which looks like this: ...snip... 165/165950*.jpg 166/166072*.jpg ...snap.... Now i would like to transfer only those file from that list. The rsync command: rsync -avz -F --files-from=/tmp/synclist-small.txt /mnt/ /data/ does not seem to work due to that wildcard. The command: rsync -avz -F --include-from=/tmp/synclist-small.txt /mnt/ /data/ syncs
2003 Jan 09
1
Help with CVS related include pattern
I'm trying to use rsync to make a local copy of only a subset of a directory tree: all directories, and all files within "CVS/" directories, but nothing else. I thought this might work: rsync -av --include '*/' --include 'CVS/*' --exclude '*' src src_cvs It does recursively copy all directories (including CVS directories), but it doesn't copy the
2007 Oct 04
1
Include on few directory
Hello, I would like only to sync few directories between my two Linux boxes. I tries this but no help sudo rsync -avrtzun --stats \ --include-from "include-nix" \ --exclude-from "excludes-nix" \ --delete \ --progress \ -e "ssh -l hab" /home/hab/ desktop:/home/hab excludes-nix * include-nix Development/* www/* Personal/* can you help? -- OOzy Ubuntu-Feisty
2003 Jul 09
1
RH8 guest: bad fs?
I recently reinstalled RH8 as a VMware guest on a WinXP box. I used a previously proven script at level 3, containing, in one line with no inappropriate spaces: mount -t smbfs -o user,noauto,dmask=777,fmask=777,username=xx, password=yy //DELLBOX/linuxShare /mnt/linuxShare I get a failure that reports numerous possibilities including bad fs, and other other things. I suspect I omitted a
2006 Mar 30
0
Mongrel and capistrano
Hello list, I discovered mongrel just a few days ago and it already won me overlighttpd for deployment of my future project, so my honestcongratulations to author. My question though is, how one could use capistrano with mongrel (orvice versa) to automate deployments. Since mongrel is plain HTTP anddoes not use fastcgi, will it need to be restarted after each checkouton deployment server like
2011 Jan 13
2
[PATCH] One more -x to not traverse cyclic bind-mounts
This patch allows one to repeat the '-x' option a third time to stop rsync from traversing potentially cyclic bind mounts that are on the same filesystem. For example, the following scenario would cyclically traverse the bind mounts until the OS (Linux in this case) hits a maximum traversal count, thank goodness. Other OSes may traverse the bind mount indefinitely... su cd mkdir
2003 Feb 14
1
ogg123 and plugger
Hi. I'm trying to get plugger to work with ogg123 and it does - sort of. No matter what the song is, it plays 24 seconds of the song and then dies. Same spot every time - I've tried with a short song (Janis Joplin Mercedes Benz) and a long song (Cracker Eurotrash Girl). I have this as the mime identification in the plugger rc file: audio/ogg: ogg: Vorbis Ogg audio application/x-ogg: ogg:
2019 Aug 27
2
implied-dirs tail component being chown'd
I use rsync in a fairly complex scripted situation and am trying to figure out how to avoid changing ownership/permissions just on the directories specified on the command line (but operate normally for everything underneath). I've been using --relative --no-implied-dirs with some success in other situations, but here it still seems to try to chown the last path component of the
2005 Sep 20
4
building initrd.img with updated drivers
Can someone point me to instructions on how to build a pxeboot/initrd.img with updated drivers. I would like to pxe boot and install rh8 on a newer machine, and the pxeboot files that come with rh8 (2.4.20-8) don't support my e1000 NIC. I believe that the newer 2.4.20-28.8 drivers will, but I'm having trouble finding instructions in rebuilding the pxeboot initrd.img + vmlinuz to