Changes between Version 24 and Version 25 of TipAndDoc/storage/filesystem


Ignore:
Timestamp:
Jul 18, 2011 12:00:43 PM (13 years ago)
Author:
mitty
Comment:

from misc?

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/storage/filesystem

    v24 v25  
    66 * [http://journal.mycom.co.jp/articles/2011/01/28/how-to-use-zfs-on-linux/index.html 【レビュー】UbuntuでネイティブにZFSを使う方法 | エンタープライズ | マイコミジャーナル] 
    77  * http://howtoforge.com/native-zfs-on-ubuntu 
     8 
     9 = sparse file = 
     10 * [http://centos-server.blogspot.com/2008/04/sparse.html CentOS&Xenサーバ導入メモ: Sparseファイルの取り扱い方法] 
     11 > * コピー 
     12 >  * # cp --sparse=auto [コピー元] [コピー先] 
     13 >  * # rsync -avS [コピー元] [コピー先] 
     14 > * GNU TARで圧縮/解凍 
     15 >  * 圧縮 # tar zcSvf [書庫ファイル] [格納するファイル] 
     16 >  * 解凍 # tar zxSvf [書庫ファイル] 
     17 > * 通常ファイルをSparseファイルにする 
     18 >  * # cp --sparse=always [コピー元] [コピー先] 
     19 > * Sparseファイルを通常ファイルに戻す 
     20 >  * # cp --sparse=never [コピー元] [コピー先] 
     21 * wikipedia:Sparse_file 
     22 > Pipeing 
     23 > {{{ 
     24 > cat somefile | cp --sparse=always /proc/self/fd/0 new-sparse-file 
     25 > }}} 
    826 
    927 = fdisk =