Erro “problema ao desvincular” no apt-get clean

2

Há um problema sempre que tento usar 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)

Eliminando o apt-fast e executando sudo apt-get clean é a única maneira que encontrei que corrige esse problema.
Mas eu uso muito apt-fast , então não usando isso não é uma boa solução.
Reinstalar apt-fast e executar sudo apt-get clean faz com que o problema se solte novamente.

Além disso, durante a instalação (não sei se isso será útil), encontrei este problema:

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.

Também estou usando o Ubuntu MATE 16.04.

Obrigado.

    
por The Holy See 30.04.2016 / 05:59

2 respostas

4

Uma possível solução é remover o diretório /var/cache/apt/archives/apt-fast toda vez que você quiser executar apt-get clean .

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

Isso também significa que você está limpando o cache para apt-fast .

    
por nikhilweee 02.05.2016 / 08:12
2

Para evitar a exibição deste erro, você pode remover o diretório "/ var / cache / apt / archives / apt-fast /" e alterar a variável DLDIR em /etc/apt-fast.conf para outro caminho (isto é, / var / cache / my_apt-fast / archives / apt-fast).

    
por rcspam 06.05.2016 / 18:22