Notebook

これは日々の作業を通して学んだことや毎日の生活で気づいたことをを記録しておく備忘録である。

HTML ファイル生成日時: 2024/11/02 17:34:23.235 (台灣標準時)

rsync によるデータの同期

rsync によるデータの同期の方法を記録しておく。

転送元の計算機に rsync をインストールする

転送元の計算機で rsync をインストールする。

# cd /usr/pkgsrc/net/rsync
# make install

.....

=> Automatic manual page handling
=> Generating post-install file lists
=> Checking file-check results for rsync-3.2.3
=> Checking for non-existent script interpreters in rsync-3.2.3
=> Checking file permissions in rsync-3.2.3
=> Checking for missing run-time search paths in rsync-3.2.3
=> Checking for work-directory references in rsync-3.2.3
=> Creating binary package /data0/netbsd/pkgsrc/current/pkgsrc/net/rsync/work/.packages/rsync-3.2.3.tgz
===> Building binary package for rsync-3.2.3
=> Creating binary package /tmp/packages/All/rsync-3.2.3.tgz
===> Installing binary package of rsync-3.2.3
===========================================================================
The following files should be created for rsync-3.2.3:

        /etc/rc.d/rsyncd (m=0755)
            [/usr/pkg/share/examples/rc.d/rsyncd]

===========================================================================
# make clean
===> Cleaning for rsync-3.2.3

転送先の計算機に rsync をインストールする

転送先の計算機で rsync をインストールする。

# cd /usr/pkgsrc/net/rsync
# make install

.....

# => Automatic manual page handling
=> Generating post-install file lists
=> Checking file-check results for rsync-3.2.3
=> Creating binary package /data0/netbsd/pkgsrc/current/pkgsrc/net/rsync/work/.packages/rsync-3.2.3.tgz
===> Building binary package for rsync-3.2.3
=> Creating binary package /tmp/packages/All/rsync-3.2.3.tgz
===> Installing binary package of rsync-3.2.3
===========================================================================
The following files should be created for rsync-3.2.3:

        /etc/rc.d/rsyncd (m=0755)
            [/usr/pkg/share/examples/rc.d/rsyncd]

===========================================================================
# make clean
===> Cleaning for rsync-3.2.3

データを転送する

以下のようにすると、 data_dir というディレクトリ以下のデータが、 remote_host というホストの /somewhere/in/the/disk 以下に転送される。

% rsync -av -e 'ssh -p 12345' data_dir remote_host:/somewhere/in/the/disk

注意点

rsync を使ってデータを同期する場合には、注意する点があるようである。以 下のように、転送元のディレクトリを指定するときに、スラッシュをつけると、 そのディレクトリの下にあるものが転送される。

% rsync -av -e 'ssh -p 12345' data_dir/ remote_host:/somewhere/in/the/disk


Frequently accessed files

  1. Computer___Python/20220518_0.html
  2. Computer___Network/20230726_00.html
  3. Computer___Network/20230516_00.html
  4. Misc___Taiwan/20240207_00.html
  5. Computer___FreeBSD/20220621_0.html
  6. Computer___Python/20220715_0.html
  7. Food___Taiwan/20220429_0.html
  8. Computer___Network/20230508_00.html
  9. Computer___NetBSD/20220817_3.html
  10. Computer___Python/20220410_0.html
  11. Computer___Network/20240416_00.html
  12. Computer___Debian/20210223_1.html
  13. Computer___Network/20240130_00.html
  14. Computer___Python/20210124_0.html
  15. Computer___NetBSD/20230119_00.html
  16. Computer___NetBSD/20220428_0.html
  17. Computer___Python/20221013_0.html
  18. Computer___NetBSD/20220818_1.html
  19. Science___Math/20220420_0.html
  20. Computer___NetBSD/20240101_02.html
  21. Computer___TeX/20230503_00.html
  22. Computer___NetBSD/20230515_00.html
  23. Computer___NetBSD/20220808_0.html
  24. Science___Astronomy/20220503_0.html
  25. Computer___NetBSD/20210127_0.html
  26. Computer___Python/20240101_00.html
  27. Computer___Network/20220413_1.html
  28. Computer___NetBSD/20210204_0.html
  29. Computer___Python/20220816_1.html
  30. Travel___Taiwan/20220809_2.html


HTML file generated by Kinoshita Daisuke.