From 9562ba37b8a879c8bc4e65de492e73638f1157c5 Mon Sep 17 00:00:00 2001 From: Eric Turgeon <4249848+ericbsd@users.noreply.github.com> Date: Thu, 15 Aug 2024 20:37:27 -0300 Subject: [PATCH 1/2] Update dev tool FAQ.md This is related to https://github.com/ghostbsd/issues/issues/167 --- source/user/FAQ.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/user/FAQ.md b/source/user/FAQ.md index 4a0a8da..d04e2e4 100644 --- a/source/user/FAQ.md +++ b/source/user/FAQ.md @@ -84,8 +84,8 @@ To upgrade GhostBSD, use the Update Station. It was made to upgrade GhostBSD pro ### Why can't I compile code or ports on GhostBSD? -GhostBSD does not come with **os-generic-userland-devtools** preinstall anymore. To enable the capability to compile code and ports install **os-generic-userland-devtools**. +GhostBSD no longer comes with dev tools preinstalled. To enable the capability to compile code and ports, install all GhostBSD*dev packages using the following command. ``` -sudo pkg install os-generic-userland-devtools -``` \ No newline at end of file +sudo pkg install -g 'GhostBSD*-dev' +``` From 3577d2d49d699ffeb72003c781a8036e09accdae Mon Sep 17 00:00:00 2001 From: Eric Turgeon <4249848+ericbsd@users.noreply.github.com> Date: Thu, 15 Aug 2024 20:40:49 -0300 Subject: [PATCH 2/2] Update source/user/FAQ.md Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> --- source/user/FAQ.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/user/FAQ.md b/source/user/FAQ.md index d04e2e4..f1076f4 100644 --- a/source/user/FAQ.md +++ b/source/user/FAQ.md @@ -84,7 +84,9 @@ To upgrade GhostBSD, use the Update Station. It was made to upgrade GhostBSD pro ### Why can't I compile code or ports on GhostBSD? -GhostBSD no longer comes with dev tools preinstalled. To enable the capability to compile code and ports, install all GhostBSD*dev packages using the following command. +GhostBSD no longer comes with development tools preinstalled. To enable the capability to compile code and ports, install the GhostBSD*-dev packages. These packages include essential build tools, compilers, and libraries necessary for software development. Use the following command to install them: + +pkg install ghostbsd-devel ``` sudo pkg install -g 'GhostBSD*-dev'