It seems to me that the reason for using PC-BSD is to get a whole bunch of packages and have them work. I can't see having that without it being "bloat" to some people. FreeBSD fixes that problem. IMHO, we can't have it both ways.
I can't advise you on the wisdom of uninstalling specific packages, but the
handbook tells you what you need. Here is how to uninstall a pkg:
You need to type the whole name with version number when you uninstall. That is because there could be multiple versions of some programs. That situation is obviously no problem when installing. So, to find the version number you type:
|
Code:
|
$ pkg_info | grep vim |
The output will give you the whole name. It will look something like this:
|
Code:
|
vim-7.2.411 Vi "workalike", with many additional features |
You can then do:
|
Code:
|
$ pkg_delete vim-7.2.411 |
PS: I suggest you bookmark
The Handbook. It has most of what we all need to know.