Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs (toolbox) : Corrected Toolbx | Toolbox spelling error? #554

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions modules/ROOT/pages/debugging-with-toolbox.adoc
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
= Debugging with Toolbx
= Debugging with Toolbox

The FCOS image is kept minimal by design to reduce the image size and the
attack surface. This means that it does not include every troubleshooting tools
that a normal OS may include. Instead, the recommended approach is to leverage
containers with the https://containertoolbx.org/[toolbox] utility
included in the image.

== What is Toolbx?
== What is Toolbox?

Toolbx is a utility that allows you to create privileged containers meant to
Toolbox is a utility that allows you to create privileged containers meant to
debug and troubleshoot your instance. It is a wrapper around podman which
starts long running containers with default mounts and namespaces to facilitate
debugging the host system.

These containers can then be used to install tools that you may need for
troubleshooting.

== Using Toolbx
== Using Toolbox

You can create a new toolbox by running the command below. On the first run,
this will ask you if you want to use the image
Expand Down Expand Up @@ -63,6 +63,6 @@ from the host with the following command.
toolbox rm --force fedora-toolbox-35
----

NOTE: Toolbx allows you to create toolboxes with your custom
NOTE: Toolbox allows you to create toolboxes with your custom
images. You can find more details in the
https://github.com/containers/toolbox/tree/main/doc[toolbox manpages].