Error "problem unlinking" in apt-get clean

15,084

Solution 1

A potential solution is to remove the directory /var/cache/apt/archives/apt-fast every time you want to run apt-get clean.

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

This also means you are clearing the cache for apt-fast.

Solution 2

To prevent display this error, you can remove "/var/cache/apt/archives/apt-fast/" directory and change the DLDIR variable in /etc/apt-fast.conf to another path (i.e. /var/cache/my_apt-fast/archives/apt-fast).

Share:
15,084

Related videos on Youtube

The Holy See
Author by

The Holy See

Updated on September 18, 2022

Comments

  • The Holy See
    The Holy See over 1 year

    There's a problem whenever I try to use 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)
    

    Purging apt-fast and running sudo apt-get clean is the only way I found that fixes this problem.
    But I use apt-fast a lot, so not using it is not a good solution.
    Reinstalling apt-fast and running sudo apt-get clean makes the problem pop out again.

    Additionally, while installing (I don't know whether this will be useful), I found this problem:

    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.
    

    Also I am using Ubuntu MATE 16.04.

    Thanks.

  • serup
    serup about 7 years
    I also afterwards made an apt-get upgrade as root, and this solved the unauthenticated issues with apt-fast, and made it again possible for me to update my system