[ The imperialist Japanese military must officially acknowledge and apologize for the coercion of young women into sexual slaves. / êꪤҳàõªòàõªÎÒ¿Ö˪˪·ª¿ð¨ÏÐñ«ëùìíÜâÏÚªÎ?ð¤àõªòÍëãÒªËìãªá¡¢Þóñªª·ªÊª±ªìªÐªÊªéªÊª¤. ]

»ç¿ëÀÚ

ID:
PW:

INDEX
01.°Ô½ÃÆÇ
°Ô½ÃÆÇ [72]
02.File Book
File ÀÚ·á½Ç [96]
Site Link [14]
°³ÀÎÆú´õ [201]
03.Field Book
Altibase [19]
Tibero [31]
MS-SQL [32]
MySQL [47]
DB2 [79]
ORACLE [3202]
PSQL [143]
CUBRID [5]
±âŸÁ¤º¸ [193]
¿î¿µÃ¼Á¦ [633]
04.Q/A Book
Q/A [53]
05.¹æ¸í·Ï
¹æ¸í·Ï [54]
·¹º§¾÷ [37]
±¸ÀÎ/±¸Á÷ [2]

±â³äÀÏ
Search
LINK
+ °¡Á· Hompy
+ DNSEver
IOTN :: Field Book :: ¿î¿µÃ¼Á¦

 È¸¿ø°¡ÀÔ

rsync »ç¿ë¿¹
ÃÖ±æÈ£ [LIST]   2011-11-13 08:45:12, Á¶È¸ : 33,663

