Skip to content

Commit 2d7f2a2

Browse files
im-AbhiPAtturu
authored andcommitted
Added uninstallation pre-reqs and steps.
1 parent 337eb97 commit 2d7f2a2

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

docs/container-runtime/quick-start-guide.rst

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ Quick Start Guide
33

44
This section provides a step-by-step guide to install the AMD Container Toolkit and configure your system for Docker-based GPU container workloads. The steps below are tailored for ease of use, production-readiness, and ensuring compatibility across AMD Instinct GPU-enabled systems.
55

6+
Prerequisites
7+
-------------
8+
9+
Before installing the AMD Container Toolkit, ensure the following dependencies are installed:
10+
11+
1. **jq** - Required during uninstallation to parse configuration settings cleanly.
12+
13+
.. code-block:: bash
14+
15+
sudo apt-get install jq
16+
617
Step 1: Install System Prerequisites
718
------------------------------------
819
- Update your system:
@@ -109,3 +120,35 @@ Step 5: Configure Docker Runtime for AMD GPUs
109120
sudo systemctl restart docker
110121
111122
This configuration ensures that Docker is aware of the AMD container runtime and is able to support GPU-accelerated workloads using AMD Instinct devices.
123+
124+
Uninstallation Guide
125+
--------------------
126+
127+
To remove the `amd-container-toolkit`, you must have `jq` installed. The uninstallation script relies on it to parse configuration files.
128+
129+
.. code-block:: bash
130+
131+
sudo apt-get install jq
132+
133+
Then proceed with the removal:
134+
135+
.. code-block:: bash
136+
137+
sudo apt-get remove --purge amd-container-toolkit
138+
139+
If you encounter issues, inspect the logs:
140+
141+
.. code-block:: bash
142+
143+
sudo journalctl -u apt
144+
145+
sudo tail -f /var/log/amd-container-runtime.log
146+
147+
148+
If you continue to face errors, you may need to force the removal:
149+
150+
.. code-block:: bash
151+
152+
sudo dpkg --remove --force-all amd-container-toolkit
153+
154+
sudo apt-get autoremove

0 commit comments

Comments
 (0)