大容量ファイルへのシンボリックリンク

大容量ファイルへのシンボリックリンク

httpを介してcentosサーバーからダウンロードしたい大容量(1TB)ファイルがあります。 httpファイルディレクトリのファイルを指すシンボリックリンクを作成する必要がありますか?このリンクは有効ですか?ファイルが大きすぎて指定されたサーバーのハードドライブにコピーできません。そうでない場合、代替は何ですか?

答え1

お持ちの場合は動作しますオプション FollowSymLinksDirectoryORを有効にしますLocation(またはORが.htaccess有効な場合はファイル内)。DirectoryLocation

わからない場合は、他の小さなシンボリックリンクファイルをテストして、ファイル全体を試す前に有効になっていることを確認してください。

答え2

mount --bindを参照してください。インストールマニュアルページから:

The bind mounts.
          Since Linux 2.4.0 it is possible to remount  part  of  the  file
          hierarchy somewhere else. The call is
                 mount --bind olddir newdir
          or shortoption
                 mount -B olddir newdir
          or fstab entry is:
                 /olddir /newdir none bind

          After  this  call the same contents is accessible in two places.
          One can also remount a single file (on a single file).

          This call attaches only (part of) a single filesystem, not  pos‐
          sible  submounts.  The entire file hierarchy including submounts
          is attached a second place using
                 mount --rbind olddir newdir
          or shortoption
                 mount -R olddir newdir

関連情報