Ãß°¡
rsync -av -e "ssh -p 2232" /backup/expdp/* oracle@backup:/backup/expdp/
cd /backup/
rsync -a --rsh='ssh -p222' arch server7:`pwd`
cd /backup/arch
find . -mtime -10 -type f | rsync -av --rsh='ssh -p222' --files-from=- .  server7:`pwd`


Ãß°¡ 2012/12
#!/bin/ksh
echo `date +%y%m%d_%H:%M`: BACKUP Start >> /tmp/rsync.`date +%y%m%d`.start.log
### rsync -ar --progress --bwlimit=10240 /data/img /backup/
### rsync -arP --bwlimit=10240 --files-from=/data/img.list /data/img /backup/
find /data/img | rsync -ar --files-from=- / /backup/
echo `date +%y%m%d_%H:%M`: BACKUP END >> /tmp/rsync.`date +%y%m%d`.end.log
# rsync -arP
# rsync -ar --progress
# rsync -ar --bwlimit=1024
# rsync -ar --files-from=list.file

rsync -av /data/src/ /new/
rsync -avz oldsvr:/data/src/ /data/

[root@dbsvr :/root]# rsync
rsync  version 2.6.3  protocol version 28
Copyright (C) 1996-2004 by Andrew Tridgell and others
<http://rsync.samba.org/>
Capabilities: 64-bit files, socketpairs, hard links, symlinks, batchfiles,
              inplace, IPv6, 64-bit system inums, 64-bit internal inums

rsync comes with ABSOLUTELY NO WARRANTY.  This is free software, and you
are welcome to redistribute it under certain conditions.  See the GNU
General Public Licence for details.

rsync is a file transfer program capable of efficient remote update
via a fast differencing algorithm.

Usage: rsync [OPTION]... SRC [SRC]... [USER@]HOST:DEST
  or   rsync [OPTION]... [USER@]HOST:SRC DEST
  or   rsync [OPTION]... SRC [SRC]... DEST
  or   rsync [OPTION]... [USER@]HOST::SRC [DEST]
  or   rsync [OPTION]... SRC [SRC]... [USER@]HOST::DEST
  or   rsync [OPTION]... rsync://[USER@]HOST[:PORT]/SRC [DEST]
  or   rsync [OPTION]... SRC [SRC]... rsync://[USER@]HOST[:PORT]/DEST
SRC on single-colon remote HOST will be expanded by remote shell
SRC on server remote HOST may contain shell wildcards or multiple
  sources separated by space as long as they have same top-level

Options
-v, --verbose               increase verbosity
-q, --quiet                 decrease verbosity
-c, --checksum              always checksum
-a, --archive               archive mode, equivalent to -rlptgoD
-r, --recursive             recurse into directories
-R, --relative              use relative path names
     --no-relative           turn off --relative
     --no-implied-dirs       don't send implied dirs with -R
-b, --backup                make backups (see --suffix & --backup-dir)
     --backup-dir            make backups into this directory
     --suffix=SUFFIX         backup suffix (default ~ w/o --backup-dir)
-u, --update                update only (don't overwrite newer files)
     --inplace               update destination files inplace (SEE MAN PAGE)
-K, --keep-dirlinks         treat symlinked dir on receiver as dir
-l, --links                 copy symlinks as symlinks
-L, --copy-links            copy the referent of all symlinks
     --copy-unsafe-links     copy the referent of "unsafe" symlinks
     --safe-links            ignore "unsafe" symlinks
-H, --hard-links            preserve hard links
-p, --perms                 preserve permissions
-o, --owner                 preserve owner (root only)
-g, --group                 preserve group
-D, --devices               preserve devices (root only)
-t, --times                 preserve times
-S, --sparse                handle sparse files efficiently
-n, --dry-run               show what would have been transferred
-W, --whole-file            copy whole files, no incremental checks
     --no-whole-file         turn off --whole-file
-x, --one-file-system       don't cross filesystem boundaries
-B, --block-size=SIZE       force a fixed checksum block-size
-e, --rsh=COMMAND           specify the remote shell
     --rsync-path=PATH       specify path to rsync on the remote machine
     --existing              only update files that already exist
     --ignore-existing       ignore files that already exist on receiving side
     --delete                delete files that don't exist on the sending side
     --delete-excluded       also delete excluded files on the receiving side
     --delete-after          receiver deletes after transferring, not before
     --ignore-errors         delete even if there are I/O errors
     --max-delete=NUM        don't delete more than NUM files
     --partial               keep partially transferred files
     --partial-dir=DIR       put a partially transferred file into DIR
     --force                 force deletion of directories even if not empty
     --numeric-ids           don't map uid/gid values by user/group name
     --timeout=TIME          set I/O timeout in seconds
-I, --ignore-times          turn off mod time & file size quick check
     --size-only             ignore mod time for quick check (use size)
     --modify-window=NUM     compare mod times with reduced accuracy
-T, --temp-dir=DIR          create temporary files in directory DIR
     --compare-dest=DIR      also compare destination files relative to DIR
     --link-dest=DIR         create hardlinks to DIR for unchanged files
-P                          equivalent to --partial --progress
-z, --compress              compress file data
-C, --cvs-exclude           auto ignore files in the same way CVS does
     --exclude=PATTERN       exclude files matching PATTERN
     --exclude-from=FILE     exclude patterns listed in FILE
     --include=PATTERN       don't exclude files matching PATTERN
     --include-from=FILE     don't exclude patterns listed in FILE
     --files-from=FILE       read FILE for list of source-file names
-0, --from0                 all *-from file lists are delimited by nulls
     --version               print version number
     --daemon                run as an rsync daemon
     --no-detach             do not detach from the parent
     --address=ADDRESS       bind to the specified address
     --config=FILE           specify alternate rsyncd.conf file
     --port=PORT             specify alternate rsyncd port number
     --blocking-io           use blocking I/O for the remote shell
     --no-blocking-io        turn off --blocking-io
     --stats                 give some file transfer stats
     --progress              show progress during transfer
     --log-format=FORMAT     log file transfers using specified format
     --password-file=FILE    get password from FILE
     --bwlimit=KBPS          limit I/O bandwidth, KBytes per second
     --write-batch=FILE      write a batch to FILE
     --read-batch=FILE       read a batch from FILE
     --checksum-seed=NUM     set block/file checksum seed
-4, --ipv4                  prefer IPv4
-6, --ipv6                  prefer IPv6
-h, --help                  show this help screen


Please see the rsync(1) and rsyncd.conf(5) man pages for full documentation
See http://rsync.samba.org/ for updates, bug reports, and answers
rsync error: syntax or usage error (code 1) at main.c(1073)
216.73.216.78


ÃÖ±æÈ£
rsync -avH /data/* root@svr:/nas 2013-10-17
18:45:48



  LIST

Á¦¸ñ ÀÛ¼ºÀÚ ÀÛ¼ºÀÏ Á¶È¸
Linux  OpenSSL: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure    ÃÖ±æÈ£ 2025/06/17 4
Solaris  pkg install gcc    ÃÖ±æÈ£ 2025/06/17 6
Linux  grep sed °ø¹é+ Á¦°Å expdp.log , column -t º¸±âÁÁ°Ô Á¤·Ä    ÃÖ±æÈ£ 2025/06/11 6
Linux  Activate the web console with: systemctl enable --now cockpit.socket    ÃÖ±æÈ£ 2025/06/06 6
Linux  ¹éµµ¾î backdoor test    ÃÖ±æÈ£ 2025/06/06 8
Linux  shell function log /var/log/messages # ref /etc/init.d/ohasd    ÃÖ±æÈ£ 2025/06/05 5
Linux  gnome GUI login fail    ÃÖ±æÈ£ 2025/06/02 16
Linux  unzip End-of-central-directory signature not found.    ÃÖ±æÈ£ 2025/05/30 32
Linux  yum dvd iso config /etc/fstab ignore error booting    ÃÖ±æÈ£ 2025/05/27 37
Linux  vi if then ÀÚµ¿ ÁÙ¹Ù²Þ ²ô±â [ touch ~/.vimrc ]    ÃÖ±æÈ£ 2025/05/25 24
Linux  mount -t cifs -o username=id,password=pwd //x.x.x.x/nas.dir /mnt.dir # nfs mount    ÃÖ±æÈ£ 2025/05/22 22
Windows  Apache error.og [error] Server ran out of threads to serve requests. Consider raising the ThreadsPerChild setting    ÃÖ±æÈ£ 2025/05/09 22
Windows  mobaxterm Servers / Windows tftp ftp http ssh/sftp telnet nfs vnc ¹«·á ¼­¹ö     ÃÖ±æÈ£ 2025/04/14 28
Solaris  /usr/sbin/syslogd /var/adm/messages ·Î±× ¾ø´Â°æ¿ì [ kill -1 `cat /var/run/syslog.pid` ]    ÃÖ±æÈ£ 2025/03/20 33
Linux  yum install / "Could not resolve host: mirrorlist.centos.org; ¾Ë ¼ö ¾ø´Â ¿À·ù"    ÃÖ±æÈ£ 2024/10/25 42
Solaris  kex_exchange_identification: Connection closed by remote host    ÃÖ±æÈ£ 2024/09/19 27
Linux  ps -ef pid °¡Áö°í ÆÄÀÏ À§Ä¡ È®ÀΠ   ÃÖ±æÈ£ 2024/08/23 42
Linux  date -1 / date +%Y%m%d -d $d' -1days'    ÃÖ±æÈ£ 2024/08/19 43
Windows  vpn ¿ø°Ý ÄÄÇ»ÅÍ¿¡ ¿¬°áÇÏÁö ¸øÇß½À´Ï´Ù. ÀÌ¿¬°á¿¡ ´ëÇÑ ³×Æ®¿öÅ© ¼³Á¤À» º¯°æÇØ¾ß ÇÕ´Ï´Ù.    ÃÖ±æÈ£ 2024/07/24 40

    ¸ñ·Ïº¸±â   ´ÙÀ½ÆäÀÌÁö 1 [2][3][4][5][6][7][8][9][10]..[32]   [´ÙÀ½ 10°³]
       

Copyright 1999-2025 Zeroboard / skin by ÃÖ±æÈ£(gilho.kr@gmail.com)
ÃÖ±Ù ´ñ±Û
2016/06/09
201606 Ãß°¡ grid/runcluvfy.sh...
by ÃÖ±æÈ£
2016/05/09
lg tab full screen VNCSERVE...
by ÃÖ±æÈ£
2013/10/17
rsync -avH /data/*

by ÃÖ±æÈ£
ÃÖ±Ù °Ô½Ã¹°
06/27
[ORACLE]
The clock on host node2 differ....
by ÃÖ±æÈ£
06/26
[ORACLE]
PRCD-1229 ORA-29701: unable to....
by ÃÖ±æÈ£
06/17
[±âŸÁ¤º¸]
tmmd [COM0603]: Connection ref....
by ÃÖ±æÈ£