Solved pkgbase: cannot remove 32bits packages (Cannot solve problem using SAT solver)

Hi,
I just ordered a VPS (OVH) with version 15.0. The system is installed via pkgbase, but there are a lot of things I don't need installed by default.
To save some space, I'm trying, among other things, to remove all 32-bit libraries:

sh:
pkg info | awk '/lib32/ {print $1}' | sed 's/-15-0//' | while read p
do
pkg remove -y $p
done
but it fails with the following messages:

sh:
Cannot solve problem using SAT solver, trying another plan
Cannot solve problem using SAT solver, trying another plan
Cannot solve problem using SAT solver, trying another plan
Cannot solve problem using SAT solver, trying another plan
I have the same problem after upgrade to 15.1.
Any help will be appreciated
 
Thanks, it almost works:

sh:
root@vps:~ # pkg remove -y FreeBSD-set-lib32
Checking integrity... done (0 conflicting)
The following package(s) are locked or vital and may not be removed:

    FreeBSD-set-lib32 (vital)

root@vps:~ # pkg set -v 0 FreeBSD-set-lib32
Mark FreeBSD-set-lib32-15.1 as not vital? [y/N]: y
root@vps:~ # pkg remove -y FreeBSD-set-lib32
Checking integrity... done (0 conflicting)
Deinstallation has been requested for the following 1 packages (of 0 packages in the universe):

Installed packages to be REMOVED:
    FreeBSD-set-lib32: 15.1

Number of packages to be removed: 1
[1/1] Deinstalling FreeBSD-set-lib32-15.1...
[CODE/]
 
Back
Top