사용할 때 apt
다른 위치를 사용하도록 지시할 수 있나요 /var/cache/apt
? 다음 줄을 추가해 보았습니다 /etc/apt/apt.conf
.
% cat /etc/apt/apt.conf
Dir::Cache /home/apt
다시 실행했지만 apt
여전히 씁니다./var/cache/apt
답변1
/etc/apt/apt.conf.d/
또는 내의 모든 파일 에 다음 줄 중 하나를 추가할 수 있습니다 /etc/apt/apt.conf
.
Dir::Cache{Archives /home/apt/}
Dir::Cache::Archives /home/apt;
이렇게 하면 부분적으로/완전히 다운로드된 모든 .deb
파일이 /home/apt
.
Dir{Cache /home/apt}
Dir::Cache /home/apt;
이렇게 하면 부분적으로/완전히 다운로드된 모든 파일 뿐만 아니라 내부에도 pkgcache.bin
저장 됩니다.srcpkgcache.bin
/home/apt
.deb
/home/apt/archives
_apt
모든 것이 제대로 작동하려면 해당 디렉터리에 대해 사용자에게 충분한 권한을 추가해야 합니다 .
apt
예를 들어 with 의 전체 구성을 볼 수 있습니다 apt-config dump
.
> apt-config dump | grep Dir::Cache
Dir::Cache "/home/apt";
Dir::Cache::archives "archives/";
Dir::Cache::srcpkgcache "srcpkgcache.bin";
Dir::Cache::pkgcache "pkgcache.bin";