In this post we will install openWebUI on Ubuntu 22.04 and configure it to act as the front end for Ollama (which is already running locally).
Note that we are not going to be using containers, rather we will install and run OpenWebUI as a service, much as we did with Ollama in a previous post.
Open-WebUI should be listening on port 8080 on all interfaces. We can see this when we start it manually as we did above.
INFO: Uvicorn running on http://0.0.0.0:8080 (Press CTRL+C to quit)
Now restart via systemd to ensure everything is up and running nice and clean.
$ sudo systemctl status open-webui.service
Logging into the WebUI
Open a browser window and navigate to the IP address of your system. Or if running locally you can use the loopback address (127.0.0.1). Note you may need to allow port 8080 via ufw if attempting to access from a remote host.
Start by selecting “Get Started”
Create a local admin account
OpenWebUI should automatically detect your installation of ollama and allow you to load any downloaded model.
Testing with A Newly Installed Model
Lets pull a new model and make sure that OpenWebUI makes the new model available.
$ sudo ollama pull smollm
After refreshing our browser window, we can now see that the smolln model is available.
This 2 part guide is written specifically for those who are just getting started with Ollama. Note that I originally wrote this post with the Nvidia Jetson Orin Nano in mind, as that is where I was initially running Olama… in part 2 I switch to something more powerful.
That being said, the information below regarding installing Ollama and pulling a model is not specific to the Jetson and should work for anyone who wants to get started quickly with Ollama. Also worth noting that in this quick start guide we are installing ollama as a service, not as a container, as you would do if using jetson-containers [1]
Installing ollama
Use the command below to install ollama.
$ sudo curl -fsSL https://ollama.com/install.sh | sh
The install script downloads ollama, required Jetpack 6 components (on Jetson Devices), creates the ollama user, creates an api endpoint, and enables & starts the ollama service.
$ sudo curl -fsSL https://ollama.com/install.sh | sh
>>> Installing ollama to /usr/local
>>> Downloading Linux arm64 bundle
######################################################################## 100.0%
>>> Downloading JetPack 6 components
######################################################################## 100.0%
>>> Creating ollama user...
>>> Adding ollama user to render group...
>>> Adding ollama user to video group...
>>> Adding current user to ollama group...
>>> Creating ollama systemd service...
>>> Enabling and starting ollama service...
Created symlink /etc/systemd/system/default.target.wants/ollama.service → /etc/systemd/system/ollama.service.
>>> NVIDIA JetPack ready.
>>> The Ollama API is now available at 127.0.0.1:11434.
>>> Install complete. Run "ollama" from the command line.
Run the command below to test functionality and verify installed version of ollama.
$ ollama --version
ollama version is 0.5.7
Configure ollama to Listen on all Interfaces
By default ollama listens on 127.0.0.1. If you want to configure it to listen on all interfaces so that you can interact with it remotely, you will need to modify the service configuration as shown below.
Test connectivity from a remote host using telnet.
$ telnet 10.1.10.11 11434
Configure Alternative Download Directory For Ollama Models
Obviously this step is optional, but you can set the download directory if wanted with the parameter below. Apparently the default location is “~/.ollama/models”
Let’s config successful download and install with “ollama list“
$ ollama list
NAME ID SIZE MODIFIED
llama2:7b 78e26419b446 3.8 GB 3 minutes ago
Interacting with Ollama via the CLI
You can interact with Ollama (and the loaded model) via the CLI in one of two ways.
Predefined Prompt
Interactive Mode
Via Predefined Prompt
In this mode, you call the model and pass the prompt in one step
~$ ollama run llama2:7b "Tell me about the Nvidia Jetson Orin Nano"
Interactive Mode
ollama run llama2:7b
A Wild Error Appears
While attempting to run an interactive session, we see that the ollma runner process was terminated
~$ ollama run llama2:7b
Error: llama runner process has terminated: signal: killed
Let’s watch the output of journalctl and watch for errors as we try again
sudo journalctl -f -u ollama.service
While watching journalctl we see the following
Feb 02 17:21:26 jetson.lab ollama[2306]: time=2025-02-02T17:21:25.650-05:00 level=WARN source=server.go:562 msg="client connection closed before server finished loading, aborting load"
Feb 02 17:21:26 jetson.lab ollama[2306]: time=2025-02-02T17:21:25.668-05:00 level=ERROR source=sched.go:455 msg="error loading llama server" error="timed out waiting for llama runner to start: context canceled"
Feb 02 17:21:26 jetson.lab ollama[2306]: [GIN] 2025/02/02 - 17:21:25 | 499 | 4.679059726s | 127.0.0.1 | POST "/api/generate"
Feb 02 17:21:26 jetson.lab systemd[1]: ollama.service: Failed with result 'oom-kill'.
Apparently we are getting “oom-killed“.
Lets watch free memory while we execute “ollama run” again. We will “watch” free -m
watch -d -n 1 free -m
We can see free memory drop to about 500mb, which may or may not be enough to run the rest of the system. When ollama is not running we have about 2485MB of free memory (shown below)
$ free -m
total used free shared buff/cache available
Mem: 3601 940 2485 0 176 2483
Swap: 1800 338 1462
So we have a few options
Attempt to reduce the amount of free memory available to Ollama (lets try)
Tune ollama to attempt to use less memory (might be possible)
Modify oom-killer behavior (probably a bad idea)
Change to a lighter weight model (best idea)
Freeing up System Memory
Lets disable the Desktop GUI in ubuntu and see what that buys us in free memory. Note that you can probably just skip this section as I eventually move to a smaller model, but there is some good troubleshooting information here for those new to Linux.
# sudo systemctl set-default multi-user.target
And now immediately move to cli mode without reboot
$ sudo init 3
Output from ‘free -m” has not changed.
$ sudo free -m
total used free shared buff/cache available
Mem: 3601 859 2402 4 339 2554
Swap: 1800 164 1636
We will reboot just in case…. ok that is a tiny bit better
$ sudo free -m
total used free shared buff/cache available
Mem: 3601 458 2709 18 433 2938
Swap: 1800 0 1800
Now lets see if we can find a few services that we do not need, and stop and disable them.
Then reboot. Once back up and running a cursory check of “free -m” shows that our efforts were mostly in vain. Lets try another model
So this time we are going with a small model to test basic functionality and see if we are still running into oom errors.
ollama pull tinyllama
Ok much better…
~$ ollama run tinyllama
>>> Send a message (/? for help)
Lets check memory, and see how much headroom we have… Its not a lot
~$ free -m
total used free shared buff/cache available
Mem: 3601 1835 924 0 841 1575
Swap: 1800 147 1653
Inspecting System Utilization
For this step we are going to use a couple of tools, most of which are custom to the Jetson.
First we launch jtop [2]. And n another terminal windows, we load up the tinylama model and enter our prompt. While ollama is working, we watch observe jtop.
So our prompt goes…
can you tell me the history of the company Digital and their line of PDP computers
Certainly! The company Digital was founded in England in 1963 by two college students, John Cocking and Michael Kearns. They were inspired to start a computer company after
witnessing the emergence of the personal digital assistant (PDA) market, which had been dominated by smaller, less advanced companies such as Acorn Computers and Marmalade.....trunc...
While this is running we are watching jtop. Below we can see that our GPU is at 80% load and at times approached 100%. Memory usage is high, and CPU utilization is low.
Measuring Tokens Per Second
This seems to be the measurement that many use to determine how fast their machine is, so lets give it a try. To output tokens per second we add the “–verbose” flag.
~$ ollama run tinyllama --verbose "Can you tell me as much as you know about the Dell T620 Server"
I get a 6 bullet list that is almost completely incorrect. What exactly is a DelT620? And no the T620 was intel xeon powered, not powered by AMD’s EPYC 7551 processor. But that does not matter, what comes next is what we are looking for.
total duration: refers to the total time taken for the entire process of generating a response. This includes all stages such as: – Model Loading: If model isn’t already loaded into memory, this ime accounts for loading it. – Tokenization: Converting input text into tokens that the model can process. – Inference Time: The time spent by the model generating the response token by token. – Post-processing: Any steps taken after generation, such as formatting the output. – Communication Overhead: Time spent handling requests and responses, especially if running in a client-server setup.
load duration
1.246583429s
load duration: refers to the amount of time spent loading the model into memory before it can start processing input. This step includes: – Model Retrieval: If the model is not already cached in memory, Ollama retrieves it from disk or another source. – Model Initialization: Preparing the model, including loading weights into VRAM (if using a GPU) or RAM (if running on a CPU). – Graph Compilation (if applicable): Some backends may optimize or compile the model for execution. – Memory Allocation: Ensuring that enough memory is available for inference.
prompt eval count
52 token(s)
prompt eval count: refers to the number of tokens that were processed (evaluated) from the initial prompt before the model starts generating a response. Breakdown: – Prompt Tokens: Before the model generates any output, it first processes (evaluates) the input text (prompt). – Evaluation: The model tokenizes the input text and processes these tokens through its neural network. – Count Meaning: This number represents how many tokens were in the prompt that the model had to evaluate before responding.
prompt eval duration
283ms
“prompt eval duration” refers to the total time taken to process (evaluate) the input prompt before the model begins generating a response. Breakdown: – Tokenization: The input text is broken down into tokens that the model can process. – Model Inference on Prompt Tokens: The model evaluates these tokens, passing them through its neural network layers to set up the internal context. – Context Initialization: The model updates its internal state based on the prompt before starting to generate output.
prompt eval rate
183.75 tokens/s
prompt eval rate” refers to the speed at which the model processes the tokens from the input prompt. Measured in tokens per second (tokens/sec) where prompt-eval-rate = prompt eval count/prompt eval duration
eval count
464 tokens/s
“eval count” refers to the total number of tokens that were processed during the generation phase—i.e., the number of new tokens the model generated as output.
eval duration
24.354s
“eval duration” refers to the total time taken for the model to generate its response, measured from the moment it starts producing tokens until it finishes.
eval rate
19.05 tokens/s
“eval rate” refers to the speed at which the model generates tokens during the response phase. It is typically measured in tokens per second (tokens/sec). – eval_count / eval_duration = eval rate
Customizing Model Behavior
You can customize how the model responds with the set command. For example, lets say I want to tell the model to respond to me as if it were a child
$ ollama run tinyllama
>>> /set system For any question asked can you respond as if you were a child, using only small words, short sentences, and lacking any specific technical details or jargon
Set system message.
>>> /save kid2
Created new model 'kid2'
>>> /bye
Then we load the replicated model.
~$ ollama run kid2
>> what was the US civil war about
The United States Civil War was fought between the Union and Confederate states over whether the union should remain intact as a single nation or become a separate nation known
as the Confederate States of America. The war began in April 1861 after President Abraham Lincoln announced that he would veto any bill to abolish the constitutional right to
secession unless Congress passed a similar law.
As the war progressed, each side unleashed their forces on the other and suffered significant losses. The north won major victories in the first year of the war, but southern
states began withdrawing from the union due to economic hardship, making it necessary for Lincoln to appeal to them with a proposal to call off fighting and establish a
government in the south. In response, the Confederate army launched its own attack on April 12, 1865, which led to Lincoln's assassination a few months later. The US civil war
was one of the most devastating conflicts in world history, causing significant destruction to both sides and leaving millions dead or wounded.
Ok, so that was not exactly child-like, however this is probably the fault of the model that I am using. Lets see if I can coax it to answer the question differently.
>> /set system For any question asked can you respond as if you were a scholar, using a large vocabulary of diverse words. Be very specific in your responses and provide colorful deta
... ils
Set system message.
>>> what was the US civil war about
The United States Civil War was fought between the Union and Confederate states over whether the union should remain intact as a single nation or become a separate nation known
as the Confederate States of America. The war began in April 1861 after President Abraham Lincoln announced that he would veto any bill to abolish the constitutional right to
secession unless Congress passed a similar law.
The main cause of the war was the belief by some members of the southern states that they had been wronged and mistreated by the federal government, as well as a desire for
self-determination and statehood. The north won major victories in the first year of the war, but southern states began withdrawing from the union due to economic hardship,
making it necessary for Lincoln to appeal to them with a proposal to call off fighting and establish a government in the south. In response, the Confederate army launched its own
attack on April 12, 1865, which led to Lincoln's assassination a few months later. The US civil war was one of the most devastating conflicts in world history, causing
significant destruction to both sides and leaving millions dead or wounded.
Ok so not great, but again probably the model. Anyway you get the point. I’ll try this again with a different model in the near future of one of my more powerful servers/
Removing a Model
Remove a model with the “rm” switch. See below
~$ ollama list
NAME ID SIZE MODIFIED
kid2:latest ca8452f00cd5 637 MB 2 hours ago
kid:latest ce8e59f0d306 637 MB 2 hours ago
tinyllama:latest 2644915ede35 637 MB 3 hours ago
llama2:7b 78e26419b446 3.8 GB 5 hours ago
cpaquin@jetson:~$ ollama rm kid:latest kid2:latest llama2:7b
deleted 'kid:latest'
deleted 'kid2:latest'
deleted 'llama2:7b'
Training a Model
Most available models operate pretty well when you are asking them about information that they have been trained on. Above you can see that the tinyllama model has not been trained properly to even remotely respond as if it was a child. In order to do that, the model would need to be trained.
So lets train tinyllama. Keep in mind that these models have short-term memory constraints, meaning they only retain training data during an active conversation. Once you close the session and start a new one, the model will not remember any information from the previous interaction. To overcome the short-term memory limitation, one would need a backend database or some form of persistent storage, which would you to save and retrieve relevant information across sessions. Depending on your needs, you could use:
Relational Databases (SQL) – MySQL, PostgreSQL, or SQLite for structured data.
NoSQL Databases – MongoDB, Redis, or Firebase for more flexible storage.
Vector Databases – Pinecone, FAISS, or ChromaDB for storing embeddings in AI applications.
File Storage – JSON, CSV, or other formats for lightweight persistence.
The backend system could then integrate with the AI model, fetching and updating information as needed, effectively giving it “memory” beyond a single session. More about this later. For now let’s “teach” tiny llama about Star Trek. Specifically, I prompted the model with this question, and its response was incomplete.
>>> do you know about any of the star trek tv shows
Certainly! Here are some popular Star Trek TV shows:
1. Star Trek: The Original Series (1966-1968)
2. Star Trek: The Next Generation (1987-1994)
3. Star Trek: Deep Space Nine (1993-1999)
4. Star Trek: Voyager (1995-2001)
5. Star Trek: Enterprise (2001-2005)
6. Star Trek: Discovery (2017-)
I then made sure that was all the data it had on Star Trek TV shows.
>>> is that all the star trek shows
Yes, that's all the Star Trek TV series I could find.
And we are off to the races! Here is what I “taught” the model
Let me tell you about some other Start trek TV shows that you are unaware of. Star Trek: The Animated Series premiered in 1972 and ran for 2 seasons, it featured the same character
... s that appeared Star Trek: The Original Series. Star Trek: Lower Decks premiered in 2020 and ran for 5 seasons. Sadly it was recently cancelled. It was an animated show which was
... comedic in nature, often making fun of the tropes features throughout the other Star Trek shows and movies. Star Trek: Prodigy premiered in 2021 and ran for 2 seasons, it was an an
... animated show that originally aired on the kids station Nickelodeon. It was geared towards children, but was still fun for adults to watch as well. Especially with their children.
... Star Trek: Strange New Worlds premiered in 2022 and has been running for 2 seasons, a third season is on its way. This show takes place on the starship Enterprise, but before Capta
... in Kirk was in command. The Captain, is Captain Pike, who was a character originally introduced in the 2 part pilot episode of the Original Series. Would you like to know more about star trek?
Here we are witnessing what is called a hallucination which is when an artificial intelligence (AI) model generates an incorrect or misleading output.
We do see that the model does now know about Star Trek: Strange New Worlds, but it basically made up the plot. There is no Captain Alex Danforth anywhere on google, and I have never heard of the U.S.S Explorer. Ava Acres is a real actor, but has nothing to do with Star Trek. James Frain played Sarek in Star Trek Discovery, so at least he is associated with the series. The model did remember that I mentioned a Star Trek show that aired on Nickelodeon, and got the series dates correct, but associated it with a completely made up show.
Fascinating…
>>> Tell me about Star Trek: Strange New Worlds
Yes, I do have more information on Star Trek: Stragrg New Worlds. This is a science fiction TV show that originally aired on Nickelodeon between 2021 and 2023. It's set in the
same universe as Star Trek: Lower Decks, but takes place in the 25th century.
The show follows the crew of the U.S.S. Explorer, a new ship that was built specifically for this mission. The crew is made up of Captain Alex Danforth (played by James Frain),
First Officer Renee "Ren" Dahla (played by Ava Acres), and Engineer Jesse Johnson (played by David Hewison).
The Explorer has been sent to explore a new planet that's rich in resources. The crew encounters various alien species, including a group of intelligent, hostile beings who have
been observing their activities for some time.
The show is filled with action and adventure as the Explorer faces numerous challenges on its mission. It also explores themes such as colonialism, power dynamics, and
responsibility to others. The show's premise may seem familiar to Star Trek fans, but it features new characters and a fresh take on the classic series universe.
If you enjoy Nickelodeon-style science fiction and have enjoyed Star Trek: Lower Decks, then I think you will enjoy Star Trek: Stragrg New Worlds.
Below are all the methods that I have found to either find your Jetson OS version, or your Jetpack version (which includes Jetson OS version, Ubuntu version, CUDA Version, NVIDIA drivers, and firmware).
First let’s review the matrix and see how JetsonOS Maps to JetPack version (along with Ubuntu version, CUDA version, and releasedate)
Note:
Nano: supported through JetPack 4.6.x
Xavier: supported through JetPack 5.1.x
Orin: required for JetPack 6.x and newer
L4T
JetPack
Ubuntu
CUDA
Release Date
Release Type
Devices
Support State
Prod Ready?
39.2
7.2
24.04
13.2.1
Jun 2026
Prod
Orin, Thor/T5000/T4000
Active
Orin: Preferred / Thor: Preferred
38.4
7.1
24.04
13.x
Jan 2026
Prod
Thor/T5000/T4000
Active
Thor: Yes / Orin: No
38.2 / 38.2.1
7
24.04
13.x
Aug 2025
Prod
Thor/T5000
Active
Thor: Yes / Orin: No
36.5.0
6.2.2
22.04
12.6
2025
Prod
Orin
Maintenance
Orin: Stable fallback
36.4.4
6.2.1
22.04
12.6
Jun 2025
Prod
Orin
Maintenance
Orin: Yes
36.4.3
6.2
22.04
12.6
Early 2025
Prod
Orin
Maintenance
Orin: Yes
36.4.0
6.1
22.04
12.6
Sep 2024
Prod
Orin
Maintenance
Orin: Acceptable
36.3.0
6
22.04
12.2
May 2024
Prod
Orin
Sustaining
No
36.2.0
6.0 DP
22.04
12.2
Dec 2023
DP
Orin
DP
No
35.6.4
5.1.6
20.04
11.8
Feb 2026
Prod
Xavier, Orin
Sustaining
Xavier: Preferred / Orin: Legacy fallback
35.6.2
5.1.5
20.04
11.8
Mar 2024
Prod
Xavier, Orin
Sustaining
Xavier: Yes
35.6.1
5.1.5
20.04
11.8
Jan 2024
Prod
Xavier, Orin
Sustaining
Xavier: Yes
35.6.0
5.1.4
20.04
11.4
Dec 2023
Prod
Xavier, Orin
Sustaining
Xavier: Acceptable
35.5.0
5.1.3
20.04
11.4
Sep 2023
Prod
Xavier, Orin
Sustaining
No
35.4.1
5.1.2
20.04
11.4
May 2023
Prod
Xavier, Orin
Sustaining
No
35.3.1
5.1.1
20.04
11.4
Feb 2023
Prod
Xavier, Orin
Sustaining
No
35.2.1
5.1
20.04
11.4
Aug 2022
Prod
Xavier, Orin
Sustaining
No
35.1.0
5.0.2
20.04
11.4
Jun 2022
Prod
Xavier
Sustaining
No
34.1.1
5.0.1 DP
20.04
11.4
Apr 2022
DP
Xavier
DP
No
34.1.0
5.0 DP
20.04
11.4
Mar 2022
DP
Xavier
DP
No
32.7.6
4.6.6
18.04
10.2
Nov 2024
Prod
Nano, TX1, TX2, Xavier
EOL
Nano: Final supported
32.7.5
4.6.5
18.04
10.2
Jun 2024
Prod
Nano, TX1, TX2, Xavier
EOL
No
32.7.4
4.6.4
18.04
10.2
2024
Prod
Nano, TX1, TX2, Xavier
EOL
No
32.7.3
4.6.3
18.04
10.2
Dec 2022
Prod
Nano, TX1, TX2, Xavier
EOL
No
32.7.2
4.6.2
18.04
10.2
Aug 2022
Prod
Nano, TX1, TX2, Xavier
EOL
No
32.7.1
4.6.1
18.04
10.2
May 2022
Prod
Nano, TX1, TX2, Xavier
EOL
No
32.6.1
4.6
18.04
10.2
Nov 2021
Prod
Nano, TX1, TX2, Xavier
EOL
No
32.5.2
4.5.1
18.04
10.2
Jul 2021
Prod
Nano, TX1, TX2, Xavier
EOL
No
32.5.1
4.5.1
18.04
10.2
Jun 2021
Prod
Nano, TX1, TX2, Xavier
EOL
No
32.5.0
4.5
18.04
10.2
Jan 2021
Prod
Nano, TX1, TX2, Xavier
EOL
No
32.4.4
4.4.1
18.04
10.2
Oct 2020
Prod
Nano, TX2, Xavier
EOL
No
32.4.3
4.4
18.04
10.2
Jul 2020
Prod
Nano, TX2, Xavier
EOL
No
32.4.2
4.4 DP
18.04
10.2
May 2020
DP
Nano, TX2, Xavier
DP
No
32.3.1
4.3
18.04
10
Dec 2019
Prod
Nano, TX2, Xavier
EOL
No
32.2.3
4.2.3
18.04
10
Sep 2019
Prod
Nano, TX2, Xavier
EOL
No
32.2.1
4.2.2
18.04
10
Jul 2019
Prod
Nano, TX2, Xavier
EOL
No
32.2.0
4.2.1
18.04
10
Jun 2019
Prod
Nano, TX2, Xavier
EOL
No
32.1.0
4.2
18.04
10
Mar 2019
Prod
Nano, TX2, Xavier
EOL
No
31.1.0
4.1.1
18.04
10
Nov 2018
Prod
TX1, TX2
EOL
No
31.0.2
4.1
18.04
10
Oct 2018
Prod
TX1, TX2
EOL
No
31.0.1
4
18.04
9
Sep 2018
Prod
TX1, TX2
EOL
No
28.4.0
3.3.3
16.04
9
May 2019
Prod
TX1, TX2
EOL
No
28.2.1
3.3 / 3.2.1
16.04
9
Feb 2018
Prod
TX1, TX2
EOL
No
28.2.0
3.2
16.04
9
Dec 2017
Prod
TX1, TX2
EOL
No
28.1.0
3.1
16.04
8
Oct 2017
Prod
TX1
EOL
No
27.1.0
3
16.04
8
Mar 2017
Prod
TX1
EOL
No
24.2.1
3.0 / 2.3.1
16.04
7
Dec 2016
Prod
TK1, TX1
EOL
No
24.2.0
2.3
16.04
7
Sep 2016
Prod
TK1, TX1
EOL
No
24.1.0
2.2 / 2.2.1
16.04
7
Jun 2016
Prod
TK1, TX1
EOL
No
23.2.0
2.1
16.04
6.5
Mar 2016
Prod
TK1
EOL
No
23.1.0
2
16.04
6.5
Jan 2016
Prod
TK1
EOL
No
21.5.0
2.3 / 2.3.1
14.04
6.5
Oct 2015
Prod
TK1
EOL
No
21.4.0
2.2 / 2.1 / 2.0 / 1.2 DP
14.04
6.5
Jun 2015
Mixed
TK1
EOL
No
21.3.0
1.1 DP
14.04
6
Apr 2015
DP
TK1
DP
No
21.2.0
1.0 DP
14.04
6
Feb 2015
DP
TK1
DP
No
Jetson Linux (L4T) / JetPack Version Matrix (Unified)
With Support Status and Recommended Baselines
Commands to Find your Jetpack/Jetson OS Version
This is not an extensive list, but its what I have used in the past
NVIDIA NVIDIA Jetson Orin NX Engineering Reference Developer Kit
L4T 36.4.3 [ JetPack UNKNOWN ]
Ubuntu 22.04.5 LTS
Kernel Version: 5.15.148-tegra
CUDA NOT_INSTALLED
CUDA Architecture: 8.7
OpenCV version: 4.5.4
OpenCV Cuda: NO
CUDNN: ii libcudnn9
TensorRT: NOT_INSTALLED
Vision Works: NOT_INSTALLED
VPI: NOT_INSTALLED
Vulcan: 1.3.204
L4T 36.4.3 is part of Jetpack 6.2, looks like the repo has not been updated since 2021 which is why Jetpack 6.2 is not recognized (also missing installed TensorRT). See section below for Jetson OS to Jetpack Version mapping
Per the git-repo
The hardware designator is derived from the file: ‘/proc/cpuinfo’
The L4T version is derived from the file: ‘/etc/nv_tegra_release’
The Ubuntu version is derived from the file: ‘/etc/os-release’
The Linux kernel version is derived from the file: ‘/proc/version’
Via /etc/nv_tegra_release
Below in bold you can see the Jetson OS release and revision.
# cat /etc/nv_tegra_release
# R36 (release), REVISION: 4.3, GCID: 38968081, BOARD: generic, EABI: aarch64, DATE: Wed Jan 8 01:49:37 UTC 2025
I just recently posted about installing a GPU Power Supply Expansion Board into the Dell T620. I suggest giving that post a read before you continue, as this will be post builds upon what was discussed previously. This post will be a bit of a deep dive into what you should consider when choosing a GPU for your T620.
Ok, so first things first, you need to choose a GPU that is compatible with your T620, as not everything is going to work. Choosing a GPU that is a good fit for your workload, well that comes second.
Let’s start by looking at what Dell tested and certified.
Officially Supported GPUs for the T620
Manufacturer
Model
Heatsink
Power Usage
Nvidia
Tesla C2075
Active
215W
Nvidia
Quadro K4000
Active
80W
Nvidia
Quadro Q6000
Active
204W
Nvidia
Tesla K20A
Active
225W
ATI™ FirePro™
V7800
Active
150W
AMD FirePro
W7000
Active
127.7W
According to the documentation, only the above GPUs are “supported” on the Dell T620. Note that this really means that these are the only cards that Dell certified/tested. It does not mean that there are not any other compatible cards out there. These GPUs are honestly quite old. The only still relevant use case for any of them in this day and age is video transcoding on the quadro card. However, you might be able to do some lightweight AI/ML work on the Tesla K20A (2688 Cuda Cores, Kepler Architecture)
Dell documentation further expands on what is supported. Specifically…
Up to four 300W, full-length, single- or double-wide GPU cards
GPUs with up to 6GB of dedicated DDR5 memory
GPUs that are actively cooled.
No more than 2 power connectors per card
Power connectors located on the back of the card
GPU enablement kit (Power & Cooling Required)
Additionally Dell documentation states the following…
All cards are the same make/model
1000W power supplies are required (technically for systems with more than 2 cards)
You need not to cram your T620 too full with GPUs and Raid Controllers to avoid overheating
What About other GPUs?
So this is where we start to go off the rails, and venture into the unknown. Let’s start with what we know, which is what Dell officially supported and what their documentation says about choosing a GPU
Is 6GB the VRAM Limit?
At the time, Dell only were able to test and certify a handful of GPUs, and none of those GPUs had more than 6GB of VRAM. So it’s very possible that this is why Dell documentation tops out at 6GB as supported. I doubt this is an actual real-world limit.
The T620 was released in 2012 and probably went end-of-life in 2017 – 2019. None of the officially “supported” cards were released after 2013. Available GPUs with more than 6GB VRAM were probably not widely available, and if they were, Dell probably had finished their initial round of GPU certification and moved on to better things. Any GPUs with more than 6GB would probably run hotter and consumed more power, which could be an issue. Additionally there could be conflicts at the firmware/bios level for mapping/managing more than 6GB of VRAM. Who knows? Generically, they probably drew the line at 6GB because “that is what they knew worked”.
What about Power and Cooling?
Adding GPUs to a system will increase cooling and power needs. Replacing existing PSUs, with 1000w PSUs (as recommended by Dell) is very simple and actually pretty cheap. I think I picked up mine for less than $30 USD a pair on ebay. Dual 1000w PSUs was the only supported configuration if you wanted to order a T620 with GPU. However, you still needed to get that power to the GPUs themselves.
This is where the GPU Enablement Kit comes into play. The enablement kit consists of…
Power expansion board
GPU Power Cables
A Fan Gantry (shown below)
T620 Fan Gantry
The fan gantry is not easily found, and they are expensive. You will probably spend more on one of these that you did for your T620. They run about $300+ USD on ebay.
I have found 3 part numbers on line
0VDY5 – fan
8G79K – gantry
2R4DV – Fan + Gantry?
The fan gantry from a T630 will also work as well, albeit with a couple of slight modifications. As you need to cut a bit of metal, took me about 2 minutes to modify mine with some tin snips.
The TOP square I modified a slight bit with tin snips. You will need to do the same for a 4 squares
Note that you will need T620 Fans, as the T630 fan plugs do not line up with the power receiver on the motherboard (hence why you need to modify the gantry)
T620 Fan on the left. T630 Fan on the right. Notice the offset of the power plug is different between the two server models.
Note that the Fan Gantry for the T630 is not any cheaper, it’s just a bit easier to find . The part number for the T620 fan is 0TW71C, which is the same fan that are at the rear of the baffle.
Adding non-Dell proprietary fans to the chassis of the T620 is either much harder or much more expensive, as most of the unused power connectors in the chassis are proprietary. There are also no standard mounting brackets for common fan sizes.
However, there is power to be had. There is connector coming off the drive backplane that provides SATA power to the CDROM. And in theory you could do this…
Male Sata–Female Molex == Male Molex–Female Molex == Fan Controller with 2pin Molex
Now you can add a fan controller and can add some more fans, but you will have to get creative. A few pci slot blower fans? PCI slot Graphics Card Cooler possibly?
Similar Alternative GPUs with Active Cooling
Assuming we need to keep to similar power usage and VRAM, let’s look at a few older, yet not as anemic GPUs.
1. NVIDIA GeForce GTX 1660 Super
VRAM: 6GB GDDR6
TDP: 125W
Cooling: Actively cooled
Performance: Great for basic AI/ML tasks, especially if you are focused on inference or lighter training workloads.
2. NVIDIA RTX A2000 (Professional Card)
VRAM: 6GB GDDR6
TDP: 70W
Cooling: Actively cooled, compact design
Performance: A professional GPU tailored for AI/ML workloads and well-suited for power-constrained environments.
Performance: Suitable for lightweight AI/ML applications and inference tasks, ideal if energy efficiency is a priority.
What about GPUs without External Power
No power supply expansion board?
Let’s look at GPUs that do not require external power. Most PCIe 3.0 slots provide only 25 watts of power, however 75W is the maximum power delivery from a single PCIe 3.0 slot. The Dell T620 has 4 such X16 slots. This alone is appealing and is one of the reasons the Dell T-Series are popular with home labbers. By contract, my newer R630 only provides max of 25W per PCIe slot.
T620 Power Provided Per PCIE Slot
SLOT
POWER
CPU CONNECTION
Slot 1 (x8 lanes)
up to 25W
CPU1
Slot 2 (x16 lanes)
up to 75W
CPU1
Slot 3 (x4 lanes)
up to 25W
Platform Controller Hub
Slot 4 (x16 lanes)
up to 75W
CPU1
Slot 5 (x16 lanes)
up to 75W
CPU2
Slot 6 (x8 lanes)
up to 25W
CPU2
Slot 7 (x16 lanes)
up to 75W
CPU2
GPUs that run on 75W or less
Below is a list of possible GPUs that you can run without additional power requirements, other than what select PCIe slots in the T620 will provide.
NVIDIA GPUs
1. NVIDIA Tesla T4
Performance: Excellent for AI inference and light training.
Power: 70W (fits within PCIe 3.0 constraints).
VRAM: 16GB GDDR6.
Features: Tensor Cores, CUDA support, and FP16/FP32/INT8 capabilities for AI/ML.
Notes: Designed for data centers and supports efficient AI workloads.
Cooling: Passive (gets super hot)
2. NVIDIA Quadro T1000 / T2000
Performance: Entry-level professional GPUs for AI tasks.
Power: 50-75W.
VRAM: 4GB-6GB GDDR6.
Features: CUDA cores and optimized drivers for compute tasks.
Notes: Focused on balanced performance and efficiency.
Cooling: Active
3. NVIDIA GeForce GTX 1650 (Low Profile/Standard)
Performance: Suitable for light AI/ML workloads.
Power: 75W.
VRAM: 4GB GDDR5/GDDR6.
Features: CUDA support for training and inference.
Notes: Ensure you get a variant without external power connectors.
Cooling: Active
4. NVIDIA GeForce GTX 1050 Ti
Performance: Basic AI/ML tasks and experiments.
Power: 75W.
VRAM: 4GB GDDR5.
Features: CUDA cores and basic AI capabilities.
Notes: An older but efficient card for small-scale projects.
Cooling: Active
AMD GPUs
1. AMD Radeon RX 6400
Performance: Entry-level GPU for basic AI workloads.
Power: ~53W.
VRAM: 4GB GDDR6.
Features: RDNA 2 architecture with good efficiency.
Notes: Limited AI-focused features but sufficient for lightweight tasks.
Cooling: Active
2. AMD Radeon Pro WX 3200
Performance: Professional GPU for light compute tasks.
Power: 50W.
VRAM: 4GB GDDR5.
Features: Optimized drivers for professional workloads.
Notes: Reliable for basic AI workloads and professional use.
Cooling: Active
Intel GPUs
1. Intel Arc A310
Performance: Basic GPU for lightweight AI and inference.
Power: ~75W.
VRAM: 4GB GDDR6.
Features: Support for AI frameworks like TensorFlow and PyTorch.
Notes: Newer entry from Intel with decent AI potential.
Cooling: Active
What about Modern GPUs?
Let me start out by saying that it’s possible that many present day GPUs might actually operate without issue in the T620. That being said, what you risk is the bios/lifecycle controller throwing an error as it does not like what it sees happening in its slot.
A bus fatal error was detected on a component at slot 7
Above is the error that I encountered attempting to run a Telsa T4 card. I attempted with several different 16x slots, and the error moved with each slot that I tried. This error usually resulted in an OS kernel panic. In my case, its possible that the Nvidia T4, being passively cooled, could have been part of the problem, the card was too hot to touch. Although temperature could have had nothing to do with it and the card may just not “work” in the T620 (at least not yet, as I continue to troubleshoot)
Regarding newer cards, through my research I have found that a number of folks have had good luck with a few different CPUs (See Reference Section Below). Bottom line, you may get lucky.
Myself, well I am not giving up on getting the Nvidia T4 to run in my T620. I still have a some experimentation to do. Mainly some bios config tweaking and a bit of add on cooling. I also have some ideas regarding the lifecycle controler, but I have yet to test anything.
Troubleshooting/Stability
Below are a few ideas that I have regarding troubleshooting, good luck. I will create a new post at some point in the near future regarding my sucess with the Nvidia T4 GPU.
Slot Disablement – disable unused PCIE slots. PCIE power stability is especially important
“Boot Driver Disabled”. Will investigate this setting. This allow the slot to be visible to the OS, but will not be available as a boot device.
BIOS upgrade – make sure you are running the latest bios (2.9.0)
PCI Slot Selection – choose 16x slot closest to a CPU.
I have seen that many have success in slot 5
Cooling – Make sure your GPU is not getting too hot.
Pull hard disks to improve air flow on the right side of chassis
PCI slot cooler
PCI slot blower
Disable Dell Lifecycle Controller?
Disable Collect System Inventory On Restart (CSIOR)?
Conclusion
Bottom line, these machines were not exactly designed to run with GPUs, and only a handful of GPUs were actually tested and supported on the Dell T620. The list of supported cards is short, and these GPUs are quite old. However, just because its not supported, does not mean that it will not work. It just means it was not tested. Your mileage may vary. I’ve seen a number of post from individuals who are running more modern GPUs the T620 and they do so without issue.
I recently picked up a couple of used Dell T602s for my homelab for AI/ML project work. Dell Tower form factor servers are very attractive to homelabbers due to their availability, their low costs, the fact that they are rather low noise, and due to the fact that they are easily expandable. For example, the DVD rom drive in one of my machines is a standard 5 3/4″ form factor, which I replaced with an DVD burner I had laying around.
One issue with utilizing a non-ATX powered server for AL/ML is the lack of additional power and cooling options for GPUs. The 16x PCI slots in the T620 provide 75w of power, enough for some older GPUs (like the Tesla T4 – which I will try to install later), however in the case of the T4 it is passively cooled so additional cooling is required. We will deal with additional cooling in another post in the future, for now let’s focus on getting the power we need for a certified GPU (more on this down below).
What you need is a Dell GPU Power Supply Expansion Module (VDY5T) (and cables PN=3692K). However, it’s almost impossible to obtain one specifically for the T620 (VDY5T), however you can pick up one up for the T630 (X7C1K) on ebay. I have read that others have been successful when doing so. So I picked up one for myself along with a couple of cables to see if I had the same results…
As a matter of fact, after a cursory glance, and some google-foo, I am not convinced that these parts are not interchangeable. Below you see an ebay item listed as compatible with either machine (not that you should trust ebay sellers). I will continue to do research and once I test my machine I will add more information to this post in the near future. For now, let’s get to the installation steps.
How to show Ethernet connection link speed on Asus AiMesh routers via SSH.
While you can show the link speeds via the Web UI for the main AiMesh router, you cannot, as far as I can tell, show the same info for each of your AiMesh nodes.
Normally on a Linux system I would use Ethtool to show my such info, but we are running ASUSWRT, and do not want to have to install any additional packages.
Enter robocfg
The command you are looking for is “robocfg“
Below is an example of the output from one of my AiMesh Nodes (not primary). Specifically I am looking to see the connection speed on port0 as this is my backhaul network
Command below.
admin@RT-AC68U-CA00:/tmp/home/root# robocfg show
Switch: enabled
Port 0: 1000FD enabled stp: none vlan: 2 jumbo: off mac: f8:0f:f9:98:a3:1e
Port 1: 100FD enabled stp: none vlan: 1 jumbo: off mac: 9c:8e:cd:09:f6:1b
Port 2: 100FD enabled stp: none vlan: 1 jumbo: off mac: 9c:8e:cd:13:32:5f
Port 3: 100FD enabled stp: none vlan: 1 jumbo: off mac: 9c:8e:cd:12:32:29
Port 4: DOWN enabled stp: none vlan: 1 jumbo: off mac: 00:00:00:00:00:00
Port 5: 1000FD enabled stp: none vlan: 1 jumbo: off mac: 68:1d:ef:21:d3:9b
Port 7: DOWN enabled stp: none vlan: 1 jumbo: off mac: 00:00:00:00:00:00
Port 8: DOWN enabled stp: none vlan: 1 jumbo: off mac: 00:00:00:00:00:00
VLANs: BCM5301x enabled mac_check mac_hash
1: vlan1: 1 2 3 4 5t
2: vlan2: 0 5t
1045: vlan1045: 0 2 3t 7 8t
1046: vlan1046: 1 3 4t 5 7
1047: vlan1047: 0t 4t 7
1099: vlan1099: 3t 4
1100: vlan1100: 5t 8u
1101: vlan1101: 0t 3 4 7 8u
1102: vlan1102: 1 2 3t 4t 5t 7t
1103: vlan1103: 1 3t 4 5
Screenshot for reference
What else does robocfg do?
Appears that you can also use robocfg to set link speeds and disable/enable ports – Here is more info