1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

TeraStationのデータをQNAPへ移行する

Posted at

TeraStationのデータをQNAPへ移行することになった際のメモ

TeraStation(TS3400)のデータをQNAPへ移行するの抜粋版です

  • TeraStationの共有フォルダの公開プロトコルにバックアップを追加する
  • QNAPのrsyncコマンドでTeraStationの共有フォルダ(バックアップ元)のパスを確認する
# rsync -avn rsync://admin@[TeraStationのIPアドレス]:873/ .  
array1_win
  • QNAPの共有フォルダ(バックアップ先)のパスを確認する
# ls /share
win@
  • @マーク付きのパスを調べる
# readlink  /share/win
CACHEDEV1_DATA/win
  • バックアップ元(TeraStationの共有フォルダ)とバックアップ先(QNAPの共有フォルダ)が確定したのでrsyncコマンドを実行する
# rsync -avr --dry-run rsync://admin@[TeraStationのIPアドレス]:873/array1_win/ /share/CACHEDEV1_DATA/win

本番のときは--dry-runオプションを外して実行する

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?