http를 통해 centos 서버에서 다운로드하려는 대용량(1TB) 파일이 있습니다. http 파일 디렉터리에 대한 파일을 가리키는 심볼릭 링크를 만들어야 합니까? 이 링크가 유효한가요? 파일이 너무 커서 지정된 서버 하드 드라이브에 복사할 수 없습니다. 그렇지 않다면 대안은 무엇입니까?
답변1
당신이 가지고 있으면 작동합니다옵션 FollowSymLinks
Directory
OR을 활성화합니다 Location
(또는 OR이 .htaccess
활성화된 경우 파일에서 ).Directory
Location
확실하지 않은 경우 다른 작은 심볼릭 링크 파일을 테스트하여 전체 파일을 시도하기 전에 활성화되었는지 확인하세요.
답변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