저장소에서 디렉토리를 다운로드하는 빠른 방법이 있습니까?

저장소에서 디렉토리를 다운로드하는 빠른 방법이 있습니까?

나는 실제로윈도우기계, 검색해 보세요센트OS 5.4그들의 금고에서. 압축해제 소프트웨어가 없어서 ISO를 사용하고 싶지 않습니다. 모든 콘텐츠를 쉽게 얻을 수 있는 방법이 있는지 알고 싶습니다. 이것브라우저 내의 디렉토리.

답변1

당신은 그것을 사용할 수 있습니다 wget(창문용) (또는 다음을 통해주어진) 재귀적으로 웹사이트를 다운로드합니다.

$ wget -c \
     --recursive \
     --no-clobber \
     --page-requisites \
     --html-extension \
     --convert-links \
     --restrict-file-names=windows \
     --domains vault.centos.org \
     --no-parent \
     http://vault.centos.org/5.4/os/i386/

옵션은 다음과 같습니다:

--recursive: download the entire Web site.
--domains vault.centos.org: don't follow links outside vault.centos.org.
--no-parent: don't follow links outside the directory tutorials/html/.
--page-requisites: get all the elements that compose the page (images, CSS and so on).
--html-extension: save files with the .html extension.
--convert-links: convert links so that they work locally, off-line.
--restrict-file-names=windows: modify filenames so that they will work in Windows as well.
--no-clobber: don't overwrite any existing files (used in case the download is interrupted and resumed).

관련 정보