{"id":13838100,"url":"https://github.com/jlumbroso/free-disk-space","last_synced_at":"2025-04-04T18:06:16.926Z","repository":{"id":37739658,"uuid":"506133999","full_name":"jlumbroso/free-disk-space","owner":"jlumbroso","description":":octocat:⚙️🗑️ A GitHub Action to free disk space on an Ubuntu runner.","archived":false,"fork":false,"pushed_at":"2023-12-01T13:49:26.000Z","size":30,"stargazers_count":249,"open_issues_count":5,"forks_count":55,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-05-16T00:24:12.451Z","etag":null,"topics":["continuous-integration","github-actions"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jlumbroso.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-22T07:00:58.000Z","updated_at":"2024-06-29T03:41:33.010Z","dependencies_parsed_at":"2023-01-11T17:21:19.479Z","dependency_job_id":"b91d946a-bf41-4fa3-b3b8-3797df515229","html_url":"https://github.com/jlumbroso/free-disk-space","commit_stats":{"total_commits":13,"total_committers":2,"mean_commits":6.5,"dds":0.07692307692307687,"last_synced_commit":"76866dbe54312617f00798d1762df7f43def6e5c"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlumbroso%2Ffree-disk-space","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlumbroso%2Ffree-disk-space/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlumbroso%2Ffree-disk-space/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlumbroso%2Ffree-disk-space/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jlumbroso","download_url":"https://codeload.github.com/jlumbroso/free-disk-space/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247226213,"owners_count":20904465,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["continuous-integration","github-actions"],"created_at":"2024-08-04T15:01:37.294Z","updated_at":"2025-04-04T18:06:16.903Z","avatar_url":"https://github.com/jlumbroso.png","language":null,"funding_links":[],"categories":["Others"],"sub_categories":[],"readme":"# GitHub Actions to Free Disk Space on Ubuntu runners\n\nA customizable GitHub Actions to free disk space on Linux GitHub Actions runners.\n\nOn a typical Ubuntu runner, with all options turned on (or not turned off rather), this can clear up to 31 GB of disk space in about 3 minutes (the longest period is calling `apt` to uninstall packages). This is useful when you need a lot of disk space to run computations.\n\nPlease don't hesitate to [submit issues](https://github.com/jlumbroso/free-disk-space/issues) to report problems or suggest new features (or sets of files to help remove).\n\nAlso, please ⭐️ the repo if you like this GitHub Actions! Thanks! 😊\n\n## Example\n\n```yaml\nname: Free Disk Space (Ubuntu)\non: push\n\njobs:\n  free-disk-space:\n    runs-on: ubuntu-latest\n    steps:\n\n    - name: Free Disk Space (Ubuntu)\n      uses: jlumbroso/free-disk-space@main\n      with:\n        # this might remove tools that are actually needed,\n        # if set to \"true\" but frees about 6 GB\n        tool-cache: false\n        \n        # all of these default to true, but feel free to set to\n        # \"false\" if necessary for your workflow\n        android: true\n        dotnet: true\n        haskell: true\n        large-packages: true\n        docker-images: true\n        swap-storage: true\n```\n## Options\n\nMost of the options are self-explanatory.\n\nThe option `tool-cache` removes all the pre-cached tools (Node, Go, Python, Ruby, ...) that are loaded in a runner's environment, [installed in the path specified by the `AGENT_TOOLSDIRECTORY` environment variable](https://github.com/actions/virtual-environments/blob/5a2cb18a48bce5da183486b95f5494e4fd0c0640/images/linux/scripts/installers/configure-environment.sh#L25-L29) (the same environment variable is used across Windows/macOS/Linux runners, see an example of its use on [the `setup-python` GitHub Action](https://github.com/actions/setup-python)). This option was [suggested](https://github.com/actions/virtual-environments/issues/2875#issuecomment-1163392159) by [@miketimofeev](https://github.com/miketimofeev).\n\n## Acknowledgement\n\nThis GitHub Actions came around because I kept rewriting the same few lines of `rm -rf` code.\n\nHere are a few sources of inspiration:\n- https://github.community/t/bigger-github-hosted-runners-disk-space/17267/11\n- https://github.com/apache/flink/blob/master/tools/azure-pipelines/free_disk_space.sh\n- https://github.com/ShubhamTatvamasi/free-disk-space-action\n- https://github.com/actions/virtual-environments/issues/2875#issuecomment-1163392159\n- https://github.com/easimon/maximize-build-space/\n\n## Typical Output\n\nThe amount of space storage saved by each option on an `ubuntu-20.04.4` runner is summarized here:\n```\n=\u003e Android library: Saved 14GiB\n=\u003e .NET runtime: Saved 2.7GiB\n=\u003e Haskell runtime: Saved 0B\n=\u003e Large misc. packages: Saved 5.3GiB\n=\u003e Tool cache: Saved 5.9GiB\n=\u003e Swap storage: Saved 4.0GiB\n\nTotal: Saved 31GiB\n```\n\nThe log output of a typical example (with all options set to `true`) looks like this:\n```\n================================================================================\nBEFORE CLEAN-UP:\n\n$ dh -h /\n\nFilesystem      Size  Used Avail Use% Mounted on\n/dev/root        84G   53G   31G  64% /\n$ dh -a /\n\nFilesystem     1K-blocks     Used Available Use% Mounted on\n/dev/root       87218124 55405432  31796308  64% /\n$ dh -a\n\nFilesystem     1K-blocks     Used Available Use% Mounted on\n/dev/root       87218124 55405432  31796308  64% /\ndevtmpfs         3552992        0   3552992   0% /dev\nsysfs                  0        0         0    - /sys\nproc                   0        0         0    - /proc\nsecurityfs             0        0         0    - /sys/kernel/security\ntmpfs            3556564        4   3556560   1% /dev/shm\ndevpts                 0        0         0    - /dev/pts\ntmpfs             711316     1068    710248   1% /run\ntmpfs               5120        0      5120   0% /run/lock\ntmpfs            3556564        0   3556564   0% /sys/fs/cgroup\ncgroup2                0        0         0    - /sys/fs/cgroup/unified\ncgroup                 0        0         0    - /sys/fs/cgroup/systemd\npstore                 0        0         0    - /sys/fs/pstore\nnone                   0        0         0    - /sys/fs/bpf\ncgroup                 0        0         0    - /sys/fs/cgroup/cpuset\ncgroup                 0        0         0    - /sys/fs/cgroup/pids\ncgroup                 0        0         0    - /sys/fs/cgroup/devices\ncgroup                 0        0         0    - /sys/fs/cgroup/hugetlb\ncgroup                 0        0         0    - /sys/fs/cgroup/misc\ncgroup                 0        0         0    - /sys/fs/cgroup/net_cls,net_prio\ncgroup                 0        0         0    - /sys/fs/cgroup/blkio\ncgroup                 0        0         0    - /sys/fs/cgroup/cpu,cpuacct\ncgroup                 0        0         0    - /sys/fs/cgroup/perf_event\ncgroup                 0        0         0    - /sys/fs/cgroup/memory\ncgroup                 0        0         0    - /sys/fs/cgroup/rdma\ncgroup                 0        0         0    - /sys/fs/cgroup/freezer\nsystemd-1              -        -         -    - /proc/sys/fs/binfmt_misc\nhugetlbfs              0        0         0    - /dev/hugepages\nmqueue                 0        0         0    - /dev/mqueue\ndebugfs                0        0         0    - /sys/kernel/debug\ntracefs                0        0         0    - /sys/kernel/tracing\nfusectl                0        0         0    - /sys/fs/fuse/connections\nconfigfs               0        0         0    - /sys/kernel/config\n/dev/loop0         63488    63488         0 100% /snap/core20/1518\n/dev/loop1         69504    69504         0 100% /snap/lxd/22753\n/dev/loop2         48128    48128         0 100% /snap/snapd/16010\n/dev/sda15        106858     5321    101537   5% /boot/efi\nbinfmt_misc            0        0         0    - /proc/sys/fs/binfmt_misc\n/dev/sdb1       14382088  4235296   9396508  32% /mnt\ntmpfs             711316     1068    710248   1% /run/snapd/ns\nnsfs                   0        0         0    - /run/snapd/ns/lxd.mnt\n================================================================================\n\n\n********************************************************************************\n=\u003e Android library: Saved 14GiB\n********************************************************************************\n\n\n********************************************************************************\n=\u003e .NET runtime: Saved 2.7GiB\n********************************************************************************\n\n\n********************************************************************************\n=\u003e Haskell runtime: Saved 0B\n********************************************************************************\n\nReading package lists...\nBuilding dependency tree...\nReading state information...\nPackage 'dotnet-nightly' is not installed, so not removed\nPackage 'dotnet-hostfxr-2.1' is not installed, so not removed\nPackage 'dotnet-runtime-2.1' is not installed, so not removed\nPackage 'dotnet-runtime-deps-2.1' is not installed, so not removed\nPackage 'dotnet-sdk-2.1' is not installed, so not removed\nThe following packages will be REMOVED:\n  aspnetcore-runtime-3.1 aspnetcore-runtime-5.0 aspnetcore-runtime-6.0\n  aspnetcore-targeting-pack-3.1 aspnetcore-targeting-pack-5.0\n  aspnetcore-targeting-pack-6.0 dotnet-apphost-pack-3.1\n  dotnet-apphost-pack-5.0 dotnet-apphost-pack-6.0 dotnet-host\n  dotnet-hostfxr-3.1 dotnet-hostfxr-5.0 dotnet-hostfxr-6.0 dotnet-runtime-3.1\n  dotnet-runtime-5.0 dotnet-runtime-6.0 dotnet-runtime-deps-3.1\n  dotnet-runtime-deps-5.0 dotnet-runtime-deps-6.0 dotnet-sdk-3.1\n  dotnet-sdk-5.0 dotnet-sdk-6.0 dotnet-targeting-pack-3.1\n  dotnet-targeting-pack-5.0 dotnet-targeting-pack-6.0\n0 upgraded, 0 newly installed, 25 to remove and 14 not upgraded.\nAfter this operation, 1183 MB disk space will be freed.\n(Reading database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading database ... 235534 files and directories currently installed.)\nRemoving dotnet-sdk-3.1 (3.1.420-1) ...\nRemoving aspnetcore-runtime-3.1 (3.1.26-1) ...\nRemoving dotnet-sdk-5.0 (5.0.408-1) ...\nRemoving aspnetcore-runtime-5.0 (5.0.17-1) ...\nRemoving dotnet-sdk-6.0 (6.0.301-1) ...\nRemoving aspnetcore-runtime-6.0 (6.0.6-1) ...\nRemoving aspnetcore-targeting-pack-3.1 (3.1.10-1) ...\nRemoving aspnetcore-targeting-pack-5.0 (5.0.0-1) ...\nRemoving aspnetcore-targeting-pack-6.0 (6.0.6-1) ...\nRemoving dotnet-apphost-pack-3.1 (3.1.26-1) ...\nRemoving dotnet-apphost-pack-5.0 (5.0.17-1) ...\nRemoving dotnet-apphost-pack-6.0 (6.0.6-1) ...\nRemoving dotnet-runtime-6.0 (6.0.6-1) ...\nRemoving dotnet-hostfxr-6.0 (6.0.6-1) ...\nRemoving dotnet-runtime-5.0 (5.0.17-1) ...\nRemoving dotnet-hostfxr-5.0 (5.0.17-1) ...\nRemoving dotnet-runtime-3.1 (3.1.26-1) ...\nRemoving dotnet-hostfxr-3.1 (3.1.26-1) ...\nRemoving dotnet-runtime-deps-3.1 (3.1.26-1) ...\nRemoving dotnet-runtime-deps-5.0 (5.0.17-1) ...\nRemoving dotnet-runtime-deps-6.0 (6.0.6-1) ...\nRemoving dotnet-targeting-pack-3.1 (3.1.0-1) ...\nRemoving dotnet-targeting-pack-5.0 (5.0.0-1) ...\nRemoving dotnet-targeting-pack-6.0 (6.0.6-1) ...\nRemoving dotnet-host (6.0.6-1) ...\nProcessing triggers for man-db (2.9.1-1) ...\nReading package lists...\nBuilding dependency tree...\nReading state information...\nPackage 'llvm-13' is not installed, so not removed\nPackage 'llvm-10-doc' is not installed, so not removed\nPackage 'llvm-10-examples' is not installed, so not removed\nPackage 'llvm-6.0' is not installed, so not removed\nPackage 'llvm-6.0-dev' is not installed, so not removed\nPackage 'llvm-6.0-examples' is not installed, so not removed\nPackage 'llvm-6.0-runtime' is not installed, so not removed\nPackage 'llvm-6.0-tools' is not installed, so not removed\nPackage 'llvm-7' is not installed, so not removed\nPackage 'llvm-7-dev' is not installed, so not removed\nPackage 'llvm-7-examples' is not installed, so not removed\nPackage 'llvm-7-runtime' is not installed, so not removed\nPackage 'llvm-7-tools' is not installed, so not removed\nPackage 'llvm-8' is not installed, so not removed\nPackage 'llvm-8-dev' is not installed, so not removed\nPackage 'llvm-8-doc' is not installed, so not removed\nPackage 'llvm-8-examples' is not installed, so not removed\nPackage 'llvm-8-runtime' is not installed, so not removed\nPackage 'llvm-8-tools' is not installed, so not removed\nPackage 'llvm-9' is not installed, so not removed\nPackage 'llvm-9-dev' is not installed, so not removed\nPackage 'llvm-9-doc' is not installed, so not removed\nPackage 'llvm-9-examples' is not installed, so not removed\nPackage 'llvm-9-runtime' is not installed, so not removed\nPackage 'llvm-9-tools' is not installed, so not removed\nPackage 'llvm-dev' is not installed, so not removed\nPackage 'llvm-runtime' is not installed, so not removed\nPackage 'llvm-spirv' is not installed, so not removed\nPackage 'llvm-11-doc' is not installed, so not removed\nPackage 'llvm-11-examples' is not installed, so not removed\nPackage 'llvm-12-doc' is not installed, so not removed\nPackage 'llvm-12-examples' is not installed, so not removed\nThe following packages will be REMOVED:\n  clang-12 clang-tidy-12 clang-tools-12 lldb-11 llvm-10 llvm-10-dev\n  llvm-10-runtime llvm-10-tools llvm-11 llvm-11-dev llvm-11-runtime\n  llvm-11-tools llvm-12 llvm-12-dev llvm-12-linker-tools llvm-12-runtime\n  llvm-12-tools\n0 upgraded, 0 newly installed, 17 to remove and 14 not upgraded.\nAfter this operation, 804 MB disk space will be freed.\n(Reading database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading database ... 225791 files and directories currently installed.)\nRemoving clang-tidy-12 (1:12.0.0-3ubuntu1~20.04.5) ...\nRemoving clang-tools-12 (1:12.0.0-3ubuntu1~20.04.5) ...\nRemoving clang-12 (1:12.0.0-3ubuntu1~20.04.5) ...\nRemoving lldb-11 (1:11.0.0-2~ubuntu20.04.1) ...\nRemoving llvm-10-dev (1:10.0.0-4ubuntu1) ...\nRemoving llvm-10 (1:10.0.0-4ubuntu1) ...\nRemoving llvm-10-runtime (1:10.0.0-4ubuntu1) ...\nRemoving llvm-10-tools (1:10.0.0-4ubuntu1) ...\nRemoving llvm-11-dev (1:11.0.0-2~ubuntu20.04.1) ...\nRemoving llvm-11 (1:11.0.0-2~ubuntu20.04.1) ...\nRemoving llvm-11-runtime (1:11.0.0-2~ubuntu20.04.1) ...\nRemoving llvm-11-tools (1:11.0.0-2~ubuntu20.04.1) ...\nRemoving llvm-12-dev (1:12.0.0-3ubuntu1~20.04.5) ...\nRemoving llvm-12 (1:12.0.0-3ubuntu1~20.04.5) ...\nRemoving llvm-12-linker-tools (1:12.0.0-3ubuntu1~20.04.5) ...\nRemoving llvm-12-runtime (1:12.0.0-3ubuntu1~20.04.5) ...\nRemoving llvm-12-tools (1:12.0.0-3ubuntu1~20.04.5) ...\nProcessing triggers for man-db (2.9.1-1) ...\nProcessing triggers for libc-bin (2.31-0ubuntu9.9) ...\nReading package lists...\nBuilding dependency tree...\nReading state information...\nPackage 'phpgacl' is not installed, so not removed\nPackage 'php-crypt-gpg' is not installed, so not removed\nPackage 'libapache2-mod-php7.2' is not installed, so not removed\nPackage 'libapache2-mod-php7.3' is not installed, so not removed\nPackage 'php-smbclient' is not installed, so not removed\nPackage 'php5.6-common' is not installed, so not removed\nPackage 'php5.6-json' is not installed, so not removed\nPackage 'php7.0-common' is not installed, so not removed\nPackage 'php-pear-frontend-gtk' is not installed, so not removed\nPackage 'php-pear-frontend-web' is not installed, so not removed\nPackage 'php7.0-curl' is not installed, so not removed\nPackage 'php7.2-sodium' is not installed, so not removed\nPackage 'php5-cli' is not installed, so not removed\nPackage 'php5-curl' is not installed, so not removed\nPackage 'php-mcrypt' is not installed, so not removed\nPackage 'php5-mysql' is not installed, so not removed\nPackage 'php5-pgsql' is not installed, so not removed\nPackage 'php5-sqlite' is not installed, so not removed\nPackage 'php5' is not installed, so not removed\nPackage 'php5-ldap' is not installed, so not removed\nPackage 'php-apc' is not installed, so not removed\nPackage 'php-suhosin' is not installed, so not removed\nPackage 'php5-gd' is not installed, so not removed\nPackage 'php5-imagick' is not installed, so not removed\nPackage 'php5-json' is not installed, so not removed\nPackage 'libapache2-mod-php5' is not installed, so not removed\nPackage 'php5-fpm' is not installed, so not removed\nPackage 'php5-mcrypt' is not installed, so not removed\nPackage 'libapache2-mod-suphp' is not installed, so not removed\nPackage 'libgv-php5' is not installed, so not removed\nPackage 'libow-php5' is not installed, so not removed\nPackage 'phpphylotree' is not installed, so not removed\nPackage 'php-xcache' is not installed, so not removed\nPackage 'php-console-color2' is not installed, so not removed\nPackage 'php-alcaeus-mongo-php-adapter' is not installed, so not removed\nPackage 'php-doctrine-phpcr-odm' is not installed, so not removed\nPackage 'php-doctrine-mongodb-odm' is not installed, so not removed\nPackage 'php-ml-json-ld' is not installed, so not removed\nPackage 'php-com-dotnet' is not installed, so not removed\nPackage 'php-rar' is not installed, so not removed\nPackage 'php-cordoval-hamcrest-php' is not installed, so not removed\nPackage 'php-davedevelopment-hamcrest-php' is not installed, so not removed\nPackage 'php-kodova-hamcrest-php' is not installed, so not removed\nPackage 'php-fzaninotto-faker' is not installed, so not removed\nPackage 'php-illuminate-console' is not installed, so not removed\nPackage 'php-illuminate-events' is not installed, so not removed\nPackage 'php-illuminate-filesystem' is not installed, so not removed\nPackage 'php-illuminate-pagination' is not installed, so not removed\nPackage 'php-tightenco-collect' is not installed, so not removed\nPackage 'php-moontoast-math' is not installed, so not removed\nPackage 'php-ramsey-uuid' is not installed, so not removed\nPackage 'php-vlucas-phpdotenv' is not installed, so not removed\nPackage 'php-scrutinizer-ocular' is not installed, so not removed\nPackage 'php-sqlite' is not installed, so not removed\nPackage 'php-mdb2-driver-fbsql' is not installed, so not removed\nPackage 'php-mdb2-driver-ibase' is not installed, so not removed\nPackage 'php-mdb2-driver-mssql' is not installed, so not removed\nPackage 'php-mdb2-driver-mysqli' is not installed, so not removed\nPackage 'php-mdb2-driver-oci8' is not installed, so not removed\nPackage 'php-mdb2-driver-odbc' is not installed, so not removed\nPackage 'php-mdb2-driver-querysim' is not installed, so not removed\nPackage 'php-mdb2-driver-sqlite' is not installed, so not removed\nPackage 'php-mdb2-driver-sqlsrv' is not installed, so not removed\nPackage 'php-barnabywalters-mf-cleaner' is not installed, so not removed\nPackage 'php-graylog2-gelf-php' is not installed, so not removed\nPackage 'php-sentry' is not installed, so not removed\nPackage 'php-doctrine-couchdb' is not installed, so not removed\nPackage 'php-ruflin-elastica' is not installed, so not removed\nPackage 'php-mongo' is not installed, so not removed\nPackage 'php-aws-sdk' is not installed, so not removed\nPackage 'php-rollbar' is not installed, so not removed\nPackage 'php-console' is not installed, so not removed\nPackage 'php-wfio' is not installed, so not removed\nPackage 'php-dbase' is not installed, so not removed\nPackage 'php-libsodium' is not installed, so not removed\nPackage 'php-ocramius-generated-hydrator' is not installed, so not removed\nPackage 'php-zend-xmlrpc' is not installed, so not removed\nPackage 'php-zend-json' is not installed, so not removed\nPackage 'php-zend-soap' is not installed, so not removed\nPackage 'php-reactivex-rxphp' is not installed, so not removed\nPackage 'php-event' is not installed, so not removed\nPackage 'php-egulias-email-validator' is not installed, so not removed\nPackage 'php-zendframework-zend-validator' is not installed, so not removed\nPackage 'php-friendsofphp-php-cs-fixer' is not installed, so not removed\nPackage 'php-crypt-blowfish' is not installed, so not removed\nPackage 'php-compat' is not installed, so not removed\nPackage 'php-cache' is not installed, so not removed\nPackage 'php-xml-serializer' is not installed, so not removed\nPackage 'libssh2-php' is not installed, so not removed\nPackage 'php-enqueue-messenger-adapter' is not installed, so not removed\nPackage 'php-symfony-class-loader' is not installed, so not removed\nPackage 'php-numbers-words' is not installed, so not removed\nPackage 'php7.0-thrift' is not installed, so not removed\nPackage 'php7.2-thrift' is not installed, so not removed\nPackage 'php-net-idna' is not installed, so not removed\nPackage 'php-vimeo-psalm' is not installed, so not removed\nPackage 'php-container-interop' is not installed, so not removed\nPackage 'php-recode' is not installed, so not removed\nPackage 'php-gd2' is not installed, so not removed\nPackage 'php-pragmarx-google2fa' is not installed, so not removed\nPackage 'php-bacon-qr-code' is not installed, so not removed\nPackage 'php-samyoul-u2f-php-server' is not installed, so not removed\nPackage 'php5-xsl' is not installed, so not removed\nPackage 'php-uopz' is not installed, so not removed\nPackage 'php-mkopinsky-zxcvbn-php' is not installed, so not removed\nPackage 'php5-mysqlnd' is not installed, so not removed\nPackage 'libapache2-mod-php8.0' is not installed, so not removed\nPackage 'libapache2-mod-php8.1' is not installed, so not removed\nPackage 'libapache2-mod-php' is not installed, so not removed\nPackage 'php' is not installed, so not removed\nPackage 'php-all-dev' is not installed, so not removed\nPackage 'php-cgi' is not installed, so not removed\nPackage 'php-cli' is not installed, so not removed\nPackage 'php-curl' is not installed, so not removed\nPackage 'php-dev' is not installed, so not removed\nPackage 'php-gd' is not installed, so not removed\nPackage 'php-gmp' is not installed, so not removed\nPackage 'php-ldap' is not installed, so not removed\nPackage 'php-mysql' is not installed, so not removed\nPackage 'php-odbc' is not installed, so not removed\nPackage 'php-pgsql' is not installed, so not removed\nPackage 'php-pspell' is not installed, so not removed\nPackage 'php-snmp' is not installed, so not removed\nPackage 'php-sqlite3' is not installed, so not removed\nPackage 'php-tidy' is not installed, so not removed\nPackage 'php-xml' is not installed, so not removed\nPackage 'php-xmlrpc' is not installed, so not removed\nPackage 'pkg-php-tools' is not installed, so not removed\nPackage 'cakephp' is not installed, so not removed\nPackage 'cakephp-scripts' is not installed, so not removed\nPackage 'dh-php' is not installed, so not removed\nPackage 'elpa-php-mode' is not installed, so not removed\nPackage 'golang-github-phpdave11-gofpdi-dev' is not installed, so not removed\nPackage 'gosa-plugin-phpgw' is not installed, so not removed\nPackage 'gosa-plugin-phpgw-schema' is not installed, so not removed\nPackage 'gosa-plugin-phpscheduleit' is not installed, so not removed\nPackage 'gosa-plugin-phpscheduleit-schema' is not installed, so not removed\nPackage 'kdevelop-php' is not installed, so not removed\nPackage 'kdevelop-php-l10n' is not installed, so not removed\nPackage 'libgv-php7' is not installed, so not removed\nPackage 'libhtml-wikiconverter-phpwiki-perl' is not installed, so not removed\nPackage 'libmarkdown-php' is not installed, so not removed\nPackage 'libnusoap-php' is not installed, so not removed\nPackage 'libow-php7' is not installed, so not removed\nPackage 'libownet-php' is not installed, so not removed\nPackage 'libphp-adodb' is not installed, so not removed\nPackage 'libphp-embed' is not installed, so not removed\nPackage 'libphp-jabber' is not installed, so not removed\nPackage 'libphp-jpgraph' is not installed, so not removed\nPackage 'libphp-jpgraph-examples' is not installed, so not removed\nPackage 'libphp-magpierss' is not installed, so not removed\nPackage 'libphp-phpmailer' is not installed, so not removed\nPackage 'libphp-predis' is not installed, so not removed\nPackage 'libphp-serialization-perl' is not installed, so not removed\nPackage 'libphp-simplepie' is not installed, so not removed\nPackage 'libphp-snoopy' is not installed, so not removed\nPackage 'libphp-swiftmailer' is not installed, so not removed\nPackage 'libsparkline-php' is not installed, so not removed\nPackage 'mlmmj-php-web' is not installed, so not removed\nPackage 'mlmmj-php-web-admin' is not installed, so not removed\nPackage 'php-amqp' is not installed, so not removed\nPackage 'php-amqplib' is not installed, so not removed\nPackage 'php-apcu' is not installed, so not removed\nPackage 'php-apcu-bc' is not installed, so not removed\nPackage 'php-ast' is not installed, so not removed\nPackage 'php-auth-sasl' is not installed, so not removed\nPackage 'php-bcmath' is not installed, so not removed\nPackage 'php-bz2' is not installed, so not removed\nPackage 'php-cache-integration-tests' is not installed, so not removed\nPackage 'php-cache-lite' is not installed, so not removed\nPackage 'php-cache-tag-interop' is not installed, so not removed\nPackage 'php-cas' is not installed, so not removed\nPackage 'php-cboden-ratchet' is not installed, so not removed\nPackage 'php-cocur-slugify' is not installed, so not removed\nPackage 'php-codecoverage' is not installed, so not removed\nPackage 'php-codesniffer' is not installed, so not removed\nPackage 'php-composer-ca-bundle' is not installed, so not removed\nPackage 'php-composer-semver' is not installed, so not removed\nPackage 'php-composer-spdx-licenses' is not installed, so not removed\nPackage 'php-composer-xdebug-handler' is not installed, so not removed\nPackage 'php-console-commandline' is not installed, so not removed\nPackage 'php-console-table' is not installed, so not removed\nPackage 'php-constant-time' is not installed, so not removed\nPackage 'php-date' is not installed, so not removed\nPackage 'php-db' is not installed, so not removed\nPackage 'php-db-dataobject' is not installed, so not removed\nPackage 'php-deepcopy' is not installed, so not removed\nPackage 'php-defuse-php-encryption' is not installed, so not removed\nPackage 'php-dflydev-fig-cookies' is not installed, so not removed\nPackage 'php-directory-scanner' is not installed, so not removed\nPackage 'php-doctrine-annotations' is not installed, so not removed\nPackage 'php-doctrine-bundle' is not installed, so not removed\nPackage 'php-doctrine-cache' is not installed, so not removed\nPackage 'php-doctrine-collections' is not installed, so not removed\nPackage 'php-doctrine-common' is not installed, so not removed\nPackage 'php-doctrine-data-fixtures' is not installed, so not removed\nPackage 'php-doctrine-dbal' is not installed, so not removed\nPackage 'php-doctrine-event-manager' is not installed, so not removed\nPackage 'php-doctrine-inflector' is not installed, so not removed\nPackage 'php-doctrine-instantiator' is not installed, so not removed\nPackage 'php-doctrine-lexer' is not installed, so not removed\nPackage 'php-doctrine-orm' is not installed, so not removed\nPackage 'php-doctrine-persistence' is not installed, so not removed\nPackage 'php-doctrine-reflection' is not installed, so not removed\nPackage 'php-dompdf' is not installed, so not removed\nPackage 'php-ds' is not installed, so not removed\nPackage 'php-easyrdf' is not installed, so not removed\nPackage 'php-email-validator' is not installed, so not removed\nPackage 'php-embed' is not installed, so not removed\nPackage 'php-enchant' is not installed, so not removed\nPackage 'php-evenement' is not installed, so not removed\nPackage 'php-excimer' is not installed, so not removed\nPackage 'php-fabiang-sasl' is not installed, so not removed\nPackage 'php-fdomdocument' is not installed, so not removed\nPackage 'php-fig-link-util' is not installed, so not removed\nPackage 'php-file-iterator' is not installed, so not removed\nPackage 'php-finder-facade' is not installed, so not removed\nPackage 'php-finder-facade-doc' is not installed, so not removed\nPackage 'php-font-lib' is not installed, so not removed\nPackage 'php-fpdf' is not installed, so not removed\nPackage 'php-fpm' is not installed, so not removed\nPackage 'php-fxsl' is not installed, so not removed\nPackage 'php-gearman' is not installed, so not removed\nPackage 'php-geoip' is not installed, so not removed\nPackage 'php-geos' is not installed, so not removed\nPackage 'php-geshi' is not installed, so not removed\nPackage 'php-getid3' is not installed, so not removed\nPackage 'php-gmagick' is not installed, so not removed\nPackage 'php-gnupg' is not installed, so not removed\nPackage 'php-google-recaptcha' is not installed, so not removed\nPackage 'php-guestfs' is not installed, so not removed\nPackage 'php-guzzlehttp-promises' is not installed, so not removed\nPackage 'php-guzzlehttp-psr7' is not installed, so not removed\nPackage 'php-hamcrest' is not installed, so not removed\nPackage 'php-htmlawed' is not installed, so not removed\nPackage 'php-htmlpurifier' is not installed, so not removed\nPackage 'php-http' is not installed, so not removed\nPackage 'php-http-httplug' is not installed, so not removed\nPackage 'php-http-message-factory' is not installed, so not removed\nPackage 'php-http-promise' is not installed, so not removed\nPackage 'php-http-psr7-integration-tests' is not installed, so not removed\nPackage 'php-http-request' is not installed, so not removed\nPackage 'php-http-request2' is not installed, so not removed\nPackage 'php-http-webdav-server' is not installed, so not removed\nPackage 'php-httpful' is not installed, so not removed\nPackage 'php-icinga' is not installed, so not removed\nPackage 'php-igbinary' is not installed, so not removed\nPackage 'php-illuminate-container' is not installed, so not removed\nPackage 'php-illuminate-contracts' is not installed, so not removed\nPackage 'php-illuminate-database' is not installed, so not removed\nPackage 'php-illuminate-support' is not installed, so not removed\nPackage 'php-image-text' is not installed, so not removed\nPackage 'php-imagick' is not installed, so not removed\nPackage 'php-imap' is not installed, so not removed\nPackage 'php-interbase' is not installed, so not removed\nPackage 'php-intl' is not installed, so not removed\nPackage 'php-invoker' is not installed, so not removed\nPackage 'php-json' is not installed, so not removed\nPackage 'php-json-schema' is not installed, so not removed\nPackage 'php-klogger' is not installed, so not removed\nPackage 'php-league-commonmark' is not installed, so not removed\nPackage 'php-league-html-to-markdown' is not installed, so not removed\nPackage 'php-letodms-core' is not installed, so not removed\nPackage 'php-libvirt-php' is not installed, so not removed\nPackage 'php-log' is not installed, so not removed\nPackage 'php-lorenzo-pinky' is not installed, so not removed\nPackage 'php-lua' is not installed, so not removed\nPackage 'php-luasandbox' is not installed, so not removed\nPackage 'php-mail' is not installed, so not removed\nPackage 'php-mail-mime' is not installed, so not removed\nPackage 'php-mailparse' is not installed, so not removed\nPackage 'php-mapi' is not installed, so not removed\nPackage 'php-mapscript' is not installed, so not removed\nPackage 'php-mapscript-ng' is not installed, so not removed\nPackage 'php-markdown' is not installed, so not removed\nPackage 'php-masterminds-html5' is not installed, so not removed\nPackage 'php-mbstring' is not installed, so not removed\nPackage 'php-mdb2' is not installed, so not removed\nPackage 'php-mdb2-driver-mysql' is not installed, so not removed\nPackage 'php-mdb2-driver-pgsql' is not installed, so not removed\nPackage 'php-memcache' is not installed, so not removed\nPackage 'php-memcached' is not installed, so not removed\nPackage 'php-mf2' is not installed, so not removed\nPackage 'php-mikey179-vfsstream' is not installed, so not removed\nPackage 'php-mime-type' is not installed, so not removed\nPackage 'php-mockery' is not installed, so not removed\nPackage 'php-mockery-doc' is not installed, so not removed\nPackage 'php-mongodb' is not installed, so not removed\nPackage 'php-monolog' is not installed, so not removed\nPackage 'php-msgpack' is not installed, so not removed\nPackage 'php-nesbot-carbon' is not installed, so not removed\nPackage 'php-net-dime' is not installed, so not removed\nPackage 'php-net-dns2' is not installed, so not removed\nPackage 'php-net-ftp' is not installed, so not removed\nPackage 'php-net-idna2' is not installed, so not removed\nPackage 'php-net-imap' is not installed, so not removed\nPackage 'php-net-ipv6' is not installed, so not removed\nPackage 'php-net-ldap2' is not installed, so not removed\nPackage 'php-net-ldap3' is not installed, so not removed\nPackage 'php-net-nntp' is not installed, so not removed\nPackage 'php-net-publicsuffix' is not installed, so not removed\nPackage 'php-net-sieve' is not installed, so not removed\nPackage 'php-net-smtp' is not installed, so not removed\nPackage 'php-net-socket' is not installed, so not removed\nPackage 'php-net-url' is not installed, so not removed\nPackage 'php-net-url2' is not installed, so not removed\nPackage 'php-net-whois' is not installed, so not removed\nPackage 'php-netscape-bookmark-parser' is not installed, so not removed\nPackage 'php-nikic-fast-route' is not installed, so not removed\nPackage 'php-nrk-predis' is not installed, so not removed\nPackage 'php-nyholm-psr7' is not installed, so not removed\nPackage 'php-oauth' is not installed, so not removed\nPackage 'php-parsedown' is not installed, so not removed\nPackage 'php-parser' is not installed, so not removed\nPackage 'php-patchwork-utf8' is not installed, so not removed\nPackage 'php-pclzip' is not installed, so not removed\nPackage 'php-pcov' is not installed, so not removed\nPackage 'php-pecl-http' is not installed, so not removed\nPackage 'php-pecl-http-dev' is not installed, so not removed\nPackage 'php-phar-io-manifest' is not installed, so not removed\nPackage 'php-phar-io-version' is not installed, so not removed\nPackage 'php-phpdbg' is not installed, so not removed\nPackage 'php-phpdocumentor-reflection-common' is not installed, so not removed\nPackage 'php-phpdocumentor-reflection-docblock' is not installed, so not removed\nPackage 'php-phpdocumentor-type-resolver' is not installed, so not removed\nPackage 'php-phpmyadmin-motranslator' is not installed, so not removed\nPackage 'php-phpmyadmin-shapefile' is not installed, so not removed\nPackage 'php-phpmyadmin-sql-parser' is not installed, so not removed\nPackage 'php-phpseclib' is not installed, so not removed\nPackage 'php-phpspec-prophecy' is not installed, so not removed\nPackage 'php-pimple' is not installed, so not removed\nPackage 'php-pinba' is not installed, so not removed\nPackage 'php-propro' is not installed, so not removed\nPackage 'php-propro-dev' is not installed, so not removed\nPackage 'php-proxy-manager' is not installed, so not removed\nPackage 'php-ps' is not installed, so not removed\nPackage 'php-psr' is not installed, so not removed\nPackage 'php-psr-cache' is not installed, so not removed\nPackage 'php-psr-container' is not installed, so not removed\nPackage 'php-psr-event-dispatcher' is not installed, so not removed\nPackage 'php-psr-http-client' is not installed, so not removed\nPackage 'php-psr-http-factory' is not installed, so not removed\nPackage 'php-psr-http-message' is not installed, so not removed\nPackage 'php-psr-link' is not installed, so not removed\nPackage 'php-psr-log' is not installed, so not removed\nPackage 'php-psr-simple-cache' is not installed, so not removed\nPackage 'php-pubsubhubbub-publisher' is not installed, so not removed\nPackage 'php-radius' is not installed, so not removed\nPackage 'php-raintpl' is not installed, so not removed\nPackage 'php-random-compat' is not installed, so not removed\nPackage 'php-raphf' is not installed, so not removed\nPackage 'php-raphf-dev' is not installed, so not removed\nPackage 'php-ratchet-pawl' is not installed, so not removed\nPackage 'php-ratchet-rfc6455' is not installed, so not removed\nPackage 'php-react-cache' is not installed, so not removed\nPackage 'php-react-child-process' is not installed, so not removed\nPackage 'php-react-dns' is not installed, so not removed\nPackage 'php-react-event-loop' is not installed, so not removed\nPackage 'php-react-http' is not installed, so not removed\nPackage 'php-react-promise' is not installed, so not removed\nPackage 'php-react-promise-stream' is not installed, so not removed\nPackage 'php-react-promise-timer' is not installed, so not removed\nPackage 'php-react-socket' is not installed, so not removed\nPackage 'php-react-stream' is not installed, so not removed\nPackage 'php-readline' is not installed, so not removed\nPackage 'php-redis' is not installed, so not removed\nPackage 'php-remctl' is not installed, so not removed\nPackage 'php-respect-validation' is not installed, so not removed\nPackage 'php-robmorgan-phinx' is not installed, so not removed\nPackage 'php-rrd' is not installed, so not removed\nPackage 'php-sabre-vobject' is not installed, so not removed\nPackage 'php-sass' is not installed, so not removed\nPackage 'php-seclib' is not installed, so not removed\nPackage 'php-services-json' is not installed, so not removed\nPackage 'php-services-weather' is not installed, so not removed\nPackage 'php-shellcommand' is not installed, so not removed\nPackage 'php-soap' is not installed, so not removed\nPackage 'php-solr' is not installed, so not removed\nPackage 'php-sql-formatter' is not installed, so not removed\nPackage 'php-ssh2' is not installed, so not removed\nPackage 'php-stomp' is not installed, so not removed\nPackage 'php-swiftmailer' is not installed, so not removed\nPackage 'php-sybase' is not installed, so not removed\nPackage 'php-symfony' is not installed, so not removed\nPackage 'php-symfony-amazon-mailer' is not installed, so not removed\nPackage 'php-symfony-asset' is not installed, so not removed\nPackage 'php-symfony-browser-kit' is not installed, so not removed\nPackage 'php-symfony-cache' is not installed, so not removed\nPackage 'php-symfony-cache-contracts' is not installed, so not removed\nPackage 'php-symfony-config' is not installed, so not removed\nPackage 'php-symfony-console' is not installed, so not removed\nPackage 'php-symfony-contracts' is not installed, so not removed\nPackage 'php-symfony-css-selector' is not installed, so not removed\nPackage 'php-symfony-debug' is not installed, so not removed\nPackage 'php-symfony-debug-bundle' is not installed, so not removed\nPackage 'php-symfony-dependency-injection' is not installed, so not removed\nPackage 'php-symfony-doctrine-bridge' is not installed, so not removed\nPackage 'php-symfony-dom-crawler' is not installed, so not removed\nPackage 'php-symfony-dotenv' is not installed, so not removed\nPackage 'php-symfony-event-dispatcher' is not installed, so not removed\nPackage 'php-symfony-event-dispatcher-contracts' is not installed, so not removed\nPackage 'php-symfony-expression-language' is not installed, so not removed\nPackage 'php-symfony-filesystem' is not installed, so not removed\nPackage 'php-symfony-finder' is not installed, so not removed\nPackage 'php-symfony-form' is not installed, so not removed\nPackage 'php-symfony-framework-bundle' is not installed, so not removed\nPackage 'php-symfony-google-mailer' is not installed, so not removed\nPackage 'php-symfony-http-client' is not installed, so not removed\nPackage 'php-symfony-http-client-contracts' is not installed, so not removed\nPackage 'php-symfony-http-foundation' is not installed, so not removed\nPackage 'php-symfony-http-kernel' is not installed, so not removed\nPackage 'php-symfony-inflector' is not installed, so not removed\nPackage 'php-symfony-intl' is not installed, so not removed\nPackage 'php-symfony-ldap' is not installed, so not removed\nPackage 'php-symfony-lock' is not installed, so not removed\nPackage 'php-symfony-mailchimp-mailer' is not installed, so not removed\nPackage 'php-symfony-mailer' is not installed, so not removed\nPackage 'php-symfony-mailgun-mailer' is not installed, so not removed\nPackage 'php-symfony-messenger' is not installed, so not removed\nPackage 'php-symfony-mime' is not installed, so not removed\nPackage 'php-symfony-monolog-bridge' is not installed, so not removed\nPackage 'php-symfony-options-resolver' is not installed, so not removed\nPackage 'php-symfony-phpunit-bridge' is not installed, so not removed\nPackage 'php-symfony-postmark-mailer' is not installed, so not removed\nPackage 'php-symfony-process' is not installed, so not removed\nPackage 'php-symfony-property-access' is not installed, so not removed\nPackage 'php-symfony-property-info' is not installed, so not removed\nPackage 'php-symfony-proxy-manager-bridge' is not installed, so not removed\nPackage 'php-symfony-routing' is not installed, so not removed\nPackage 'php-symfony-security' is not installed, so not removed\nPackage 'php-symfony-security-acl' is not installed, so not removed\nPackage 'php-symfony-security-bundle' is not installed, so not removed\nPackage 'php-symfony-security-core' is not installed, so not removed\nPackage 'php-symfony-security-csrf' is not installed, so not removed\nPackage 'php-symfony-security-guard' is not installed, so not removed\nPackage 'php-symfony-security-http' is not installed, so not removed\nPackage 'php-symfony-sendgrid-mailer' is not installed, so not removed\nPackage 'php-symfony-serializer' is not installed, so not removed\nPackage 'php-symfony-service-contracts' is not installed, so not removed\nPackage 'php-symfony-stopwatch' is not installed, so not removed\nPackage 'php-symfony-templating' is not installed, so not removed\nPackage 'php-symfony-translation' is not installed, so not removed\nPackage 'php-symfony-translation-contracts' is not installed, so not removed\nPackage 'php-symfony-twig-bridge' is not installed, so not removed\nPackage 'php-symfony-twig-bundle' is not installed, so not removed\nPackage 'php-symfony-validator' is not installed, so not removed\nPackage 'php-symfony-var-dumper' is not installed, so not removed\nPackage 'php-symfony-var-exporter' is not installed, so not removed\nPackage 'php-symfony-web-link' is not installed, so not removed\nPackage 'php-symfony-web-profiler-bundle' is not installed, so not removed\nPackage 'php-symfony-web-server-bundle' is not installed, so not removed\nPackage 'php-symfony-workflow' is not installed, so not removed\nPackage 'php-symfony-yaml' is not installed, so not removed\nPackage 'php-tcpdf' is not installed, so not removed\nPackage 'php-text-captcha' is not installed, so not removed\nPackage 'php-text-figlet' is not installed, so not removed\nPackage 'php-text-languagedetect' is not installed, so not removed\nPackage 'php-text-password' is not installed, so not removed\nPackage 'php-text-template' is not installed, so not removed\nPackage 'php-text-wiki' is not installed, so not removed\nPackage 'php-thrift' is not installed, so not removed\nPackage 'php-tideways' is not installed, so not removed\nPackage 'php-tijsverkoyen-css-to-inline-styles' is not installed, so not removed\nPackage 'php-timer' is not installed, so not removed\nPackage 'php-token-stream' is not installed, so not removed\nPackage 'php-tokenizer' is not installed, so not removed\nPackage 'php-twig' is not installed, so not removed\nPackage 'php-twig-cssinliner-extra' is not installed, so not removed\nPackage 'php-twig-doc' is not installed, so not removed\nPackage 'php-twig-extensions' is not installed, so not removed\nPackage 'php-twig-extra-bundle' is not installed, so not removed\nPackage 'php-twig-html-extra' is not installed, so not removed\nPackage 'php-twig-inky-extra' is not installed, so not removed\nPackage 'php-twig-intl-extra' is not installed, so not removed\nPackage 'php-twig-markdown-extra' is not installed, so not removed\nPackage 'php-uploadprogress' is not installed, so not removed\nPackage 'php-uuid' is not installed, so not removed\nPackage 'php-validate' is not installed, so not removed\nPackage 'php-webmozart-assert' is not installed, so not removed\nPackage 'php-wikidiff2' is not installed, so not removed\nPackage 'php-wmerrors' is not installed, so not removed\nPackage 'php-xajax' is not installed, so not removed\nPackage 'php-xdebug' is not installed, so not removed\nPackage 'php-xml-htmlsax3' is not installed, so not removed\nPackage 'php-xml-rpc2' is not installed, so not removed\nPackage 'php-xml-svg' is not installed, so not removed\nPackage 'php-yac' is not installed, so not removed\nPackage 'php-yaml' is not installed, so not removed\nPackage 'php-zend-code' is not installed, so not removed\nPackage 'php-zend-eventmanager' is not installed, so not removed\nPackage 'php-zend-stdlib' is not installed, so not removed\nPackage 'php-zeroc-ice' is not installed, so not removed\nPackage 'php-zeta-base' is not installed, so not removed\nPackage 'php-zeta-console-tools' is not installed, so not removed\nPackage 'php-zeta-unit-test' is not installed, so not removed\nPackage 'php-zip' is not installed, so not removed\nPackage 'php-zmq' is not installed, so not removed\nPackage 'phpab' is not installed, so not removed\nPackage 'phpcpd' is not installed, so not removed\nPackage 'phpdox' is not installed, so not removed\nPackage 'phpldapadmin' is not installed, so not removed\nPackage 'phpliteadmin' is not installed, so not removed\nPackage 'phpliteadmin-themes' is not installed, so not removed\nPackage 'phploc' is not installed, so not removed\nPackage 'phpmd' is not installed, so not removed\nPackage 'phpmyadmin' is not installed, so not removed\nPackage 'phppgadmin' is not installed, so not removed\nPackage 'phpqrcode' is not installed, so not removed\nPackage 'phpsysinfo' is not installed, so not removed\nPackage 'phpunit' is not installed, so not removed\nPackage 'phpunit-code-unit-reverse-lookup' is not installed, so not removed\nPackage 'phpunit-comparator' is not installed, so not removed\nPackage 'phpunit-diff' is not installed, so not removed\nPackage 'phpunit-environment' is not installed, so not removed\nPackage 'phpunit-exporter' is not installed, so not removed\nPackage 'phpunit-git' is not installed, so not removed\nPackage 'phpunit-global-state' is not installed, so not removed\nPackage 'phpunit-object-enumerator' is not installed, so not removed\nPackage 'phpunit-object-reflector' is not installed, so not removed\nPackage 'phpunit-recursion-context' is not installed, so not removed\nPackage 'phpunit-resource-operations' is not installed, so not removed\nPackage 'phpunit-type' is not installed, so not removed\nPackage 'phpunit-version' is not installed, so not removed\nPackage 'phpwebcounter' is not installed, so not removed\nPackage 'phpwebcounter-extra' is not installed, so not removed\nPackage 'python3-phply' is not installed, so not removed\nPackage 'python3-phpserialize' is not installed, so not removed\nPackage 'simplesamlphp' is not installed, so not removed\nPackage 'slbackup-php' is not installed, so not removed\nPackage 'uphpmvault' is not installed, so not removed\nPackage 'uwsgi-plugin-php' is not installed, so not removed\nPackage 'weechat-php' is not installed, so not removed\nPackage 'zabbix-frontend-php' is not installed, so not removed\nPackage 'php-mythtv' is not installed, so not removed\nPackage 'libapache2-mod-php7.4' is not installed, so not removed\nPackage 'libawl-php' is not installed, so not removed\nPackage 'libphp7.4-embed' is not installed, so not removed\nThe following packages will be REMOVED:\n  php-common php-pear php7.4 php7.4-amqp php7.4-apcu php7.4-bcmath php7.4-bz2\n  php7.4-cgi php7.4-cli php7.4-common php7.4-curl php7.4-dba php7.4-dev\n  php7.4-enchant php7.4-fpm php7.4-gd php7.4-gmp php7.4-igbinary\n  php7.4-imagick php7.4-imap php7.4-interbase php7.4-intl php7.4-json\n  php7.4-ldap php7.4-mbstring php7.4-memcache php7.4-memcached php7.4-mongodb\n  php7.4-msgpack php7.4-mysql php7.4-odbc php7.4-opcache php7.4-pcov\n  php7.4-pgsql php7.4-phpdbg php7.4-pspell php7.4-readline php7.4-redis\n  php7.4-snmp php7.4-soap php7.4-sqlite3 php7.4-sybase php7.4-tidy\n  php7.4-xdebug php7.4-xml php7.4-xmlrpc php7.4-xsl php7.4-yaml php7.4-zip\n  php7.4-zmq php8.0 php8.0-amqp php8.0-apcu php8.0-bcmath php8.0-bz2\n  php8.0-cgi php8.0-cli php8.0-common php8.0-curl php8.0-dba php8.0-dev\n  php8.0-enchant php8.0-fpm php8.0-gd php8.0-gmp php8.0-igbinary\n  php8.0-imagick php8.0-imap php8.0-interbase php8.0-intl php8.0-ldap\n  php8.0-mbstring php8.0-memcache php8.0-memcached php8.0-mongodb\n  php8.0-msgpack php8.0-mysql php8.0-odbc php8.0-opcache php8.0-pcov\n  php8.0-pgsql php8.0-phpdbg php8.0-pspell php8.0-readline php8.0-redis\n  php8.0-snmp php8.0-soap php8.0-sqlite3 php8.0-sybase php8.0-tidy\n  php8.0-xdebug php8.0-xml php8.0-xsl php8.0-yaml php8.0-zip php8.0-zmq php8.1\n  php8.1-amqp php8.1-apcu php8.1-bcmath php8.1-bz2 php8.1-cgi php8.1-cli\n  php8.1-common php8.1-curl php8.1-dba php8.1-dev php8.1-enchant php8.1-fpm\n  php8.1-gd php8.1-gmp php8.1-igbinary php8.1-imagick php8.1-imap\n  php8.1-interbase php8.1-intl php8.1-ldap php8.1-mbstring php8.1-memcache\n  php8.1-memcached php8.1-mongodb php8.1-msgpack php8.1-mysql php8.1-odbc\n  php8.1-opcache php8.1-pcov php8.1-pgsql php8.1-phpdbg php8.1-pspell\n  php8.1-readline php8.1-redis php8.1-snmp php8.1-soap php8.1-sqlite3\n  php8.1-sybase php8.1-tidy php8.1-xdebug php8.1-xml php8.1-xsl php8.1-yaml\n  php8.1-zip php8.1-zmq\n0 upgraded, 0 newly installed, 142 to remove and 14 not upgraded.\nAfter this operation, 158 MB disk space will be freed.\n(Reading database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading database ... 218380 files and directories currently installed.)\nRemoving php7.4-bcmath (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-zmq (1.1.3-23+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php-pear (1:1.10.13+submodules+notgz+2022032202-2+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4 (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-amqp (1.11.0-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php7.4-apcu (5.1.21+4.0.11-7+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php7.4-bz2 (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-zmq (1.1.3-23+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php7.4-yaml (2.2.2+2.1.0+2.0.4+1.3.2-5+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php7.4-cgi (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\napache2_invoke php7.4-cgi prerm: No action required\nRemoving php7.4-dev (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-xdebug (3.1.2+2.9.8+2.8.1+2.5.5-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php7.4-phpdbg (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-redis (5.3.6+4.3.0-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-zip (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-xsl (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-curl (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-dba (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-enchant (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-pcov (1.0.11-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php7.4-fpm (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\napache2_invoke php7.4-fpm prerm: No action required\nRemoving php7.4-gd (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-gmp (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-memcached (3.2.0+2.2.0-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-igbinary (3.2.6+2.0.8-6+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php7.4-imagick (3.6.0-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php7.4-imap (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-interbase (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-intl (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-ldap (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-mbstring (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-memcache (8.0+4.0.5.2+3.0.9~20170802.e702b5f9+-7+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php7.4-mongodb (1.13.0+1.9.2+1.7.5-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-msgpack (2.2.0~rc1+2.1.2+0.5.7-6+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php7.4-mysql (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-odbc (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-pgsql (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-pspell (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-snmp (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-soap (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-sqlite3 (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-sybase (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-tidy (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-xml (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-xmlrpc (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0 (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-amqp (1.11.0-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.0-apcu (5.1.21+4.0.11-7+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.0-bcmath (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-bz2 (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-zmq (1.1.3-23+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.0-yaml (2.2.2+2.1.0+2.0.4+1.3.2-5+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.0-cgi (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\napache2_invoke php8.0-cgi prerm: No action required\nRemoving php8.0-dev (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-xdebug (3.1.2+2.9.8+2.8.1+2.5.5-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.0-phpdbg (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-redis (5.3.6+4.3.0-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-zip (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-xsl (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-curl (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-dba (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-enchant (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-pcov (1.0.11-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.0-fpm (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\napache2_invoke php8.0-fpm prerm: No action required\nRemoving php8.0-gd (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-gmp (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-memcached (3.2.0+2.2.0-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-igbinary (3.2.6+2.0.8-6+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.0-imagick (3.6.0-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.0-imap (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-interbase (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-intl (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-ldap (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-mbstring (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-memcache (8.0+4.0.5.2+3.0.9~20170802.e702b5f9+-7+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.0-mongodb (1.13.0+1.9.2+1.7.5-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-msgpack (2.2.0~rc1+2.1.2+0.5.7-6+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.0-mysql (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-odbc (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-pgsql (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-pspell (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-snmp (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-soap (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-sqlite3 (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-sybase (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-tidy (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-xml (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1 (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-amqp (1.11.0-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.1-apcu (5.1.21+4.0.11-7+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.1-bcmath (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-bz2 (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-yaml (2.2.2+2.1.0+2.0.4+1.3.2-5+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.1-cgi (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\napache2_invoke php8.1-cgi prerm: No action required\nRemoving php8.1-dev (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-xdebug (3.1.2+2.9.8+2.8.1+2.5.5-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.1-phpdbg (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-redis (5.3.6+4.3.0-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-zip (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-xsl (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-curl (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-dba (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-enchant (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-pcov (1.0.11-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.1-fpm (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\napache2_invoke php8.1-fpm prerm: No action required\nRemoving php8.1-gd (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-gmp (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-memcached (3.2.0+2.2.0-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-igbinary (3.2.6+2.0.8-6+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.1-imagick (3.6.0-4+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.1-imap (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-interbase (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-intl (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-ldap (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-mbstring (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-memcache (8.0+4.0.5.2+3.0.9~20170802.e702b5f9+-7+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.1-mongodb (1.13.0+1.9.2+1.7.5-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-msgpack (2.2.0~rc1+2.1.2+0.5.7-6+ubuntu20.04.1+deb.sury.org+10) ...\nRemoving php8.1-mysql (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-odbc (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-pgsql (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-pspell (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-snmp (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-soap (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-sqlite3 (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-sybase (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-tidy (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-xml (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-cli (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-json (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-opcache (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-readline (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-cli (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-opcache (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-readline (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-cli (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-opcache (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-readline (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php7.4-common (1:7.4.30-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.0-common (1:8.0.20-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php8.1-common (8.1.7-1+ubuntu20.04.1+deb.sury.org+1) ...\nRemoving php-common (2:92+ubuntu20.04.1+deb.sury.org+2) ...\nWarning: Stopping phpsessionclean.service, but it can still be activated by:\n  phpsessionclean.timer\nProcessing triggers for man-db (2.9.1-1) ...\nReading package lists...\nBuilding dependency tree...\nReading state information...\nPackage 'mongodb-org-tools-unstable' is not installed, so not removed\nPackage 'mongodb-enterprise-tools' is not installed, so not removed\nPackage 'mongodb-enterprise-tools-unstable' is not installed, so not removed\nPackage 'mongodb-10gen' is not installed, so not removed\nPackage 'mongodb-10gen-enterprise' is not installed, so not removed\nPackage 'mongodb-10gen-unstable' is not installed, so not removed\nPackage 'mongodb-10gen-unstable-enterprise' is not installed, so not removed\nPackage 'mongodb-10gen-unstable-enterprise-mongos' is not installed, so not removed\nPackage 'mongodb-10gen-unstable-enterprise-server' is not installed, so not removed\nPackage 'mongodb-10gen-unstable-enterprise-shell' is not installed, so not removed\nPackage 'mongodb-10gen-unstable-enterprise-tools' is not installed, so not removed\nPackage 'mongodb-10gen-unstable-mongos' is not installed, so not removed\nPackage 'mongodb-10gen-unstable-server' is not installed, so not removed\nPackage 'mongodb-10gen-unstable-shell' is not installed, so not removed\nPackage 'mongodb-10gen-unstable-tools' is not installed, so not removed\nPackage 'mongodb-enterprise' is not installed, so not removed\nPackage 'mongodb-enterprise-mongos' is not installed, so not removed\nPackage 'mongodb-enterprise-server' is not installed, so not removed\nPackage 'mongodb-enterprise-shell' is not installed, so not removed\nPackage 'mongodb-enterprise-unstable' is not installed, so not removed\nPackage 'mongodb-enterprise-unstable-mongos' is not installed, so not removed\nPackage 'mongodb-enterprise-unstable-server' is not installed, so not removed\nPackage 'mongodb-enterprise-unstable-shell' is not installed, so not removed\nPackage 'mongodb-enterprise-unstable-tools' is not installed, so not removed\nPackage 'mongodb-nightly' is not installed, so not removed\nPackage 'mongodb-org-unstable' is not installed, so not removed\nPackage 'mongodb-org-unstable-mongos' is not installed, so not removed\nPackage 'mongodb-org-unstable-server' is not installed, so not removed\nPackage 'mongodb-org-unstable-shell' is not installed, so not removed\nPackage 'mongodb-org-unstable-tools' is not installed, so not removed\nPackage 'mongodb-stable' is not installed, so not removed\nPackage 'mongodb-enterprise-database-tools-extra' is not installed, so not removed\nPackage 'mongodb-enterprise-unstable-database-tools-extra' is not installed, so not removed\nPackage 'mongodb-org-unstable-database-tools-extra' is not installed, so not removed\nPackage 'mongodb-dev' is not installed, so not removed\nPackage 'mongodb-clients' is not installed, so not removed\nPackage 'mongodb-server' is not installed, so not removed\nPackage 'mongodb-server-core' is not installed, so not removed\nThe following packages will be REMOVED:\n  mongodb-database-tools mongodb-mongosh mongodb-org mongodb-org-database\n  mongodb-org-database-tools-extra mongodb-org-mongos mongodb-org-server\n  mongodb-org-shell mongodb-org-tools\n0 upgraded, 0 newly installed, 9 to remove and 14 not upgraded.\nAfter this operation, 461 MB disk space will be freed.\n(Reading database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading database ... 215804 files and directories currently installed.)\nRemoving mongodb-org (5.0.9) ...\nRemoving mongodb-org-tools (5.0.9) ...\nRemoving mongodb-database-tools (100.5.3) ...\nRemoving mongodb-mongosh (1.5.0) ...\nRemoving mongodb-org-database (5.0.9) ...\nRemoving mongodb-org-database-tools-extra (5.0.9) ...\nRemoving mongodb-org-mongos (5.0.9) ...\nRemoving mongodb-org-server (5.0.9) ...\nRemoving mongodb-org-shell (5.0.9) ...\nProcessing triggers for man-db (2.9.1-1) ...\nReading package lists...\nBuilding dependency tree...\nReading state information...\nPackage 'mysql-client-5.7' is not installed, so not removed\nPackage 'mysql-client-core-5.7' is not installed, so not removed\nPackage 'mysql-server-5.5' is not installed, so not removed\nPackage 'mysql-server-5.7' is not installed, so not removed\nPackage 'mysql-server-core-5.7' is not installed, so not removed\nPackage 'mysql-client-core-5.5' is not installed, so not removed\nPackage 'mysql-client-core-5.6' is not installed, so not removed\nPackage 'mysql-client-5.5' is not installed, so not removed\nPackage 'mysql-client-5.6' is not installed, so not removed\nPackage 'mysql-server-core-5.5' is not installed, so not removed\nPackage 'mysql-server-core-5.6' is not installed, so not removed\nPackage 'mysql-server-5.6' is not installed, so not removed\nPackage 'mysql-testsuite-5.5' is not installed, so not removed\nPackage 'mysql-testsuite-5.6' is not installed, so not removed\nPackage 'mysql-testsuite-5.7' is not installed, so not removed\nPackage 'mysql-sandbox' is not installed, so not removed\nPackage 'mysql-router' is not installed, so not removed\nPackage 'mysql-source-8.0' is not installed, so not removed\nPackage 'mysql-testsuite' is not installed, so not removed\nPackage 'mysql-testsuite-8.0' is not installed, so not removed\nThe following packages will be REMOVED:\n  libmysqlclient-dev libmysqlclient21 libsnmp35 mysql-client mysql-client-8.0\n  mysql-client-core-8.0 mysql-common mysql-server mysql-server-8.0\n  mysql-server-core-8.0 snmp sphinxsearch\n0 upgraded, 0 newly installed, 12 to remove and 14 not upgraded.\nAfter this operation, 245 MB disk space will be freed.\n(Reading database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading database ... 215746 files and directories currently installed.)\nRemoving libmysqlclient-dev (8.0.29-0ubuntu0.20.04.3) ...\nRemoving snmp (5.8+dfsg-2ubuntu2.3) ...\nRemoving libsnmp35:amd64 (5.8+dfsg-2ubuntu2.3) ...\nRemoving sphinxsearch (2.2.11-2ubuntu2) ...\nRemoving libmysqlclient21:amd64 (8.0.29-0ubuntu0.20.04.3) ...\nRemoving mysql-client (8.0.29-0ubuntu0.20.04.3) ...\nRemoving mysql-server (8.0.29-0ubuntu0.20.04.3) ...\nRemoving mysql-server-8.0 (8.0.29-0ubuntu0.20.04.3) ...\nupdate-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode\nRemoving mysql-client-8.0 (8.0.29-0ubuntu0.20.04.3) ...\nRemoving mysql-client-core-8.0 (8.0.29-0ubuntu0.20.04.3) ...\nRemoving mysql-common (5.8+1.0.5ubuntu2) ...\nRemoving mysql-server-core-8.0 (8.0.29-0ubuntu0.20.04.3) ...\nProcessing triggers for man-db (2.9.1-1) ...\nProcessing triggers for libc-bin (2.31-0ubuntu9.9) ...\nReading package lists...\nBuilding dependency tree...\nReading state information...\nThe following packages will be REMOVED:\n  azure-cli esl-erlang firefox google-chrome-stable google-cloud-sdk hhvm\n  libgl1 libgl1-mesa-dri libglx-mesa0 libglx0 libwxgtk3.0-gtk3-0v5\n  mono-complete mono-devel mono-roslyn mono-xsp4 mono-xsp4-base monodoc-http\n  monodoc-manual powershell x11-utils xvfb\n0 upgraded, 0 newly installed, 21 to remove and 14 not upgraded.\nAfter this operation, 3168 MB disk space will be freed.\n(Reading database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading database ... 215378 files and directories currently installed.)\nRemoving azure-cli (2.37.0-1~focal) ...\nRemoving esl-erlang (1:25.0.1-1) ...\nRemoving firefox (101.0.1+build1-0ubuntu0.20.04.1) ...\nRemoving google-chrome-stable (102.0.5005.115-1) ...\nRemoving google-cloud-sdk (369.0.0-0) ...\nRemoving hhvm (4.162.0-1~focal) ...\nStopping hhvm (via systemctl): hhvm.service.\nRemoving xvfb (2:1.20.13-1ubuntu1~20.04.2) ...\nRemoving libwxgtk3.0-gtk3-0v5:amd64 (3.0.4+dfsg-15build1) ...\nRemoving mono-complete (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving powershell (7.2.4-1.deb) ...\nRemoving x11-utils (7.7+5) ...\nRemoving libgl1:amd64 (1.3.2-1~ubuntu0.20.04.2) ...\nRemoving libglx0:amd64 (1.3.2-1~ubuntu0.20.04.2) ...\nRemoving libglx-mesa0:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...\nRemoving libgl1-mesa-dri:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...\nRemoving monodoc-http (4.2-3xamarin5+ubuntu2004b1) ...\nRestarting mono-xsp4 (via systemctl): mono-xsp4.service.\nRemoving monodoc-manual (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving mono-xsp4 (4.7.1-0xamarin3+ubuntu2004b1) ...\nRemoving mono-xsp4-base (4.7.1-0xamarin3+ubuntu2004b1) ...\nRemoving mono-roslyn (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving mono-devel (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nProcessing triggers for hicolor-icon-theme (0.17-2) ...\nProcessing triggers for libc-bin (2.31-0ubuntu9.9) ...\nProcessing triggers for man-db (2.9.1-1) ...\nProcessing triggers for mime-support (3.64ubuntu1) ...\nReading package lists...\nBuilding dependency tree...\nReading state information...\nThe following packages will be REMOVED:\n  dictionaries-common emacsen-common firebird3.0-common firebird3.0-common-doc\n  freetds-common hunspell-en-us libaspell15 libboost-context1.71.0\n  libboost-filesystem1.71.0 libboost-program-options1.71.0\n  libboost-thread1.71.0 libc-client2007e libcgi-fast-perl libcgi-pm-perl\n  libclang-common-12-dev libclang1-12 libdbusmenu-glib4 libdbusmenu-gtk3-4\n  libdrm-amdgpu1 libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdwarf1\n  libenchant-2-2 libevent-core-2.1-7 libevent-pthreads-2.1-7 libfbclient2\n  libfcgi-perl libfontenc1 libgflags2.2 libglapi-mesa libglvnd0\n  libgoogle-glog0v5 libhtml-template-perl libhunspell-1.7-0 libjemalloc2\n  libjs-xmlextras liblldb-10 liblldb-11 liblldb-12 libmcrypt4 libmecab2\n  libmemcached11 libmono-2.0-1 libmono-2.0-dev libmono-cairo4.0-cil\n  libmono-cecil-private-cil libmono-cil-dev libmono-codecontracts4.0-cil\n  libmono-compilerservices-symbolwriter4.0-cil libmono-cscompmgd0.0-cil\n  libmono-csharp4.0c-cil libmono-custommarshalers4.0-cil\n  libmono-data-tds4.0-cil libmono-db2-1.0-cil libmono-debugger-soft4.0a-cil\n  libmono-http4.0-cil libmono-management4.0-cil\n  libmono-messaging-rabbitmq4.0-cil libmono-microsoft-build-engine4.0-cil\n  libmono-microsoft-build-tasks-v4.0-4.0-cil libmono-microsoft-build4.0-cil\n  libmono-microsoft-visualc10.0-cil\n  libmono-microsoft-web-infrastructure1.0-cil libmono-oracle4.0-cil\n  libmono-parallel4.0-cil libmono-peapi4.0a-cil libmono-profiler\n  libmono-rabbitmq4.0-cil libmono-relaxng4.0-cil libmono-sharpzip4.84-cil\n  libmono-simd4.0-cil libmono-smdiagnostics0.0-cil\n  libmono-system-data-datasetextensions4.0-cil\n  libmono-system-data-entity4.0-cil libmono-system-data-linq4.0-cil\n  libmono-system-data-services4.0-cil libmono-system-deployment4.0-cil\n  libmono-system-drawing-design4.0-cil libmono-system-dynamic4.0-cil\n  libmono-system-io-compression-filesystem4.0-cil\n  libmono-system-json-microsoft4.0-cil libmono-system-json4.0-cil\n  libmono-system-ldap-protocols4.0-cil libmono-system-management4.0-cil\n  libmono-system-net-http-formatting4.0-cil\n  libmono-system-net-http-webrequest4.0-cil libmono-system-net4.0-cil\n  libmono-system-numerics-vectors4.0-cil libmono-system-reactive-core2.2-cil\n  libmono-system-reactive-debugger2.2-cil\n  libmono-system-reactive-experimental2.2-cil\n  libmono-system-reactive-interfaces2.2-cil\n  libmono-system-reactive-linq2.2-cil\n  libmono-system-reactive-observable-aliases0.0-cil\n  libmono-system-reactive-platformservices2.2-cil\n  libmono-system-reactive-providers2.2-cil\n  libmono-system-reactive-runtime-remoting2.2-cil\n  libmono-system-reactive-windows-forms2.2-cil\n  libmono-system-reactive-windows-threading2.2-cil\n  libmono-system-reflection-context4.0-cil\n  libmono-system-runtime-caching4.0-cil\n  libmono-system-runtime-durableinstancing4.0-cil\n  libmono-system-runtime4.0-cil libmono-system-servicemodel-discovery4.0-cil\n  libmono-system-servicemodel-routing4.0-cil\n  libmono-system-servicemodel-web4.0-cil libmono-system-serviceprocess4.0-cil\n  libmono-system-threading-tasks-dataflow4.0-cil\n  libmono-system-web-abstractions4.0-cil libmono-system-web-dynamicdata4.0-cil\n  libmono-system-web-extensions-design4.0-cil\n  libmono-system-web-extensions4.0-cil libmono-system-web-http-selfhost4.0-cil\n  libmono-system-web-http-webhost4.0-cil libmono-system-web-http4.0-cil\n  libmono-system-web-mobile4.0-cil libmono-system-web-mvc3.0-cil\n  libmono-system-web-razor2.0-cil libmono-system-web-regularexpressions4.0-cil\n  libmono-system-web-routing4.0-cil\n  libmono-system-web-webpages-deployment2.0-cil\n  libmono-system-web-webpages-razor2.0-cil libmono-system-web-webpages2.0-cil\n  libmono-system-windows-forms-datavisualization4.0a-cil\n  libmono-system-windows4.0-cil libmono-system-workflow-activities4.0-cil\n  libmono-system-workflow-componentmodel4.0-cil\n  libmono-system-workflow-runtime4.0-cil\n  libmono-system-xml-serialization4.0-cil libmono-tasklets4.0-cil\n  libmono-webmatrix-data4.0-cil libmono-xbuild-tasks4.0-cil libmonoboehm-2.0-1\n  libmonosgen-2.0-1 libmonosgen-2.0-dev libncurses5 libnorm1 libnotify4\n  libpciaccess0 libpcre2-posix2 libpfm4 libpgm-5.2-0 libqdbm14 librabbitmq4\n  libre2-5 libsctp1 libsnappy1v5 libsnmp-base libsybdb5 libtbb2 libtidy5deb1\n  libtinfo-dev libtinfo5 libtommath1 libu2f-udev libvpx6 libvulkan1\n  libwxbase3.0-0v5 libx11-xcb1 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0\n  libxcb-present0 libxcb-shape0 libxcb-sync1 libxcb-xfixes0 libxfont2\n  libxmlrpc-epi0 libxshmfence1 libxv1 libxxf86dga1 libz3-4 libz3-dev libzip4\n  libzmq5 mecab-ipadic mecab-ipadic-utf8 mecab-utils mlock mono-4.0-service\n  mono-csharp-shell mono-mcs mono-utils mono-xbuild monodoc-base msbuild\n  msbuild-libhostfxr msbuild-sdkresolver netstandard-targeting-pack-2.1\n  python3-crcmod python3-lldb-11 python3-pygments referenceassemblies-pcl\n  shtool x11-xkb-utils xserver-common xul-ext-ubufox\n0 upgraded, 0 newly installed, 198 to remove and 14 not upgraded.\nAfter this operation, 433 MB disk space will be freed.\n(Reading database ... \n(Reading database ... 5%\n(Reading database ... 10%\n(Reading database ... 15%\n(Reading database ... 20%\n(Reading database ... 25%\n(Reading database ... 30%\n(Reading database ... 35%\n(Reading database ... 40%\n(Reading database ... 45%\n(Reading database ... 50%\n(Reading database ... 55%\n(Reading database ... 60%\n(Reading database ... 65%\n(Reading database ... 70%\n(Reading database ... 75%\n(Reading database ... 80%\n(Reading database ... 85%\n(Reading database ... 90%\n(Reading database ... 95%\n(Reading database ... 100%\n(Reading database ... 125456 files and directories currently installed.)\nRemoving libenchant-2-2:amd64 (2.2.8-1ubuntu0.20.04.1) ...\nRemoving hunspell-en-us (1:2018.04.16-1) ...\nRemoving dictionaries-common (1.28.1) ...\nRemoving 'diversion of /usr/share/dict/words to /usr/share/dict/words.pre-dictionaries-common by dictionaries-common'\nRemoving emacsen-common (3.0.4) ...\nRemoving libfbclient2:amd64 (3.0.5.33220.ds4-1build2) ...\nRemoving firebird3.0-common (3.0.5.33220.ds4-1build2) ...\nRemoving firebird3.0-common-doc (3.0.5.33220.ds4-1build2) ...\nRemoving libsybdb5:amd64 (1.1.6-1.1) ...\nRemoving freetds-common (1.1.6-1.1) ...\nRemoving libaspell15:amd64 (0.60.8-1ubuntu0.1) ...\nRemoving libboost-context1.71.0:amd64 (1.71.0-6ubuntu6) ...\nRemoving libboost-filesystem1.71.0:amd64 (1.71.0-6ubuntu6) ...\nRemoving libboost-program-options1.71.0:amd64 (1.71.0-6ubuntu6) ...\nRemoving libboost-thread1.71.0:amd64 (1.71.0-6ubuntu6) ...\nRemoving libc-client2007e (8:2007f~dfsg-7) ...\nRemoving libcgi-fast-perl (1:2.15-1) ...\nRemoving libhtml-template-perl (2.97-1) ...\nRemoving libcgi-pm-perl (4.46-1) ...\nRemoving libclang-common-12-dev (1:12.0.0-3ubuntu1~20.04.5) ...\nRemoving libclang1-12 (1:12.0.0-3ubuntu1~20.04.5) ...\nRemoving libdbusmenu-gtk3-4:amd64 (16.04.1+18.10.20180917-0ubuntu6) ...\nRemoving libdbusmenu-glib4:amd64 (16.04.1+18.10.20180917-0ubuntu6) ...\nRemoving libdrm-amdgpu1:amd64 (2.4.107-8ubuntu1~20.04.2) ...\nRemoving libdrm-intel1:amd64 (2.4.107-8ubuntu1~20.04.2) ...\nRemoving libdrm-nouveau2:amd64 (2.4.107-8ubuntu1~20.04.2) ...\nRemoving libdrm-radeon1:amd64 (2.4.107-8ubuntu1~20.04.2) ...\nRemoving libdwarf1:amd64 (20200114-1) ...\nRemoving libevent-pthreads-2.1-7:amd64 (2.1.11-stable-1) ...\nRemoving libevent-core-2.1-7:amd64 (2.1.11-stable-1) ...\nRemoving libfcgi-perl (0.79-1) ...\nRemoving libxfont2:amd64 (1:2.0.3-1) ...\nRemoving libfontenc1:amd64 (1:1.1.4-0ubuntu1) ...\nRemoving libgoogle-glog0v5 (0.4.0-1build1) ...\nRemoving libgflags2.2 (2.2.2-1build1) ...\nRemoving libglapi-mesa:amd64 (21.2.6-0ubuntu0.1~20.04.2) ...\nRemoving libglvnd0:amd64 (1.3.2-1~ubuntu0.20.04.2) ...\nRemoving libhunspell-1.7-0:amd64 (1.7.0-2build2) ...\nRemoving libjemalloc2:amd64 (5.2.1-1ubuntu1) ...\nRemoving libjs-xmlextras (20060529-1) ...\nRemoving liblldb-10 (1:10.0.0-4ubuntu1) ...\nRemoving python3-lldb-11 (1:11.0.0-2~ubuntu20.04.1) ...\nRemoving liblldb-11 (1:11.0.0-2~ubuntu20.04.1) ...\nRemoving liblldb-12 (1:12.0.0-3ubuntu1~20.04.5) ...\nRemoving libmcrypt4 (2.5.8-3.4) ...\nRemoving mecab-ipadic-utf8 (2.7.0-20070801+main-2.1) ...\nupdate-alternatives: using /var/lib/mecab/dic/ipadic to provide /var/lib/mecab/dic/debian (mecab-dictionary) in auto mode\nRemoving mecab-ipadic (2.7.0-20070801+main-2.1) ...\nRemoving mecab-utils (0.996-10build1) ...\nRemoving libmecab2:amd64 (0.996-10build1) ...\nRemoving libmemcached11:amd64 (1.0.18-4.2ubuntu2) ...\nRemoving libmono-2.0-1 (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-2.0-dev (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-cil-dev (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-cairo4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-codecontracts4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving monodoc-base (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-compilerservices-symbolwriter4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-cscompmgd0.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving mono-csharp-shell (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-csharp4.0c-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-custommarshalers4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-data-tds4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-db2-1.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-debugger-soft4.0a-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-http4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-management4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-messaging-rabbitmq4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving referenceassemblies-pcl (2014.04.14-1xamarin7+ubuntu2004b1) ...\nRemoving mono-xbuild (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-microsoft-build-tasks-v4.0-4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-microsoft-build-engine4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-microsoft-build4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-microsoft-visualc10.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-http-webhost4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-mvc3.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving msbuild (1:16.10.1+xamarinxplat.2021.05.26.14.00-0xamarin2+ubuntu2004b1) ...\nRemoving libmono-oracle4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-parallel4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-peapi4.0a-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-profiler (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-rabbitmq4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-relaxng4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-sharpzip4.84-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-simd4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-smdiagnostics0.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-data-datasetextensions4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-data-entity4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-dynamicdata4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-http-selfhost4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-http4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-data-services4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-deployment4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-drawing-design4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-dynamic4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-io-compression-filesystem4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-json-microsoft4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-json4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-ldap-protocols4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-management4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-net-http-formatting4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-net-http-webrequest4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-net4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-numerics-vectors4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-experimental2.2-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-windows-threading2.2-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-debugger2.2-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-windows-forms2.2-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-observable-aliases0.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-providers2.2-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-platformservices2.2-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-linq2.2-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-runtime-remoting2.2-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reflection-context4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-runtime-caching4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-runtime-durableinstancing4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-runtime4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-servicemodel-discovery4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-servicemodel-routing4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-servicemodel-web4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving mono-4.0-service (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-serviceprocess4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-threading-tasks-dataflow4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-abstractions4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-extensions-design4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-extensions4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-mobile4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-webpages-razor2.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-regularexpressions4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-routing4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-windows-forms-datavisualization4.0a-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-windows4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-workflow-activities4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-workflow-componentmodel4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-workflow-runtime4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-xml-serialization4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-tasklets4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-webmatrix-data4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-xbuild-tasks4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving mono-utils (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmonoboehm-2.0-1 (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmonosgen-2.0-dev (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmonosgen-2.0-1 (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libncurses5:amd64 (6.2-0ubuntu2) ...\nRemoving libzmq5:amd64 (4.3.2-2ubuntu1) ...\nRemoving libnorm1:amd64 (1.5.8+dfsg2-2build1) ...\nRemoving libnotify4:amd64 (0.7.9-1ubuntu2) ...\nRemoving libpciaccess0:amd64 (0.16-0ubuntu1) ...\nRemoving libpcre2-posix2:amd64 (10.34-7) ...\nRemoving libpfm4:amd64 (4.10.1+git20-g7700f49-2) ...\nRemoving libpgm-5.2-0:amd64 (5.2.122~dfsg-3ubuntu1) ...\nRemoving libqdbm14 (1.8.78-9build3) ...\nRemoving librabbitmq4:amd64 (0.10.0-1) ...\nRemoving libre2-5:amd64 (20200101+dfsg-1build1) ...\nRemoving libsctp1:amd64 (1.0.18+dfsg-1) ...\nRemoving libsnappy1v5:amd64 (1.1.8-1build1) ...\nRemoving libsnmp-base (5.8+dfsg-2ubuntu2.3) ...\nRemoving libtbb2:amd64 (2020.1-2) ...\nRemoving libtidy5deb1:amd64 (2:5.6.0-11) ...\nRemoving libtinfo-dev:amd64 (6.2-0ubuntu2) ...\nRemoving libtinfo5:amd64 (6.2-0ubuntu2) ...\nRemoving libtommath1:amd64 (1.2.0-3) ...\nRemoving libu2f-udev (1.1.10-1) ...\nRemoving libvpx6:amd64 (1.8.2-1build1) ...\nRemoving libvulkan1:amd64 (1.2.131.2-1) ...\nRemoving libwxbase3.0-0v5:amd64 (3.0.4+dfsg-15build1) ...\nRemoving libx11-xcb1:amd64 (2:1.6.9-2ubuntu1.2) ...\nRemoving libxcb-dri2-0:amd64 (1.14-2) ...\nRemoving libxcb-dri3-0:amd64 (1.14-2) ...\nRemoving libxcb-glx0:amd64 (1.14-2) ...\nRemoving libxcb-present0:amd64 (1.14-2) ...\nRemoving libxcb-shape0:amd64 (1.14-2) ...\nRemoving libxcb-sync1:amd64 (1.14-2) ...\nRemoving libxcb-xfixes0:amd64 (1.14-2) ...\nRemoving libxmlrpc-epi0:amd64 (0.54.2-1.2) ...\nRemoving libxshmfence1:amd64 (1.3-1) ...\nRemoving libxv1:amd64 (2:1.0.11-1) ...\nRemoving libxxf86dga1:amd64 (2:1.1.5-0ubuntu1) ...\nRemoving libz3-dev:amd64 (4.8.7-4build1) ...\nRemoving libz3-4:amd64 (4.8.7-4build1) ...\nRemoving libzip4:amd64 (1.7.3-1+ubuntu20.04.1+deb.sury.org+2) ...\nRemoving mlock (8:2007f~dfsg-7) ...\nRemoving mono-mcs (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving netstandard-targeting-pack-2.1 (2.1.0-1) ...\nRemoving python3-crcmod (1.7+dfsg-2build2) ...\nRemoving python3-pygments (2.3.1+dfsg-1ubuntu2.2) ...\nRemoving shtool (2.0.8-10) ...\nRemoving xserver-common (2:1.20.13-1ubuntu1~20.04.2) ...\nRemoving x11-xkb-utils (7.7+5) ...\nRemoving xul-ext-ubufox (3.4-0ubuntu1.17.10.1) ...\nRemoving libmono-cecil-private-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-webpages2.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-data-linq4.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-core2.2-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-reactive-interfaces2.2-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-razor2.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-system-web-webpages-deployment2.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving libmono-microsoft-web-infrastructure1.0-cil (6.12.0.182-0xamarin1+ubuntu2004b1) ...\nRemoving msbuild-libhostfxr (3.0.0.2019.04.16.02.13-0xamarin4+ubuntu2004b1) ...\nRemoving msbuild-sdkresolver (1:16.10.1+xamarinxplat.2021.05.26.14.00-0xamarin2+ubuntu2004b1) ...\nProcessing triggers for man-db (2.9.1-1) ...\nProcessing triggers for postgresql-common (241.pgdg20.04+1) ...\nBuilding PostgreSQL dictionaries from installed myspell/hunspell packages...\nRemoving obsolete dictionary files:\n  /var/cache/postgresql/dicts/en_us.affix\n  /var/cache/postgresql/dicts/en_us.dict\n  /usr/share/postgresql//14/tsearch_data/en_us.affix\n  /usr/share/postgresql//14/tsearch_data/en_us.dict\nProcessing triggers for libc-bin (2.31-0ubuntu9.9) ...\n\n********************************************************************************\n=\u003e Large misc. packages: Saved 5.3GiB\n********************************************************************************\n\n\n********************************************************************************\n=\u003e Tool cache: Saved 5.9GiB\n********************************************************************************\n\n              total        used        free      shared  buff/cache   available\nMem:          6.8Gi       482Mi       5.0Gi       1.0Mi       1.3Gi       6.0Gi\nSwap:            0B          0B          0B\n\n********************************************************************************\n=\u003e Swap storage: Saved 4.0GiB\n********************************************************************************\n\n\n================================================================================\nAFTER CLEAN-UP:\n\n$ dh -h /\n\nFilesystem      Size  Used Avail Use% Mounted on\n/dev/root        84G   26G   58G  31% /\n$ dh -a /\n\nFilesystem     1K-blocks     Used Available Use% Mounted on\n/dev/root       87218124 26471028  60730712  31% /\n$ dh -a\n\nFilesystem     1K-blocks     Used Available Use% Mounted on\n/dev/root       87218124 26471028  60730712  31% /\ndevtmpfs         3552992        0   3552992   0% /dev\nsysfs                  0        0         0    - /sys\nproc                   0        0         0    - /proc\nsecurityfs             0        0         0    - /sys/kernel/security\ntmpfs            3556564        4   3556560   1% /dev/shm\ndevpts                 0        0         0    - /dev/pts\ntmpfs             711316     1060    710256   1% /run\ntmpfs               5120        0      5120   0% /run/lock\ntmpfs            3556564        0   3556564   0% /sys/fs/cgroup\ncgroup2                0        0         0    - /sys/fs/cgroup/unified\ncgroup                 0        0         0    - /sys/fs/cgroup/systemd\npstore                 0        0         0    - /sys/fs/pstore\nnone                   0        0         0    - /sys/fs/bpf\ncgroup                 0        0         0    - /sys/fs/cgroup/cpuset\ncgroup                 0        0         0    - /sys/fs/cgroup/pids\ncgroup                 0        0         0    - /sys/fs/cgroup/devices\ncgroup                 0        0         0    - /sys/fs/cgroup/hugetlb\ncgroup                 0        0         0    - /sys/fs/cgroup/misc\ncgroup                 0        0         0    - /sys/fs/cgroup/net_cls,net_prio\ncgroup                 0        0         0    - /sys/fs/cgroup/blkio\ncgroup                 0        0         0    - /sys/fs/cgroup/cpu,cpuacct\ncgroup                 0        0         0    - /sys/fs/cgroup/perf_event\ncgroup                 0        0         0    - /sys/fs/cgroup/memory\ncgroup                 0        0         0    - /sys/fs/cgroup/rdma\ncgroup                 0        0         0    - /sys/fs/cgroup/freezer\nsystemd-1              -        -         -    - /proc/sys/fs/binfmt_misc\nhugetlbfs              0        0         0    - /dev/hugepages\nmqueue                 0        0         0    - /dev/mqueue\ndebugfs                0        0         0    - /sys/kernel/debug\ntracefs                0        0         0    - /sys/kernel/tracing\nfusectl                0        0         0    - /sys/fs/fuse/connections\nconfigfs               0        0         0    - /sys/kernel/config\n/dev/loop0         63488    63488         0 100% /snap/core20/1518\n/dev/loop1         69504    69504         0 100% /snap/lxd/22753\n/dev/loop2         48128    48128         0 100% /snap/snapd/16010\n/dev/sda15        106858     5321    101537   5% /boot/efi\nbinfmt_misc            0        0         0    - /proc/sys/fs/binfmt_misc\n/dev/sdb1       14382088    40988  13590816   1% /mnt\ntmpfs             711316     1060    710256   1% /run/snapd/ns\nnsfs                   0        0         0    - /run/snapd/ns/lxd.mnt\n================================================================================\n\n\n/dev/root:\n\n********************************************************************************\n=\u003e Saved 27GiB\n********************************************************************************\n\noverall:\n\n********************************************************************************\n=\u003e Saved 31GiB\n********************************************************************************\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjlumbroso%2Ffree-disk-space","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjlumbroso%2Ffree-disk-space","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjlumbroso%2Ffree-disk-space/lists"}