Skip to content

TrueNAS Scale - How to re-enable apt-get

A quick guide on re-enabling the apt-get functionality.

The Issue

So, I updated to the official release version earlier this morning…. and was working on getting my InfiniBand cards up and running…

Well, I needed the infiniband diag tools, so, I ran:

root@truenas:~# apt-get install infiniband-diags
bash: /bin/apt-get: Permission denied

Oh, that is interesting.

So, I googled around, and found this: https://www.truenas.com/community/threads/no-apt-after-update-to-release.99579/

Seems… it was disabled by design, because people do dumb stuff, make their installations unsupportable…. and, then ask for support.

Well….. I want my infiniband working. So, how do we resolve this?

The fix

Warning

I am going to assume ix-systems had a very good reason for doing this. So- if you aren't sure what you are doing, don't do it. My goal is not to increase the amount of support issues ix-systems has to deal with.

If you run, for example, apt-get update && apt-get upgrade, which is a very common thing to do on most linux systems, it will BREAK your TrueNAS Scale installation. Scale is provided 'As an appliance', and any modifications or changes to the underlying OS are not supported.

Danger

Before you do ANYTHING, take a configuration backup, and store it somewhere safe... NOT on your TrueNAS instance. That way- if you do manage to break your system, reinstall the OS, and re-import your backup. Voila, you are back up and running.

Simple!

chmod +x /bin/apt*

Yup, that is literally all you need to do.

Again, to restate- If you don’t know the implications of something you are doing via CLI, DON’T DO IT!

Adding upstream debian repositories

Also, if you DO understand the implications of something, and you know to not blow up support channels as a result of your actions, you can also update /etc/apt/sources.list to add in the debian repos… since, the ix-repos… are much smaller... and are missing lots of common software.

vi /etc/apt/sources.list

/etc/apt/sources.list
(Add the below lines, into this file.)
deb http://deb.debian.org/debian bullseye main
deb-src http://deb.debian.org/debian bullseye main

I removed the other repos.... since it is shipped with apt-disabled anyways.

Update - 2024

Note

I have not personally tested the below commands as I no longer use TrueNAS.

I am copying the information over, for others who end up here.

Full credit here goes to u/SpecialZestyclose255

From u/SpecialZestyclose255-

In the latest version (24.04.0), you need to remount a virtual drive before you can use chmod +x:

mount -o remount,rw 'boot-pool/ROOT/24.04.0/usr'

You need to make sure that /usr/local/bin isn't in your PATH too.

export PATH=/usr/bin:/usr/sbin

And then:

chmod +x /bin/apt* chmod +x /usr/bin/dpkg

Full Commands:

# Remount as read-write
mount -o remount,rw 'boot-pool/ROOT/24.04.0/usr'

# Add bin / sbin directories to path.
export PATH=/usr/bin:/usr/sbin

# Add executable flag to binaries, which is emoved by the TrueNAS team.
chmod +x /bin/apt*

# Re-enable the ability to execute the dpkg binary.
chmod +x /usr/bin/dpkg