apt-get clean에서 "연결 해제 문제" 오류

apt-get clean에서 "연결 해제 문제" 오류

다음을 사용하려고 할 때마다 문제가 있습니다 sudo apt-get clean.

:~$ sudo apt-get clean
W: Problem unlinking the file apt-fast - Clean (21: Is a directory)
:~$ apt-fast clean
W: Problem unlinking the file apt-fast - Clean (21: Is a directory)

적절하게 빠르게 제거하고 실행 중 sudo apt-get clean 이 문제를 해결하는 유일한 방법입니다.
하지만 저는 apt-fast많이 사용하기 때문에~ 아니다그것을 사용하는 것은 좋은 해결책이 아닙니다.
다시 설치 apt-fast 하고 실행하면 sudo apt-get clean문제가 다시 발생합니다.

또한 설치하는 동안(이것이 유용할지 모르겠습니다) 다음 문제를 발견했습니다.

Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE _MAXNUM}/ at /tmp/apt-fast.config.NDgAmi line 205.
Selecting previously unselected package apt-fast.
(Reading database ... 498722 files and directories currently installed.)
Preparing to unpack .../apt-fast_1.8.3~137+git7b72bb7-0ubuntu1~ppa3~wily1_all.deb ...
Unpacking apt-fast (1.8.3~137+git7b72bb7-0ubuntu1~ppa3~wily1) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up apt-fast (1.8.3~137+git7b72bb7-0ubuntu1~ppa3~wily1) ...
Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE _MAXNUM}/ at /var/lib/dpkg/info/apt-fast.config line 205.

또한 Ubuntu MATE 16.04를 사용하고 있습니다.

감사해요.

답변1

/var/cache/apt/archives/apt-fast잠재적인 해결책은 실행하려고 할 때마다 디렉토리를 제거하는 것입니다 apt-get clean.

$ rm -r /var/cache/apt/archives/apt-fast

이는 또한 에 대한 캐시를 지우고 있음을 의미합니다 apt-fast.

답변2

이 오류가 표시되는 것을 방지하려면 "/var/cache/apt/archives/apt-fast/" 디렉토리를 제거하고 /etc/apt-fast.conf의 DLDIR 변수를 다른 경로(예: /var/cache/my_apt)로 변경할 수 있습니다. -빠른/아카이브/apt-fast).

관련 정보