D
Deleted member 63539
Guest
Some new users bashed FreeBSD's pkg too much. It could be because they come from Linux and were used to the Linux way. As a Linux user (Debian) migrated to FreeBSD, I found FreeBSD's pkg to be reliable. Compared to its Linux counterparts, I would say it's really reliable. I'm impressed because of it cleanness:
e.g: try to install libreoffice:
e.g: try to install libreoffice:
doas pkg install libreoffice
, then remove it: doas pkg remove libreoffice
, then remove the leftovers: doas pkg autoremove
. You would see all of the leftovers being removed. This is not the case on Linux, as packages installed as dependency could depend on each others, so even if you uninstalled libreoffice with sudo apt purge libreoffice
, when running sudo apt autoremove
you would never have all of the leftovers removed as with FreeBSD's pkg. After a while you littered your system too much and the only solution is a clean reinstall. This is also one of the reason why we, Linux users, embraced containers like docker very much, because they helped us not to litter our system!