-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
100 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## ---------------------------- | ||
## Doc Config File for the DB Assembly | ||
## ---------------------------- | ||
## | ||
## Basics | ||
MAIN="toolbox-container.asm.xml" | ||
SRC_DIR="articles" | ||
|
||
## Profiling | ||
PROFOS="slmicro" | ||
#PROFARCH="x86_64;zseries;power;aarch64" | ||
|
||
## stylesheet location | ||
STYLEROOT="/usr/share/xml/docbook/stylesheet/suse2022-ns" | ||
FALLBACK_STYLEROOT="/usr/share/xml/docbook/stylesheet/suse2021-ns" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,23 +8,23 @@ | |
<!-- point back to this document with a similar comment added to your legacy doc piece --> | ||
<!-- refer to README.md for file and id naming conventions --> | ||
<!-- metadata is dealt with on the assembly level --> | ||
<topic xml:id="toolbox-usage" | ||
<topic xml:id="toolbox-starting-container" | ||
role="task" xml:lang="en" | ||
xmlns="http://docbook.org/ns/docbook" version="5.2" | ||
xmlns:its="http://www.w3.org/2005/11/its" | ||
xmlns:xi="http://www.w3.org/2001/XInclude" | ||
xmlns:xlink="http://www.w3.org/1999/xlink" | ||
xmlns:trans="http://docbook.org/ns/transclusion"> | ||
<info> | ||
<title>Using <literal>toolbox</literal></title> | ||
<title>Starting <literal>toolbox</literal></title> | ||
<!-- can be changed via merge | ||
in the assembly --> | ||
<!-- add author's e-mail --> | ||
<meta name="maintainer" content="[email protected]" its:translate="no"/> | ||
<abstract> | ||
<!-- can be changed via merge in the assembly --> | ||
<para> | ||
The topic describes how to use the <literal>toolbox</literal> utility. | ||
The topic describes how to start the <literal>toolbox</literal> utility. | ||
</para> | ||
</abstract> | ||
</info> | ||
|
@@ -47,7 +47,5 @@ | |
image and start a container based on that image. | ||
</para> | ||
</note> | ||
<para> | ||
When | ||
</para> | ||
|
||
</topic> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- This file originates from the project https://github.com/openSUSE/doc-kit --> | ||
<!-- This file can be edited downstream. --> | ||
<!DOCTYPE topic | ||
[ | ||
<!ENTITY % entities SYSTEM "../common/generic-entities.ent"> | ||
%entities; | ||
]> | ||
<!-- refers to legacy doc: <add github link to legacy doc piece, if applicable> --> | ||
<!-- point back to this document with a similar comment added to your legacy doc piece --> | ||
<!-- refer to README.md for file and id naming conventions --> | ||
<!-- metadata is dealt with on the assembly level --> | ||
<topic xml:id="toolbox-usage" | ||
role="task" xml:lang="en" | ||
xmlns="http://docbook.org/ns/docbook" version="5.2" | ||
xmlns:its="http://www.w3.org/2005/11/its" | ||
xmlns:xi="http://www.w3.org/2001/XInclude" | ||
xmlns:xlink="http://www.w3.org/1999/xlink" | ||
xmlns:trans="http://docbook.org/ns/transclusion"> | ||
<info> | ||
<title>Using <literal>toolbox</literal></title><!-- can be changed via merge | ||
in the assembly --> | ||
<!-- add author's e-mail --> | ||
<meta name="maintainer" content="jsindelarova@suse/com" its:translate="no"/> | ||
<abstract><!-- can be changed via merge in the assembly --> | ||
<para> | ||
The topic covers installation of packages and where <literal>toolbox</literal> is mounted. | ||
</para> | ||
</abstract> | ||
</info> | ||
<para> | ||
In the toolbox container, you | ||
can install any tool you want with <command>zypper</command> and then use the | ||
tool without rebooting your system. | ||
</para> | ||
<para> | ||
As <literal>toolbox</literal> is statelful, you need to remove the container to start a clean | ||
one. To do so, run: | ||
</para> | ||
<screen>&prompt.sudo;podman rm toolbox-<replaceable>USER</replaceable></screen> | ||
<para> | ||
For example, for the &rootuser; user: | ||
</para> | ||
<screen>&prompt.sudo;podman rm toolbox-root</screen> | ||
</topic> |