LTE modem support


ArduPilot now has support for direct-attached low cost LTE modems, allowing for connection to cellular networks without a companion computer.
In the picture above I have attached a SIM7600E-H CAT1 LTE modem to a CubeOrange in my autonomous buoy project on the Telem1 serial port. This gives me connectivity over the a large area for my boat without relying on a GCS radio and without any line of sight issues. The modems are very cheap, down to US$20 or so, so the main cost is the SIM card you need to get to use the cellular network. The SIM card cost varies a lot between countries and type of plan.

Cellular Connections
The idea of using cellular modems with ArduPilot has of course been around for a very long time. The key difference with this new capability is that in the past these modems were usually attached via a companion computer (eg. a RaspberryPi). If that companion computer is needed for something else (eg. a camera link or video/image processing) then that makes sense, but if you just want it for a telemetry connection then it is nice to be able to avoid the expense, weight, size and complexity of the companion computer.

Lua Script
Support for LTE modems has been added via a lua script. The lua script does the configuration of the modem to setup the link and also can monitor signal strength, tell you which cell tower you are connected to and automatically reconnect as needed.
The documentation for the initial version of the lua script is here:

and the lua script itself is here:

I also have a pending pull request to add a lot more functionality here:

and I will submit another PR soon which adds support for other modem chipsets.

Operating Mode
The lua script can setup the connection in either ā€œtransparent TCPā€ or ā€œPPPā€ mode. In transparent TCP mode the script creates a single TCP connection to a single server. This is useful for a simple telemetry link, and can be a good choice if you want to minimise the amount of memory used by the system. When using transparent TCP the script has parameters for the servers IPv4 address and TCP port number.
The other option, PPP, sets up a full IPv4 network stack to the modem. This allows you to use all of the NET_Px parameters to setup multiple TCP and UDP links, both incoming and outgoing. It also means that other lua scripts can send and receive data over TCP and UDP, allowing for a huge amount of flexibility in what you do with the network connection.
Note that to use PPP you need PPP support compiled into your firmware. Use the custom build server to ensure your build has PPP support.
image

Modem Chipsets
The only LTE modems I have actually tested so far are the SIM7600E-H and the Air780. I have several other variants on order that I expect will work and I’ll update this post with updated information as I test other modems.


If you are thinking of buying one right now and you want to get one that has been tested then get a SIM7600E-H, but I strongly suspect all the SIM76xx variants will work. Another one that I suspect will work well (but is not tested yet) is the EC200. I have one of those on order that should arrive soon, and the datasheet looks good.
I ordered most of my modems from AliExpress, but you should also look at other sites. DFRobot has some nice designs with a variety of chipsets and there are a lot of other resellers, including Amazon, Digikey etc.
Regarding the Air780, while I have it working, I haven’t been able to get it to report signal strength while connected, so I don’t recommend it. Having the signal strength show up on the GCS and in the logs is very nice.

Frequency Bands
One thing to be careful of is to get a modem that supports the available frequency bands in your area. Lookup what LTE bands your carrier supports and then check the specs to see you have a good overlap of bands. If you are after maximum range then look especially for the lower frequency bands (eg. 700MHz or 900MHz). There are often region specific variants of the modems, eg. ending in ā€œ-CNā€, ā€œ-EUā€ or ā€œ-AUā€. There is a lot of overlap in the LTE bands used worldwide so you may find a modem meant for another region works fine in your region, but it is a good idea to check.

CAT1/CAT4/NB-IoT
The SIM7600E-H modem I have been using is a ā€œCAT1ā€ device. This means it can theoretically do 5Mbps, but in practice it can’t reach anything like that speed. The UART on the modem is limited to 3.6MBps and with the various overheads the actual max speed will be quite a bit lower (I’ll do some max bandwidth testing to see exactly what can be achieved).
Other variants of the SIM7xxx series of SimCom modems are CAT4, meaning they can theoretically do 50Mbps, but as I don’t have one yet I don’t know if they really are faster for practical applications.
One thing I am very interested in testing is the NB-IoT versions of these modems. I have a SIM7070G on order which is NB-IoT. In theory this will have a much greater range than the CAT1/CAT4 devices. The datasheets show up to -129 dBm receive sensitivity which is very impressive. The SIM7600E-H gets -101dBm, so that is a 28dB improvement. In theory each extra 6dB doubles the range, so it should be more than 25x the range. In practice I don’t know if this will work out.
The downside of NB-IoT is much lower data rates. They should be able to transmit at up to 150 Mbps, but I have read of others finding that 20 to 50 kbps may be more realistic. I’ll know in a week or two when my SIM7070G arrives. I also don’t know if the SIM7070G supports signal strength reporting while connected (a feature called CMUX). The datasheet doesn’t mention it, but that was the same with the SIM7600E-H. I discovered it supports CMUX by experimentation.

Support Server
Having a LTE modem is great, but you also need somewhere to send the data. Depending on your telco, most likely you won’t get a publicly routable IPv4 address when it connects, so you need to bounce your data off a proxy server somewhere so that your GCS can connect. That is where the ArduPilot support server comes in. If you have an allocated ID on the support server you can point your modem at that (ether via the LTE_SERVER_IPx parameters from the lua script or the NET_Px parameters if using PPP mode) and then connect your GCS to the ā€œsupport engineerā€ side of the link. You can also setup your own copy of the ArduPilot support server by installing the UDPProxy software. Despite it’s name that little proxy server does UDP, TCP and WebSocket connections and secures the link with MAVLink2 signing. If you are an ArduPilot partner or a dev-team member then ask me and I can allocate you some IDs on the support server. I’m also happy to allocate an ID for community members who are helping with the testing and development of this feature.

Setup
There is detailed instructions in the lua script documentation file. Also look out for updates to the script and documentation as this feature is developing quite rapidly.

SIM Cards
For the CAT1/CAT4 modems any data SIM should be fine. We’re also looking at getting some cheap ones from https://www.hologram.io/ that look promising, but have not been tested yet.
For NB-IoT you will likely need a special type of IoT SIM that is designed for that type of connection. There are many companies selling those. Please report your testing results here.

Power
One thing I have noticed with the SIM7600E-H I have at the moment is it is quite power sensitive. For example, if I connect the modem to a CubeOrange and only power the cube with USB then it never gets past the ā€œCREGā€ step in the lua script as the modem can’t register on the network. If I power the cube with a CubePilot power brick then it works fine, but on some boards you may need a separate BEC to power the modem.

Setting the APN
With many SIMs you need to set the ā€œAccess Point Nameā€ (called APN) in the modem to be correct for your SIM. Get the right APN from your SIM provider then follow the instructions below. In the example I will use the APN ā€œhologramā€ which is correct for SIMs from https://hologram.io

Connect to your modem with USB with a terminal program. Use 115200 baud, although on many modems the baud rate on USB does not matter. You will find most modems present multiple USB interfaces, so try each of them until it responds. Check with an ā€œATIā€ command, like this:

ATI
ATI
R1951.05

The R1951.05 is the modem model, in this case a SimCom SIM7070G.

Next list the current APNs (a modem can have several APNs):

AT+CGDCONT?
+CGDCONT: 1,"IPV4V6","some.incorrect.apn","::",0,0,0
+CGDCONT: 2,"IPV4V6","second.incorrect.apn","::",0,0,0

This shows it has 2 APNs, both incorrect. Let’s delete the 2nd one:

AT+CGDCONT=2
AT+CGDCONT=2
OK
AT+CGDCONT?
AT+CGDCONT?
+CGDCONT: 1,"IPV4V6","some.incorrect.apn","::",0,0,0

and now set the correct APN in the first slot:

AT+CGDCONT=1,"IPV4V6","hologram"
AT+CGDCONT=1,"IPV4V6","hologram"
OK
AT+CGDCONT?
AT+CGDCONT?
+CGDCONT: 1,"IPV4V6","hologram","::",0,0,0

Update!
I now have the following modems tested and working:

  • SIM7600E-H
  • SIM7600G-H
  • Air780
  • EC200
  • SIM7670

There are some limitations however:

  • the Air780 can’t report signal strength while connected, which is annoying
  • the SIM7670 only does TCP connections so far, no PPP
17 Likes

Great! thank you for your sharing

This is so awesome!

Really neat to see this.

1 Like

my collection of modems is growing, not all tested yet

3 Likes

Sounds like I should postpone additions to my 915mhz antenna/holybro telem radios. I’ll order some kit and test on my rover. Thx for working this out for us!

I wouldn’t pay for a cell subscription to mow one location. If I had a fleet - maybe. You’re very likely better off with LOS radios than a solution more suited to BLOS drone ops.

2 Likes

I have 7 paddocks and a runway spread over 43 acres - same answer? Was jealous of the bandwidth…

Probably. You probably aren’t going more than about 1/4 mile in any direction, and that layout doesn’t sound like it’s got significant hills or thick trees. So, that’s not really a use case for LTE.

If you want to carry live HD (or near HD) video beyond about 800m, maybe LTE is worth exploring. I don’t know what an unlimited data plan on one of those modems costs in the US. In Africa, it’s super cheap, and also in many European locales. I don’t know that it’s as inexpensive here in 'murica, and I think you can more than get by without it. See discussion about HaLow wifi, for example, or chat with @swebre about his robust 915MHz setup.

But this is all derailing the topic at hand, so that’s the last I’ll comment here. We can start a new topic or chat on Discord.

2 Likes

I use these pre pay multi network simcards for my rovers, they are a bit more expensive but will work on just about any network anywhere. I normally just get it with 5gb or so and use it for a backup with a cheap unlimited local sim for bulk video data.

2 Likes

NB-IoT pricing in NZ, just for reference, we are paying $NZD 17.25 /month ($aud 16, $usd 10.30) for 1GB of data (used for a the things network remote gateway )

1 Like

For video I use EE data sims, they are by far the cheapest in the uk but i like the multiband sim for telemetry incase i end up in a black spot

Very interesting developement!
Is there any documentation how-to install and use the UDPproxy on a simple & cheap vserver?

Here in Germany we have for example ionos VPS-Server starting from 1€/month with ubuntu or similar systems:
1 vCore, 1GB RAM
I think that should be enough for a handful of users? (me & some friends).
SIM7600E-L1C has just been delivered.

I’ve updated the README to give clearer instructions:

If you know how to run a VPS then it should be pretty easy for you.

2 Likes

Hey all, this is really great ro see..

Fyi: Ive had really good luck with these cards in USA:

~$120USD for 1 year unlimited 4G

Id post a better link than to amazon, but i can only speak for eIoT cards ive picked up there, which ive had good experiences with.

I have a lilygo esp32+sim700g board that ive been planning trying out for this.

Thanks for sharing this info.

2 Likes

Thank you very much!

I have currently one error during make:

keydb.h:10:10: fatal error: tdb.h: No such file or directory
   10 | #include <tdb.h>
      |          ^~~~~~~
compilation terminated.
make: *** [<builtin>: udpproxy.o] Error 1

Have a fresh ubuntu 24 install, did the python3-pip with ā€œā€“break-system-packagesā€, thats all.

root@ubuntu:~# git clone https://github.com/ArduPilot/UDPProxy
Cloning into 'UDPProxy'...
remote: Enumerating objects: 184, done.
remote: Counting objects: 100% (184/184), done.
remote: Compressing objects: 100% (118/118), done.
remote: Total 184 (delta 108), reused 128 (delta 60), pack-reused 0 (from 0)
Receiving objects: 100% (184/184), 74.55 KiB | 5.73 MiB/s, done.
Resolving deltas: 100% (108/108), done.
root@ubuntu:~# cd UDPProxy

root@ubuntu:~/UDPProxy# make
Submodule 'modules/mavlink' (https://github.com/ArduPilot/mavlink.git) registered for path 'mod                         ules/mavlink'
Cloning into '/root/UDPProxy/modules/mavlink'...
Submodule path 'modules/mavlink': checked out '3309f7658bddb0f8d048715f7b41a8a1676e575c'
Submodule 'pymavlink' (https://github.com/ArduPilot/pymavlink.git) registered for path 'modules                         /mavlink/pymavlink'
Cloning into '/root/UDPProxy/modules/mavlink/pymavlink'...
Submodule path 'modules/mavlink/pymavlink': checked out '03f7c29949d074275725ef116419ae098aafc5                         df'
Generating mavlink2 headers
Validating modules/mavlink/message_definitions/v1.0/all.xml
Parsing modules/mavlink/message_definitions/v1.0/all.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/ardupilotmega.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/ardupilotmega.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/ASLUAV.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/ASLUAV.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/common.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/common.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/development.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/development.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/icarous.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/icarous.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/minimal.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/minimal.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/python_array_test.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/python_array_test.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/standard.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/standard.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/test.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/test.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/ualberta.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/ualberta.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/uAvionix.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/uAvionix.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/loweheiser.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/loweheiser.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/storm32.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/storm32.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/AVSSUAS.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/AVSSUAS.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/cubepilot.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/cubepilot.xml
Validating /root/UDPProxy/modules/mavlink/message_definitions/v1.0/csAirLink.xml
Parsing /root/UDPProxy/modules/mavlink/message_definitions/v1.0/csAirLink.xml
Merged enum MAV_CMD
Merged enum MAV_CMD
Merged enum MAV_CMD
Merged enum MAV_CMD
Merged enum MAV_CMD
Merged enum MAV_CMD
Found 347 MAVLink message types in 17 XML files
Generating C implementation in directory libraries/mavlink2/generated/all
Generating C implementation in directory libraries/mavlink2/generated/ardupilotmega
Generating C implementation in directory libraries/mavlink2/generated/ASLUAV
Generating C implementation in directory libraries/mavlink2/generated/common
Generating C implementation in directory libraries/mavlink2/generated/development
Generating C implementation in directory libraries/mavlink2/generated/icarous
Generating C implementation in directory libraries/mavlink2/generated/minimal
Generating C implementation in directory libraries/mavlink2/generated/python_array_test
Generating C implementation in directory libraries/mavlink2/generated/standard
Generating C implementation in directory libraries/mavlink2/generated/test
Generating C implementation in directory libraries/mavlink2/generated/ualberta
Generating C implementation in directory libraries/mavlink2/generated/uAvionix
Generating C implementation in directory libraries/mavlink2/generated/loweheiser
Generating C implementation in directory libraries/mavlink2/generated/storm32
Generating C implementation in directory libraries/mavlink2/generated/AVSSUAS
Generating C implementation in directory libraries/mavlink2/generated/cubepilot
Generating C implementation in directory libraries/mavlink2/generated/csAirLink
Copying fixed headers for protocol 2.0 to libraries/mavlink2/generated
g++ -Wall -g -Werror   -c -o udpproxy.o udpproxy.cpp
In file included from mavlink.h:7,
                 from udpproxy.cpp:33:
keydb.h:10:10: fatal error: tdb.h: No such file or directory
   10 | #include <tdb.h>
      |          ^~~~~~~
compilation terminated.
make: *** [<builtin>: udpproxy.o] Error 1

root@ubuntu:~/UDPProxy# ls
COPYING.txt  git-version.h   keydb.h    mav_support.sh  mavlink_msgs.h    sha256.cpp      udpproxy.cpp  websocket.cpp
Makefile     git-version.sh  keydb.py   mavlink.cpp     modules           sha256.h        util.cpp      websocket.h
README.md    keydb.cpp       libraries  mavlink.h       regen_headers.sh  start_proxy.sh  util.h

Edit:
Found the reason:
sudo apt-get install libtdb-dev
sudo apt-get install libssl-dev

was needed.

Edit2:
Failing to initialise keydb:

root@ubuntu:~/UDPProxy# python3 keydb.py initialise
Traceback (most recent call last):
  File "/root/UDPProxy/keydb.py", line 231, in <module>
    db = tdb.open('keys.tdb', hash_size=1024, tdb_flags=0, flags=os.O_RDWR|os.O_CREAT, mode=0o600)
         ^^^^^^^^
AttributeError: module 'tdb' has no attribute 'open'

Whats missing?

sorry, needs

  • sudo apt install libtdb-dev python3-tdb

I’ve updated the README

I’d highly recommend the SIMs from hologram.io. I ordered a pack of 10, and their dashboard interface is really great, working on CAT-4, CAT-4 and CAT-M. Supports all 3 telcos in my area (Optus, Telstra and Vodafone)

1 Like

Thanks for your support!
I had both packages already installed, thats not the root cause.
Any other ideas? I can give you root access if you want to try it yourself? :slight_smile:

Do you plan to support LTE-M (CAT-M) modems? I think thats pretty interesting for this usecase and better than NB-IOT which doesn’t support cell handover.

Regarding SIMs:
I’ve ordered a similar package from melita.io
They are from Malta (EU) but to order you need a VAT-ID.

  • 10 SIMs
  • 5€ / GB
  • 1€ per month per active SIM.
  • 2€ per SIM activation once

Edit:
Thats my current apt list:

root@ubuntu:~# apt list --installed
Listing... Done
adduser/noble,now 3.137ubuntu1 all [installed,automatic]
apparmor/noble-updates,now 4.0.1really4.0.1-0ubuntu0.24.04.4 amd64 [installed,automatic]
apport-core-dump-handler/noble-updates,noble-security,now 2.28.1-0ubuntu3.7 all [installed,automatic]
apport-symptoms/noble,now 0.25 all [installed,automatic]
apport/noble-updates,noble-security,now 2.28.1-0ubuntu3.7 all [installed,automatic]
appstream/noble,now 1.0.2-1build6 amd64 [installed,automatic]
apt-utils/noble-updates,now 2.8.3 amd64 [installed,automatic]
apt/noble-updates,now 2.8.3 amd64 [installed,automatic]
base-files/noble-updates,now 13ubuntu10.2 amd64 [installed]
base-passwd/noble,now 3.6.3build1 amd64 [installed,automatic]
bash-completion/noble,now 1:2.11-8 all [installed,automatic]
bash/noble,now 5.2.21-2ubuntu4 amd64 [installed]
bc/noble,now 1.07.1-3ubuntu4 amd64 [installed,automatic]
bcache-tools/noble,now 1.0.8-5build1 amd64 [installed,automatic]
bind9-dnsutils/noble-updates,noble-security,now 1:9.18.30-0ubuntu0.24.04.2 amd64 [installed,automatic]
bind9-host/noble-updates,noble-security,now 1:9.18.30-0ubuntu0.24.04.2 amd64 [installed,automatic]
bind9-libs/noble-updates,noble-security,now 1:9.18.30-0ubuntu0.24.04.2 amd64 [installed,automatic]
binutils-common/noble-updates,noble-security,now 2.42-4ubuntu2.5 amd64 [installed,automatic]
binutils-x86-64-linux-gnu/noble-updates,noble-security,now 2.42-4ubuntu2.5 amd64 [installed,automatic]
binutils/noble-updates,noble-security,now 2.42-4ubuntu2.5 amd64 [installed,automatic]
bolt/noble,now 0.9.7-1 amd64 [installed,automatic]
bpfcc-tools/noble,now 0.29.1+ds-1ubuntu7 all [installed,automatic]
bpftrace/noble-updates,now 0.20.2-1ubuntu4.3 amd64 [installed,automatic]
bsdextrautils/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed,automatic]
bsdutils/noble-updates,now 1:2.39.3-9ubuntu6.2 amd64 [installed]
btrfs-progs/noble,now 6.6.3-1.1build2 amd64 [installed,automatic]
build-essential/noble,now 12.10ubuntu1 amd64 [installed,automatic]
busybox-initramfs/noble-updates,noble-security,now 1:1.36.1-6ubuntu3.1 amd64 [installed,automatic]
busybox-static/noble-updates,noble-security,now 1:1.36.1-6ubuntu3.1 amd64 [installed,automatic]
byobu/noble,now 6.11-0ubuntu1 all [installed,automatic]
bzip2/noble-updates,now 1.0.8-5.1build0.1 amd64 [installed,automatic]
ca-certificates/noble,now 20240203 all [installed,automatic]
cloud-guest-utils/noble,now 0.33-1 all [installed,automatic]
cloud-init/noble-updates,now 25.1.2-0ubuntu0~24.04.1 all [installed]
cloud-initramfs-copymods/noble-updates,now 0.49~24.04.1 all [installed,automatic]
cloud-initramfs-dyn-netconf/noble-updates,now 0.49~24.04.1 all [installed,automatic]
command-not-found/noble,now 23.04.0 all [installed,automatic]
console-setup-linux/noble,now 1.226ubuntu1 all [installed,automatic]
console-setup/noble,now 1.226ubuntu1 all [installed,automatic]
coreutils/noble,now 9.4-3ubuntu6 amd64 [installed,automatic]
cpio/noble,now 2.15+dfsg-1ubuntu2 amd64 [installed,automatic]
cpp-13-x86-64-linux-gnu/noble-updates,noble-security,now 13.3.0-6ubuntu2~24.04 amd64 [installed,automatic]
cpp-13/noble-updates,noble-security,now 13.3.0-6ubuntu2~24.04 amd64 [installed,automatic]
cpp-x86-64-linux-gnu/noble,now 4:13.2.0-7ubuntu1 amd64 [installed,automatic]
cpp/noble,now 4:13.2.0-7ubuntu1 amd64 [installed,automatic]
cron-daemon-common/noble,now 3.0pl1-184ubuntu2 all [installed,automatic]
cron/noble,now 3.0pl1-184ubuntu2 amd64 [installed,automatic]
cryptsetup-bin/noble-updates,now 2:2.7.0-1ubuntu4.2 amd64 [installed,automatic]
cryptsetup-initramfs/noble-updates,now 2:2.7.0-1ubuntu4.2 all [installed,automatic]
cryptsetup/noble-updates,now 2:2.7.0-1ubuntu4.2 amd64 [installed,automatic]
curl/noble-updates,noble-security,now 8.5.0-2ubuntu10.6 amd64 [installed,automatic]
dash/noble,now 0.5.12-6ubuntu5 amd64 [installed]
dbus-bin/noble-updates,now 1.14.10-4ubuntu4.1 amd64 [installed,automatic]
dbus-daemon/noble-updates,now 1.14.10-4ubuntu4.1 amd64 [installed,automatic]
dbus-session-bus-common/noble-updates,now 1.14.10-4ubuntu4.1 all [installed,automatic]
dbus-system-bus-common/noble-updates,now 1.14.10-4ubuntu4.1 all [installed,automatic]
dbus-user-session/noble-updates,now 1.14.10-4ubuntu4.1 amd64 [installed,automatic]
dbus/noble-updates,now 1.14.10-4ubuntu4.1 amd64 [installed,automatic]
debconf-i18n/noble,now 1.5.86ubuntu1 all [installed,automatic]
debconf/noble,now 1.5.86ubuntu1 all [installed,automatic]
debianutils/noble,now 5.17build1 amd64 [installed,automatic]
dhcpcd-base/noble-updates,now 1:10.0.6-1ubuntu3.1 amd64 [installed,automatic]
diffutils/noble,now 1:3.10-1build1 amd64 [installed]
dirmngr/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 amd64 [installed,automatic]
distro-info-data/noble-updates,now 0.60ubuntu0.3 all [installed,automatic]
distro-info/noble,now 1.7build1 amd64 [installed,automatic]
dmeventd/noble-updates,now 2:1.02.185-3ubuntu3.2 amd64 [installed,automatic]
dmidecode/noble-updates,now 3.5-3ubuntu0.1 amd64 [installed,automatic]
dmsetup/noble-updates,now 2:1.02.185-3ubuntu3.2 amd64 [installed,automatic]
dosfstools/noble,now 4.2-1.1build1 amd64 [installed,automatic]
dpkg-dev/noble-updates,noble-security,now 1.22.6ubuntu6.1 all [installed,automatic]
dpkg/noble-updates,noble-security,now 1.22.6ubuntu6.1 amd64 [installed,automatic]
dracut-install/noble-updates,now 060+5-1ubuntu3.3 amd64 [installed,automatic]
e2fsprogs-l10n/noble-updates,now 1.47.0-2.4~exp1ubuntu4.1 all [installed,automatic]
e2fsprogs/noble-updates,now 1.47.0-2.4~exp1ubuntu4.1 amd64 [installed,automatic]
eatmydata/noble,now 131-1ubuntu1 all [installed]
ed/noble,now 1.20.1-1 amd64 [installed,automatic]
efibootmgr/noble,now 18-1build2 amd64 [installed,automatic]
eject/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed,automatic]
ethtool/noble,now 1:6.7-1build1 amd64 [installed,automatic]
fakeroot/noble,now 1.33-1 amd64 [installed,automatic]
fdisk/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed,automatic]
file/noble,now 1:5.45-3build1 amd64 [installed,automatic]
finalrd/noble,now 9build1 all [installed,automatic]
findutils/noble,now 4.9.0-5build1 amd64 [installed]
fontconfig-config/noble,now 2.15.0-1.1ubuntu2 amd64 [installed,automatic]
fonts-dejavu-core/noble,now 2.37-8 all [installed,automatic]
fonts-dejavu-mono/noble,now 2.37-8 all [installed,automatic]
fonts-ubuntu-console/noble,now 0.869+git20240321-0ubuntu1 all [installed,automatic]
friendly-recovery/noble,now 0.2.42 all [installed,automatic]
ftp/noble,now 20230507-2build3 all [installed,automatic]
fuse3/noble,now 3.14.0-5build1 amd64 [installed,automatic]
fwupd-signed/noble,now 1.52+1.4-1 amd64 [installed,automatic]
fwupd/noble-updates,now 1.9.29-0ubuntu1~24.04.1ubuntu1 amd64 [installed,automatic]
g++-13-x86-64-linux-gnu/noble-updates,noble-security,now 13.3.0-6ubuntu2~24.04 amd64 [installed,automatic]
g++-13/noble-updates,noble-security,now 13.3.0-6ubuntu2~24.04 amd64 [installed,automatic]
g++-x86-64-linux-gnu/noble,now 4:13.2.0-7ubuntu1 amd64 [installed,automatic]
g++/noble,now 4:13.2.0-7ubuntu1 amd64 [installed,automatic]
gawk/noble,now 1:5.2.1-2build3 amd64 [installed,automatic]
gcc-13-base/noble-updates,noble-security,now 13.3.0-6ubuntu2~24.04 amd64 [installed,automatic]
gcc-13-x86-64-linux-gnu/noble-updates,noble-security,now 13.3.0-6ubuntu2~24.04 amd64 [installed,automatic]
gcc-13/noble-updates,noble-security,now 13.3.0-6ubuntu2~24.04 amd64 [installed,automatic]
gcc-14-base/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
gcc-x86-64-linux-gnu/noble,now 4:13.2.0-7ubuntu1 amd64 [installed,automatic]
gcc/noble,now 4:13.2.0-7ubuntu1 amd64 [installed,automatic]
gdisk/noble,now 1.0.10-1build1 amd64 [installed,automatic]
gettext-base/noble,now 0.21-14ubuntu2 amd64 [installed,automatic]
gir1.2-girepository-2.0/noble,now 1.80.1-1 amd64 [installed,automatic]
gir1.2-glib-2.0/noble-updates,noble-security,now 2.80.0-6ubuntu3.4 amd64 [installed,automatic]
gir1.2-packagekitglib-1.0/noble-updates,now 1.2.8-2ubuntu1.2 amd64 [installed,automatic]
git-man/noble-updates,noble-security,now 1:2.43.0-1ubuntu7.2 all [installed,automatic]
git/noble-updates,noble-security,now 1:2.43.0-1ubuntu7.2 amd64 [installed]
gnupg-l10n/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 all [installed,automatic]
gnupg-utils/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 amd64 [installed,automatic]
gnupg/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 all [installed,automatic]
gpg-agent/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 amd64 [installed,automatic]
gpg-wks-client/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 amd64 [installed,automatic]
gpg/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 amd64 [installed,automatic]
gpgconf/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 amd64 [installed,automatic]
gpgsm/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 amd64 [installed,automatic]
gpgv/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 amd64 [installed,automatic]
grep/noble,now 3.11-4build1 amd64 [installed]
groff-base/noble,now 1.23.0-3build2 amd64 [installed,automatic]
grub-common/noble-updates,now 2.12-1ubuntu7.3 amd64 [installed,automatic]
grub-efi-amd64-bin/noble-updates,now 2.12-1ubuntu7.3 amd64 [installed,automatic]
grub-efi-amd64-signed/noble-updates,now 1.202.5+2.12-1ubuntu7.3 amd64 [installed,automatic]
grub-gfxpayload-lists/noble,now 0.7build2 amd64 [installed,automatic]
grub-pc-bin/noble-updates,now 2.12-1ubuntu7.3 amd64 [installed,automatic]
grub-pc/noble-updates,now 2.12-1ubuntu7.3 amd64 [installed]
grub2-common/noble-updates,now 2.12-1ubuntu7.3 amd64 [installed,automatic]
gzip/noble,now 1.12-1ubuntu3 amd64 [installed]
hdparm/noble,now 9.65+ds-1build1 amd64 [installed,automatic]
hostname/noble,now 3.23+nmu2ubuntu2 amd64 [installed]
htop/noble,now 3.3.0-4build1 amd64 [installed,automatic]
hwdata/noble,now 0.379-1 all [installed,automatic]
ibverbs-providers/noble-updates,now 50.0-2ubuntu0.2 amd64 [installed,automatic]
ieee-data/noble,now 20220827.1 all [installed,automatic]
inetutils-telnet/noble,now 2:2.5-3ubuntu4 amd64 [installed,automatic]
info/noble,now 7.1-3build2 amd64 [installed,automatic]
init-system-helpers/noble,now 1.66ubuntu1 all [installed,automatic]
init/noble,now 1.66ubuntu1 amd64 [installed]
initramfs-tools-bin/noble-updates,now 0.142ubuntu25.5 amd64 [installed,automatic]
initramfs-tools-core/noble-updates,now 0.142ubuntu25.5 all [installed,automatic]
initramfs-tools/noble-updates,now 0.142ubuntu25.5 all [installed,automatic]
install-info/noble,now 7.1-3build2 amd64 [installed,automatic]
iproute2/noble,now 6.1.0-1ubuntu6 amd64 [installed,automatic]
iptables/noble,now 1.8.10-3ubuntu2 amd64 [installed,automatic]
iputils-ping/noble,now 3:20240117-1build1 amd64 [installed,automatic]
iputils-tracepath/noble,now 3:20240117-1build1 amd64 [installed,automatic]
iso-codes/noble,now 4.16.0-1 all [installed,automatic]
javascript-common/noble,now 11+nmu1 all [installed,automatic]
jq/noble,now 1.7.1-3build1 amd64 [installed,automatic]
kbd/noble,now 2.6.4-2ubuntu2 amd64 [installed,automatic]
keyboard-configuration/noble,now 1.226ubuntu1 all [installed,automatic]
keyboxd/noble-updates,noble-security,now 2.4.4-2ubuntu17.2 amd64 [installed,automatic]
klibc-utils/noble-updates,noble-security,now 2.0.13-4ubuntu0.1 amd64 [installed,automatic]
kmod/noble-updates,now 31+20240202-2ubuntu7.1 amd64 [installed,automatic]
kpartx/noble,now 0.9.4-5ubuntu8 amd64 [installed,automatic]
krb5-locales/noble-updates,noble-security,now 1.20.1-6ubuntu2.6 all [installed,automatic]
landscape-common/noble-updates,now 24.02-0ubuntu5.3 amd64 [installed,automatic]
less/noble-updates,noble-security,now 590-2ubuntu2.1 amd64 [installed,automatic]
libacl1/noble-updates,now 2.3.2-1build1.1 amd64 [installed,automatic]
libaio1t64/noble-updates,now 0.3.113-6build1.1 amd64 [installed,automatic]
libalgorithm-diff-perl/noble,now 1.201-1 all [installed,automatic]
libalgorithm-diff-xs-perl/noble,now 0.04-8build3 amd64 [installed,automatic]
libalgorithm-merge-perl/noble,now 0.08-5 all [installed,automatic]
libaom3/noble-updates,noble-security,now 3.8.2-2ubuntu0.1 amd64 [installed,automatic]
libapparmor1/noble-updates,now 4.0.1really4.0.1-0ubuntu0.24.04.4 amd64 [installed,automatic]
libappstream5/noble,now 1.0.2-1build6 amd64 [installed,automatic]
libapt-pkg6.0t64/noble-updates,now 2.8.3 amd64 [installed,automatic]
libarchive13t64/noble-updates,noble-security,now 3.7.2-2ubuntu0.5 amd64 [installed,automatic]
libargon2-1/noble,now 0~20190702+dfsg-4build1 amd64 [installed,automatic]
libasan8/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libassuan0/noble,now 2.5.6-1build1 amd64 [installed,automatic]
libatasmart4/noble,now 0.19-5build3 amd64 [installed,automatic]
libatm1t64/noble,now 1:2.5.1-5.1build1 amd64 [installed,automatic]
libatomic1/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libattr1/noble-updates,now 1:2.5.2-1build1.1 amd64 [installed,automatic]
libaudit-common/noble-updates,now 1:3.1.2-2.1build1.1 all [installed,automatic]
libaudit1/noble-updates,now 1:3.1.2-2.1build1.1 amd64 [installed,automatic]
libbinutils/noble-updates,noble-security,now 2.42-4ubuntu2.5 amd64 [installed,automatic]
libblkid1/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed,automatic]
libblockdev-crypto3/noble-updates,noble-security,now 3.1.1-1ubuntu0.1 amd64 [installed,automatic]
libblockdev-fs3/noble-updates,noble-security,now 3.1.1-1ubuntu0.1 amd64 [installed,automatic]
libblockdev-loop3/noble-updates,noble-security,now 3.1.1-1ubuntu0.1 amd64 [installed,automatic]
libblockdev-mdraid3/noble-updates,noble-security,now 3.1.1-1ubuntu0.1 amd64 [installed,automatic]
libblockdev-nvme3/noble-updates,noble-security,now 3.1.1-1ubuntu0.1 amd64 [installed,automatic]
libblockdev-part3/noble-updates,noble-security,now 3.1.1-1ubuntu0.1 amd64 [installed,automatic]
libblockdev-swap3/noble-updates,noble-security,now 3.1.1-1ubuntu0.1 amd64 [installed,automatic]
libblockdev-utils3/noble-updates,noble-security,now 3.1.1-1ubuntu0.1 amd64 [installed,automatic]
libblockdev3/noble-updates,noble-security,now 3.1.1-1ubuntu0.1 amd64 [installed,automatic]
libbpf1/noble,now 1:1.3.0-2build2 amd64 [installed,automatic]
libbpfcc/noble,now 0.29.1+ds-1ubuntu7 amd64 [installed,automatic]
libbrotli1/noble,now 1.1.0-2build2 amd64 [installed,automatic]
libbsd0/noble-updates,now 0.12.1-1build1.1 amd64 [installed,automatic]
libbytesize-common/noble,now 2.10-1ubuntu2 all [installed,automatic]
libbytesize1/noble,now 2.10-1ubuntu2 amd64 [installed,automatic]
libbz2-1.0/noble-updates,now 1.0.8-5.1build0.1 amd64 [installed,automatic]
libc-bin/noble-updates,noble-security,now 2.39-0ubuntu8.4 amd64 [installed,automatic]
libc-dev-bin/noble-updates,noble-security,now 2.39-0ubuntu8.4 amd64 [installed,automatic]
libc-devtools/noble-updates,noble-security,now 2.39-0ubuntu8.4 amd64 [installed,automatic]
libc6-dev/noble-updates,noble-security,now 2.39-0ubuntu8.4 amd64 [installed,automatic]
libc6/noble-updates,noble-security,now 2.39-0ubuntu8.4 amd64 [installed,automatic]
libcap-ng0/noble,now 0.8.4-2build2 amd64 [installed,automatic]
libcap2-bin/noble-updates,noble-security,now 1:2.66-5ubuntu2.2 amd64 [installed,automatic]
libcap2/noble-updates,noble-security,now 1:2.66-5ubuntu2.2 amd64 [installed,automatic]
libcbor0.10/noble,now 0.10.2-1.2ubuntu2 amd64 [installed,automatic]
libcc1-0/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libclang-cpp18/noble-updates,now 1:18.1.3-1ubuntu1 amd64 [installed,automatic]
libclang1-18/noble-updates,now 1:18.1.3-1ubuntu1 amd64 [installed,automatic]
libcom-err2/noble-updates,now 1.47.0-2.4~exp1ubuntu4.1 amd64 [installed,automatic]
libcrypt-dev/noble,now 1:4.4.36-4build1 amd64 [installed,automatic]
libcrypt1/noble,now 1:4.4.36-4build1 amd64 [installed,automatic]
libcryptsetup12/noble-updates,now 2:2.7.0-1ubuntu4.2 amd64 [installed,automatic]
libctf-nobfd0/noble-updates,noble-security,now 2.42-4ubuntu2.5 amd64 [installed,automatic]
libctf0/noble-updates,noble-security,now 2.42-4ubuntu2.5 amd64 [installed,automatic]
libcurl3t64-gnutls/noble-updates,noble-security,now 8.5.0-2ubuntu10.6 amd64 [installed,automatic]
libcurl4t64/noble-updates,noble-security,now 8.5.0-2ubuntu10.6 amd64 [installed,automatic]
libdb5.3t64/noble,now 5.3.28+dfsg2-7 amd64 [installed,automatic]
libdbus-1-3/noble-updates,now 1.14.10-4ubuntu4.1 amd64 [installed,automatic]
libde265-0/noble,now 1.0.15-1build3 amd64 [installed,automatic]
libdebconfclient0/noble,now 0.271ubuntu3 amd64 [installed,automatic]
libdeflate0/noble-updates,now 1.19-1build1.1 amd64 [installed,automatic]
libdevmapper-event1.02.1/noble-updates,now 2:1.02.185-3ubuntu3.2 amd64 [installed,automatic]
libdevmapper1.02.1/noble-updates,now 2:1.02.185-3ubuntu3.2 amd64 [installed,automatic]
libdpkg-perl/noble-updates,noble-security,now 1.22.6ubuntu6.1 all [installed,automatic]
libdrm-common/noble-updates,now 2.4.122-1~ubuntu0.24.04.1 all [installed,automatic]
libdrm2/noble-updates,now 2.4.122-1~ubuntu0.24.04.1 amd64 [installed,automatic]
libduktape207/noble,now 2.7.0+tests-0ubuntu3 amd64 [installed,automatic]
libdw1t64/noble-updates,noble-security,now 0.190-1.1ubuntu0.1 amd64 [installed,automatic]
libeatmydata1/noble,now 131-1ubuntu1 amd64 [installed]
libedit2/noble,now 3.1-20230828-1build1 amd64 [installed,automatic]
libefiboot1t64/noble,now 38-3.1build1 amd64 [installed,automatic]
libefivar1t64/noble,now 38-3.1build1 amd64 [installed,automatic]
libelf1t64/noble-updates,noble-security,now 0.190-1.1ubuntu0.1 amd64 [installed,automatic]
liberror-perl/noble,now 0.17029-2 all [installed,automatic]
libestr0/noble,now 0.1.11-1build1 amd64 [installed,automatic]
libevdev2/noble,now 1.13.1+dfsg-1build1 amd64 [installed,automatic]
libevent-core-2.1-7t64/noble,now 2.1.12-stable-9ubuntu2 amd64 [installed,automatic]
libexpat1-dev/noble-updates,noble-security,now 2.6.1-2ubuntu0.3 amd64 [installed,automatic]
libexpat1/noble-updates,noble-security,now 2.6.1-2ubuntu0.3 amd64 [installed,automatic]
libext2fs2t64/noble-updates,now 1.47.0-2.4~exp1ubuntu4.1 amd64 [installed,automatic]
libfakeroot/noble,now 1.33-1 amd64 [installed,automatic]
libfastjson4/noble,now 1.2304.0-1build1 amd64 [installed,automatic]
libfdisk1/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed,automatic]
libffi8/noble,now 3.4.6-1build1 amd64 [installed,automatic]
libfido2-1/noble,now 1.14.0-1build3 amd64 [installed,automatic]
libfile-fcntllock-perl/noble,now 0.22-4ubuntu5 amd64 [installed,automatic]
libflashrom1/noble,now 1.3.0-2.1ubuntu2 amd64 [installed,automatic]
libfontconfig1/noble,now 2.15.0-1.1ubuntu2 amd64 [installed,automatic]
libfreetype6/noble,now 2.13.2+dfsg-1build3 amd64 [installed,automatic]
libfribidi0/noble,now 1.0.13-3build1 amd64 [installed,automatic]
libftdi1-2/noble,now 1.5-6build5 amd64 [installed,automatic]
libfuse3-3/noble,now 3.14.0-5build1 amd64 [installed,automatic]
libfwupd2/noble-updates,now 1.9.29-0ubuntu1~24.04.1ubuntu1 amd64 [installed,automatic]
libgcc-13-dev/noble-updates,noble-security,now 13.3.0-6ubuntu2~24.04 amd64 [installed,automatic]
libgcc-s1/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libgcrypt20/noble,now 1.10.3-2build1 amd64 [installed,automatic]
libgd3/noble,now 2.3.3-9ubuntu5 amd64 [installed,automatic]
libgdbm-compat4t64/noble,now 1.23-5.1build1 amd64 [installed,automatic]
libgdbm6t64/noble,now 1.23-5.1build1 amd64 [installed,automatic]
libgirepository-1.0-1/noble,now 1.80.1-1 amd64 [installed,automatic]
libglib2.0-0t64/noble-updates,noble-security,now 2.80.0-6ubuntu3.4 amd64 [installed,automatic]
libglib2.0-bin/noble-updates,noble-security,now 2.80.0-6ubuntu3.4 amd64 [installed,automatic]
libglib2.0-data/noble-updates,noble-security,now 2.80.0-6ubuntu3.4 all [installed,automatic]
libgmp10/noble-updates,now 2:6.3.0+dfsg-2ubuntu6.1 amd64 [installed,automatic]
libgnutls30t64/noble-updates,noble-security,now 3.8.3-1.1ubuntu3.3 amd64 [installed,automatic]
libgomp1/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libgpg-error-l10n/noble-updates,now 1.47-3build2.1 all [installed,automatic]
libgpg-error0/noble-updates,now 1.47-3build2.1 amd64 [installed,automatic]
libgpgme11t64/noble,now 1.18.0-4.1ubuntu4 amd64 [installed,automatic]
libgpm2/noble,now 1.20.7-11 amd64 [installed,automatic]
libgprofng0/noble-updates,noble-security,now 2.42-4ubuntu2.5 amd64 [installed,automatic]
libgssapi-krb5-2/noble-updates,noble-security,now 1.20.1-6ubuntu2.6 amd64 [installed,automatic]
libgstreamer1.0-0/noble-updates,noble-security,now 1.24.2-1ubuntu0.1 amd64 [installed,automatic]
libgudev-1.0-0/noble,now 1:238-5ubuntu1 amd64 [installed,automatic]
libgusb2/noble,now 0.4.8-1build2 amd64 [installed,automatic]
libheif-plugin-aomdec/noble-updates,noble-security,now 1.17.6-1ubuntu4.1 amd64 [installed,automatic]
libheif-plugin-aomenc/noble-updates,noble-security,now 1.17.6-1ubuntu4.1 amd64 [installed,automatic]
libheif-plugin-libde265/noble-updates,noble-security,now 1.17.6-1ubuntu4.1 amd64 [installed,automatic]
libheif1/noble-updates,noble-security,now 1.17.6-1ubuntu4.1 amd64 [installed,automatic]
libhogweed6t64/noble-updates,now 3.9.1-2.2build1.1 amd64 [installed,automatic]
libhwasan0/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libibverbs1/noble-updates,now 50.0-2ubuntu0.2 amd64 [installed,automatic]
libicu74/noble-updates,now 74.2-1ubuntu3.1 amd64 [installed,automatic]
libidn2-0/noble-updates,now 2.3.7-2build1.1 amd64 [installed,automatic]
libinih1/noble,now 55-1ubuntu2 amd64 [installed,automatic]
libintl-perl/noble,now 1.33-1build3 all [installed,automatic]
libintl-xs-perl/noble,now 1.33-1build3 amd64 [installed,automatic]
libip4tc2/noble,now 1.8.10-3ubuntu2 amd64 [installed,automatic]
libip6tc2/noble,now 1.8.10-3ubuntu2 amd64 [installed,automatic]
libisl23/noble-updates,now 0.26-3build1.1 amd64 [installed,automatic]
libisns0t64/noble,now 0.101-0.3build3 amd64 [installed,automatic]
libitm1/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libjansson4/noble,now 2.14-2build2 amd64 [installed,automatic]
libjbig0/noble,now 2.1-6.1ubuntu2 amd64 [installed,automatic]
libjcat1/noble,now 0.2.0-2build3 amd64 [installed,automatic]
libjpeg-turbo8/noble,now 2.1.5-2ubuntu2 amd64 [installed,automatic]
libjpeg8/noble,now 8c-2ubuntu11 amd64 [installed,automatic]
libjq1/noble,now 1.7.1-3build1 amd64 [installed,automatic]
libjs-jquery/noble,now 3.6.1+dfsg+~3.5.14-1 all [installed,automatic]
libjs-sphinxdoc/noble,now 7.2.6-6 all [installed,automatic]
libjs-underscore/noble,now 1.13.4~dfsg+~1.11.4-3 all [installed,automatic]
libjson-c5/noble,now 0.17-1build1 amd64 [installed,automatic]
libjson-glib-1.0-0/noble,now 1.8.0-2build2 amd64 [installed,automatic]
libjson-glib-1.0-common/noble,now 1.8.0-2build2 all [installed,automatic]
libk5crypto3/noble-updates,noble-security,now 1.20.1-6ubuntu2.6 amd64 [installed,automatic]
libkeyutils1/noble,now 1.6.3-3build1 amd64 [installed,automatic]
libklibc/noble-updates,noble-security,now 2.0.13-4ubuntu0.1 amd64 [installed,automatic]
libkmod2/noble-updates,now 31+20240202-2ubuntu7.1 amd64 [installed,automatic]
libkrb5-3/noble-updates,noble-security,now 1.20.1-6ubuntu2.6 amd64 [installed,automatic]
libkrb5support0/noble-updates,noble-security,now 1.20.1-6ubuntu2.6 amd64 [installed,automatic]
libksba8/noble,now 1.6.6-1build1 amd64 [installed,automatic]
libldap-common/noble-updates,now 2.6.7+dfsg-1~exp1ubuntu8.2 all [installed,automatic]
libldap2/noble-updates,now 2.6.7+dfsg-1~exp1ubuntu8.2 amd64 [installed,automatic]
liblerc4/noble,now 4.0.0+ds-4ubuntu2 amd64 [installed,automatic]
libllvm18/noble-updates,now 1:18.1.3-1ubuntu1 amd64 [installed,automatic]
liblmdb0/noble,now 0.9.31-1build1 amd64 [installed,automatic]
liblocale-gettext-perl/noble,now 1.07-6ubuntu5 amd64 [installed,automatic]
liblsan0/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
liblvm2cmd2.03/noble-updates,now 2.03.16-3ubuntu3.2 amd64 [installed,automatic]
liblz4-1/noble-updates,now 1.9.4-1build1.1 amd64 [installed,automatic]
liblzma5/noble-updates,noble-security,now 5.6.1+really5.4.5-1ubuntu0.2 amd64 [installed,automatic]
liblzo2-2/noble,now 2.10-2build4 amd64 [installed,automatic]
libmagic-mgc/noble,now 1:5.45-3build1 amd64 [installed,automatic]
libmagic1t64/noble,now 1:5.45-3build1 amd64 [installed,automatic]
libmaxminddb0/noble,now 1.9.1-1build1 amd64 [installed,automatic]
libmbim-glib4/noble,now 1.31.2-0ubuntu3 amd64 [installed,automatic]
libmbim-proxy/noble,now 1.31.2-0ubuntu3 amd64 [installed,automatic]
libmbim-utils/noble,now 1.31.2-0ubuntu3 amd64 [installed,automatic]
libmd0/noble-updates,now 1.1.0-2build1.1 amd64 [installed,automatic]
libmm-glib0/noble,now 1.23.4-0ubuntu2 amd64 [installed,automatic]
libmnl0/noble,now 1.0.5-2build1 amd64 [installed,automatic]
libmodule-find-perl/noble,now 0.16-2 all [installed,automatic]
libmodule-scandeps-perl/noble-updates,noble-security,now 1.35-1ubuntu0.24.04.1 all [installed,automatic]
libmount1/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed,automatic]
libmpc3/noble-updates,now 1.3.1-1build1.1 amd64 [installed,automatic]
libmpfr6/noble-updates,now 4.2.1-1build1.1 amd64 [installed,automatic]
libmspack0t64/noble,now 0.11-1.1build1 amd64 [installed,automatic]
libncurses6/noble,now 6.4+20240113-1ubuntu2 amd64 [installed,automatic]
libncursesw6/noble,now 6.4+20240113-1ubuntu2 amd64 [installed,automatic]
libnetfilter-conntrack3/noble,now 1.0.9-6build1 amd64 [installed,automatic]
libnetplan1/noble-updates,now 1.1.2-2~ubuntu24.04.1 amd64 [installed,automatic]
libnettle8t64/noble-updates,now 3.9.1-2.2build1.1 amd64 [installed,automatic]
libnewt0.52/noble,now 0.52.24-2ubuntu2 amd64 [installed,automatic]
libnfnetlink0/noble,now 1.0.2-2build1 amd64 [installed,automatic]
libnftables1/noble,now 1.0.9-1build1 amd64 [installed,automatic]
libnftnl11/noble,now 1.2.6-2build1 amd64 [installed,automatic]
libnghttp2-14/noble-updates,now 1.59.0-1ubuntu0.2 amd64 [installed,automatic]
libnl-3-200/noble-updates,now 3.7.0-0.3build1.1 amd64 [installed,automatic]
libnl-genl-3-200/noble-updates,now 3.7.0-0.3build1.1 amd64 [installed,automatic]
libnl-route-3-200/noble-updates,now 3.7.0-0.3build1.1 amd64 [installed,automatic]
libnpth0t64/noble,now 1.6-3.1build1 amd64 [installed,automatic]
libnspr4/noble,now 2:4.35-1.1build1 amd64 [installed,automatic]
libnss-systemd/noble-updates,noble-security,now 255.4-1ubuntu8.8 amd64 [installed,automatic]
libnss3/noble,now 2:3.98-1build1 amd64 [installed,automatic]
libntfs-3g89t64/noble,now 1:2022.10.3-1.2ubuntu3 amd64 [installed,automatic]
libnuma1/noble,now 2.0.18-1build1 amd64 [installed,automatic]
libnvme1t64/noble-updates,now 1.8-3ubuntu1 amd64 [installed,automatic]
libonig5/noble,now 6.9.9-1build1 amd64 [installed,automatic]
libopeniscsiusr/now 2.1.9-3ubuntu5.3 amd64 [installed,upgradable to: 2.1.9-3ubuntu5.4]
libp11-kit0/noble-updates,now 0.25.3-4ubuntu2.1 amd64 [installed,automatic]
libpackagekit-glib2-18/noble-updates,now 1.2.8-2ubuntu1.2 amd64 [installed,automatic]
libpam-cap/noble-updates,noble-security,now 1:2.66-5ubuntu2.2 amd64 [installed,automatic]
libpam-modules-bin/noble-updates,noble-security,now 1.5.3-5ubuntu5.4 amd64 [installed,automatic]
libpam-modules/noble-updates,noble-security,now 1.5.3-5ubuntu5.4 amd64 [installed,automatic]
libpam-runtime/noble-updates,noble-security,now 1.5.3-5ubuntu5.4 all [installed,automatic]
libpam-systemd/noble-updates,noble-security,now 255.4-1ubuntu8.8 amd64 [installed,automatic]
libpam0g/noble-updates,noble-security,now 1.5.3-5ubuntu5.4 amd64 [installed,automatic]
libparted2t64/noble,now 3.6-4build1 amd64 [installed,automatic]
libpcap0.8t64/noble,now 1.10.4-4.1ubuntu3 amd64 [installed,automatic]
libpci3/noble,now 1:3.10.0-2build1 amd64 [installed,automatic]
libpcre2-8-0/noble-updates,now 10.42-4ubuntu2.1 amd64 [installed,automatic]
libperl5.38t64/noble-updates,noble-security,now 5.38.2-3.2ubuntu0.1 amd64 [installed,automatic]
libpipeline1/noble,now 1.5.7-2 amd64 [installed,automatic]
libplymouth5/noble-updates,now 24.004.60-1ubuntu7.1 amd64 [installed,automatic]
libpng16-16t64/noble,now 1.6.43-5build1 amd64 [installed,automatic]
libpolkit-agent-1-0/noble-updates,now 124-2ubuntu1.24.04.2 amd64 [installed,automatic]
libpolkit-gobject-1-0/noble-updates,now 124-2ubuntu1.24.04.2 amd64 [installed,automatic]
libpopt0/noble,now 1.19+dfsg-1build1 amd64 [installed,automatic]
libproc-processtable-perl/noble,now 0.636-1build3 amd64 [installed,automatic]
libproc2-0/noble-updates,now 2:4.0.4-4ubuntu3.2 amd64 [installed,automatic]
libprotobuf-c1/noble,now 1.4.1-1ubuntu4 amd64 [installed,automatic]
libpsl5t64/noble,now 0.21.2-1.1build1 amd64 [installed,automatic]
libpython3-dev/noble-updates,now 3.12.3-0ubuntu2 amd64 [installed,automatic]
libpython3-stdlib/noble-updates,now 3.12.3-0ubuntu2 amd64 [installed,automatic]
libpython3.12-dev/noble-updates,noble-security,now 3.12.3-1ubuntu0.7 amd64 [installed,automatic]
libpython3.12-minimal/noble-updates,noble-security,now 3.12.3-1ubuntu0.7 amd64 [installed,automatic]
libpython3.12-stdlib/noble-updates,noble-security,now 3.12.3-1ubuntu0.7 amd64 [installed,automatic]
libpython3.12t64/noble-updates,noble-security,now 3.12.3-1ubuntu0.7 amd64 [installed,automatic]
libqmi-glib5/noble,now 1.35.2-0ubuntu2 amd64 [installed,automatic]
libqmi-proxy/noble,now 1.35.2-0ubuntu2 amd64 [installed,automatic]
libqmi-utils/noble,now 1.35.2-0ubuntu2 amd64 [installed,automatic]
libqrtr-glib0/noble,now 1.2.2-1ubuntu4 amd64 [installed,automatic]
libquadmath0/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libreadline8t64/noble,now 8.2-4build1 amd64 [installed,automatic]
libreiserfscore0t64/noble,now 1:3.6.27-7.1build1 amd64 [installed,automatic]
librtmp1/noble,now 2.4+20151223.gitfa8646d.1-2build7 amd64 [installed,automatic]
libsasl2-2/noble-updates,now 2.1.28+dfsg1-5ubuntu3.1 amd64 [installed,automatic]
libsasl2-modules-db/noble-updates,now 2.1.28+dfsg1-5ubuntu3.1 amd64 [installed,automatic]
libsasl2-modules/noble-updates,now 2.1.28+dfsg1-5ubuntu3.1 amd64 [installed,automatic]
libseccomp2/noble-updates,now 2.5.5-1ubuntu3.1 amd64 [installed,automatic]
libselinux1/noble-updates,now 3.5-2ubuntu2.1 amd64 [installed,automatic]
libsemanage-common/noble,now 3.5-1build5 all [installed,automatic]
libsemanage2/noble,now 3.5-1build5 amd64 [installed,automatic]
libsensors-config/noble,now 1:3.6.0-9build1 all [installed,automatic]
libsensors5/noble,now 1:3.6.0-9build1 amd64 [installed,automatic]
libsepol2/noble,now 3.5-2build1 amd64 [installed,automatic]
libsframe1/noble-updates,noble-security,now 2.42-4ubuntu2.5 amd64 [installed,automatic]
libsgutils2-1.46-2/noble,now 1.46-3ubuntu4 amd64 [installed,automatic]
libsharpyuv0/noble,now 1.3.2-0.4build3 amd64 [installed,automatic]
libsigsegv2/noble,now 2.14-1ubuntu2 amd64 [installed,automatic]
libslang2/noble,now 2.3.3-3build2 amd64 [installed,automatic]
libsmartcols1/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed,automatic]
libsodium23/noble,now 1.0.18-1build3 amd64 [installed,automatic]
libsort-naturally-perl/noble,now 1.03-4 all [installed,automatic]
libsqlite3-0/noble-updates,noble-security,now 3.45.1-1ubuntu2.3 amd64 [installed,automatic]
libss2/noble-updates,now 1.47.0-2.4~exp1ubuntu4.1 amd64 [installed,automatic]
libssh-4/noble,now 0.10.6-2build2 amd64 [installed,automatic]
libssl-dev/noble-updates,noble-security,now 3.0.13-0ubuntu3.5 amd64 [installed]
libssl3t64/noble-updates,noble-security,now 3.0.13-0ubuntu3.5 amd64 [installed,automatic]
libstdc++-13-dev/noble-updates,noble-security,now 13.3.0-6ubuntu2~24.04 amd64 [installed,automatic]
libstdc++6/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libstemmer0d/noble,now 2.2.0-4build1 amd64 [installed,automatic]
libsystemd-shared/noble-updates,noble-security,now 255.4-1ubuntu8.8 amd64 [installed,automatic]
libsystemd0/noble-updates,noble-security,now 255.4-1ubuntu8.8 amd64 [installed,automatic]
libtasn1-6/noble-updates,noble-security,now 4.19.0-3ubuntu0.24.04.1 amd64 [installed,automatic]
libtcl8.6/noble,now 8.6.14+dfsg-1build1 amd64 [installed,automatic]
libtdb-dev/noble,now 1.4.10-1build1 amd64 [installed]
libtdb1/noble,now 1.4.10-1build1 amd64 [installed,automatic]
libterm-readkey-perl/noble,now 2.38-2build4 amd64 [installed,automatic]
libtext-charwidth-perl/noble,now 0.04-11build3 amd64 [installed,automatic]
libtext-iconv-perl/noble,now 1.7-8build3 amd64 [installed,automatic]
libtext-wrapi18n-perl/noble,now 0.06-10 all [installed,automatic]
libtiff6/noble-updates,noble-security,now 4.5.1+git230720-4ubuntu2.2 amd64 [installed,automatic]
libtinfo6/noble,now 6.4+20240113-1ubuntu2 amd64 [installed,automatic]
libtirpc-common/noble,now 1.3.4+ds-1.1build1 all [installed,automatic]
libtirpc3t64/noble,now 1.3.4+ds-1.1build1 amd64 [installed,automatic]
libtraceevent1-plugin/noble-updates,now 1:1.8.2-1ubuntu2.1 amd64 [installed,automatic]
libtraceevent1/noble-updates,now 1:1.8.2-1ubuntu2.1 amd64 [installed,automatic]
libtracefs1/noble,now 1.8.0-1ubuntu1 amd64 [installed,automatic]
libtsan2/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libtss2-esys-3.0.2-0t64/noble-updates,noble-security,now 4.0.1-7.1ubuntu5.1 amd64 [installed,automatic]
libtss2-mu-4.0.1-0t64/noble-updates,noble-security,now 4.0.1-7.1ubuntu5.1 amd64 [installed,automatic]
libtss2-sys1t64/noble-updates,noble-security,now 4.0.1-7.1ubuntu5.1 amd64 [installed,automatic]
libtss2-tcti-cmd0t64/noble-updates,noble-security,now 4.0.1-7.1ubuntu5.1 amd64 [installed,automatic]
libtss2-tcti-device0t64/noble-updates,noble-security,now 4.0.1-7.1ubuntu5.1 amd64 [installed,automatic]
libtss2-tcti-mssim0t64/noble-updates,noble-security,now 4.0.1-7.1ubuntu5.1 amd64 [installed,automatic]
libtss2-tcti-swtpm0t64/noble-updates,noble-security,now 4.0.1-7.1ubuntu5.1 amd64 [installed,automatic]
libubsan1/noble-updates,noble-security,now 14.2.0-4ubuntu2~24.04 amd64 [installed,automatic]
libuchardet0/noble,now 0.0.8-1build1 amd64 [installed,automatic]
libudev1/noble-updates,noble-security,now 255.4-1ubuntu8.8 amd64 [installed,automatic]
libudisks2-0/noble-updates,noble-security,now 2.10.1-6ubuntu1.2 amd64 [installed,automatic]
libunistring5/noble-updates,now 1.1-2build1.1 amd64 [installed,automatic]
libunwind8/noble-updates,now 1.6.2-3build1.1 amd64 [installed,automatic]
liburcu8t64/noble,now 0.14.0-3.1build1 amd64 [installed,automatic]
libusb-1.0-0/noble,now 2:1.0.27-1 amd64 [installed,automatic]
libutempter0/noble,now 1.2.1-3build1 amd64 [installed,automatic]
libuuid1/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed,automatic]
libuv1t64/noble,now 1.48.0-1.1build1 amd64 [installed,automatic]
libvolume-key1/noble,now 0.3.12-7build2 amd64 [installed,automatic]
libwebp7/noble,now 1.3.2-0.4build3 amd64 [installed,automatic]
libwrap0/noble,now 7.6.q-33 amd64 [installed]
libx11-6/noble,now 2:1.8.7-1build1 amd64 [installed,automatic]
libx11-data/noble,now 2:1.8.7-1build1 all [installed,automatic]
libxau6/noble,now 1:1.0.9-1build6 amd64 [installed,automatic]
libxcb1/noble,now 1.15-1ubuntu2 amd64 [installed,automatic]
libxdmcp6/noble,now 1:1.1.3-0ubuntu6 amd64 [installed,automatic]
libxext6/noble,now 2:1.3.4-1build2 amd64 [installed,automatic]
libxkbcommon0/noble,now 1.6.0-1build1 amd64 [installed,automatic]
libxml2/noble-updates,noble-security,now 2.9.14+dfsg-1.3ubuntu3.3 amd64 [installed,automatic]
libxmlb2/noble,now 0.3.18-1 amd64 [installed,automatic]
libxmlsec1t64-openssl/noble,now 1.2.39-5build2 amd64 [installed,automatic]
libxmlsec1t64/noble,now 1.2.39-5build2 amd64 [installed,automatic]
libxmuu1/noble,now 2:1.1.3-3build2 amd64 [installed,automatic]
libxpm4/noble,now 1:3.5.17-1build2 amd64 [installed,automatic]
libxslt1.1/noble-updates,noble-security,now 1.1.39-0exp1ubuntu0.24.04.2 amd64 [installed,automatic]
libxtables12/noble,now 1.8.10-3ubuntu2 amd64 [installed,automatic]
libxxhash0/noble,now 0.8.2-2build1 amd64 [installed,automatic]
libyaml-0-2/noble,now 0.2.5-1build1 amd64 [installed,automatic]
libzstd1/noble-updates,now 1.5.5+dfsg2-2build1.1 amd64 [installed,automatic]
linux-base/noble-updates,now 4.5ubuntu9+24.04.1 all [installed,automatic]
linux-headers-6.8.0-60-generic/noble-updates,noble-security,now 6.8.0-60.63 amd64 [installed,automatic]
linux-headers-6.8.0-60/noble-updates,noble-security,now 6.8.0-60.63 all [installed,automatic]
linux-headers-6.8.0-62-generic/noble-updates,noble-security,now 6.8.0-62.65 amd64 [installed,automatic]
linux-headers-6.8.0-62/noble-updates,noble-security,now 6.8.0-62.65 all [installed,automatic]
linux-headers-generic/noble-updates,noble-security,now 6.8.0-62.65 amd64 [installed,automatic]
linux-headers-virtual/noble-updates,noble-security,now 6.8.0-62.65 amd64 [installed,automatic]
linux-image-6.8.0-60-generic/noble-updates,noble-security,now 6.8.0-60.63 amd64 [installed,automatic]
linux-image-6.8.0-62-generic/noble-updates,noble-security,now 6.8.0-62.65 amd64 [installed,automatic]
linux-image-virtual/noble-updates,noble-security,now 6.8.0-62.65 amd64 [installed,automatic]
linux-libc-dev/noble-updates,noble-security,now 6.8.0-62.65 amd64 [installed,automatic]
linux-modules-6.8.0-60-generic/noble-updates,noble-security,now 6.8.0-60.63 amd64 [installed,automatic]
linux-modules-6.8.0-62-generic/noble-updates,noble-security,now 6.8.0-62.65 amd64 [installed,automatic]
linux-tools-6.8.0-60-generic/noble-updates,noble-security,now 6.8.0-60.63 amd64 [installed,automatic]
linux-tools-6.8.0-60/noble-updates,noble-security,now 6.8.0-60.63 amd64 [installed,automatic]
linux-tools-6.8.0-62-generic/noble-updates,noble-security,now 6.8.0-62.65 amd64 [installed,automatic]
linux-tools-6.8.0-62/noble-updates,noble-security,now 6.8.0-62.65 amd64 [installed,automatic]
linux-tools-common/noble-updates,noble-security,now 6.8.0-62.65 all [installed,automatic]
linux-virtual/noble-updates,noble-security,now 6.8.0-62.65 amd64 [installed]
locales/noble-updates,noble-security,now 2.39-0ubuntu8.4 all [installed,automatic]
login/noble-updates,now 1:4.13+dfsg1-4ubuntu3.2 amd64 [installed]
logrotate/noble,now 3.21.0-2build1 amd64 [installed,automatic]
logsave/noble-updates,now 1.47.0-2.4~exp1ubuntu4.1 amd64 [installed,automatic]
lsb-release/noble,now 12.0-2 all [installed,automatic]
lshw/noble,now 02.19.git.2021.06.19.996aaad9c7-2build3 amd64 [installed,automatic]
lsof/noble,now 4.95.0-1build3 amd64 [installed,automatic]
lto-disabled-list/noble,now 47 all [installed,automatic]
lvm2/noble-updates,now 2.03.16-3ubuntu3.2 amd64 [installed,automatic]
lxd-agent-loader/noble-updates,now 0.7ubuntu0.1 all [installed,automatic]
lxd-installer/noble-updates,now 4ubuntu0.1 all [installed,automatic]
make/noble,now 4.3-4.1build2 amd64 [installed,automatic]
man-db/noble,now 2.12.0-4build2 amd64 [installed,automatic]
manpages-dev/noble,now 6.7-2 all [installed,automatic]
manpages/noble,now 6.7-2 all [installed,automatic]
mawk/noble,now 1.3.4.20240123-1build1 amd64 [installed,automatic]
mdadm/noble-updates,now 4.3-1ubuntu2.1 amd64 [installed,automatic]
media-types/noble,now 10.1.0 all [installed,automatic]
modemmanager/noble,now 1.23.4-0ubuntu2 amd64 [installed,automatic]
mokutil/noble,now 0.6.0-2build3 amd64 [installed,automatic]
motd-news-config/noble-updates,now 13ubuntu10.2 all [installed,automatic]
mount/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed,automatic]
mtr-tiny/noble-updates,now 0.95-1.1ubuntu0.1 amd64 [installed,automatic]
multipath-tools/noble,now 0.9.4-5ubuntu8 amd64 [installed,automatic]
nano/noble-updates,noble-security,now 7.2-2ubuntu0.1 amd64 [installed,automatic]
ncurses-base/noble,now 6.4+20240113-1ubuntu2 all [installed]
ncurses-bin/noble,now 6.4+20240113-1ubuntu2 amd64 [installed]
ncurses-term/noble,now 6.4+20240113-1ubuntu2 all [installed]
needrestart/noble-updates,noble-security,now 3.6-7ubuntu4.5 all [installed,automatic]
netbase/noble,now 6.4 all [installed,automatic]
netcat-openbsd/noble,now 1.226-1ubuntu2 amd64 [installed,automatic]
netplan-generator/noble-updates,now 1.1.2-2~ubuntu24.04.1 amd64 [installed,automatic]
netplan.io/noble-updates,now 1.1.2-2~ubuntu24.04.1 amd64 [installed,automatic]
networkd-dispatcher/noble,now 2.2.4-1 all [installed,automatic]
nftables/noble,now 1.0.9-1build1 amd64 [installed,automatic]
ntfs-3g/noble,now 1:2022.10.3-1.2ubuntu3 amd64 [installed,automatic]
numactl/noble,now 2.0.18-1build1 amd64 [installed,automatic]
open-iscsi/now 2.1.9-3ubuntu5.3 amd64 [installed,upgradable to: 2.1.9-3ubuntu5.4]
open-vm-tools/noble-updates,noble-security,now 2:12.4.5-1~ubuntu0.24.04.2 amd64 [installed,automatic]
openssh-client/noble-updates,now 1:9.6p1-3ubuntu13.12 amd64 [installed,automatic]
openssh-server/noble-updates,now 1:9.6p1-3ubuntu13.12 amd64 [installed]
openssh-sftp-server/noble-updates,now 1:9.6p1-3ubuntu13.12 amd64 [installed]
openssl/noble-updates,noble-security,now 3.0.13-0ubuntu3.5 amd64 [installed]
os-prober/noble,now 1.81ubuntu4 amd64 [installed,automatic]
overlayroot/noble-updates,now 0.49~24.04.1 all [installed,automatic]
packagekit-tools/noble-updates,now 1.2.8-2ubuntu1.2 amd64 [installed,automatic]
packagekit/noble-updates,now 1.2.8-2ubuntu1.2 amd64 [installed,automatic]
parted/noble,now 3.6-4build1 amd64 [installed,automatic]
passwd/noble-updates,now 1:4.13+dfsg1-4ubuntu3.2 amd64 [installed,automatic]
pastebinit/noble,now 1.6.2-1 all [installed,automatic]
patch/noble,now 2.7.6-7build3 amd64 [installed,automatic]
pci.ids/noble-updates,now 0.0~2024.03.31-1ubuntu0.1 all [installed,automatic]
pciutils/noble,now 1:3.10.0-2build1 amd64 [installed,automatic]
perl-base/noble-updates,noble-security,now 5.38.2-3.2ubuntu0.1 amd64 [installed,automatic]
perl-modules-5.38/noble-updates,noble-security,now 5.38.2-3.2ubuntu0.1 all [installed,automatic]
perl/noble-updates,noble-security,now 5.38.2-3.2ubuntu0.1 amd64 [installed,automatic]
pinentry-curses/noble,now 1.2.1-3ubuntu5 amd64 [installed,automatic]
plymouth-theme-ubuntu-text/noble-updates,now 24.004.60-1ubuntu7.1 amd64 [installed,automatic]
plymouth/noble-updates,now 24.004.60-1ubuntu7.1 amd64 [installed,automatic]
polkitd/noble-updates,now 124-2ubuntu1.24.04.2 amd64 [installed,automatic]
pollinate/noble-updates,now 4.33-3.1ubuntu1.1 all [installed,automatic]
powermgmt-base/noble,now 1.37 all [installed,automatic]
procps/noble-updates,now 2:4.0.4-4ubuntu3.2 amd64 [installed,automatic]
psmisc/noble,now 23.7-1build1 amd64 [installed,automatic]
publicsuffix/noble,now 20231001.0357-0.1 all [installed,automatic]
python-apt-common/noble-updates,now 2.7.7ubuntu4 all [installed,automatic]
python-babel-localedata/noble,now 2.10.3-3build1 all [installed]
python3-apport/noble-updates,noble-security,now 2.28.1-0ubuntu3.7 all [installed,automatic]
python3-apt/noble-updates,now 2.7.7ubuntu4 amd64 [installed,automatic]
python3-attr/noble,now 23.2.0-2 all [installed,automatic]
python3-automat/noble,now 22.10.0-2 all [installed,automatic]
python3-babel/noble,now 2.10.3-3build1 all [installed]
python3-bcrypt/noble,now 3.2.2-1build1 amd64 [installed,automatic]
python3-blinker/noble,now 1.7.0-1 all [installed,automatic]
python3-boto3/noble,now 1.34.46+dfsg-1ubuntu1 all [installed,automatic]
python3-botocore/noble,now 1.34.46+repack-1ubuntu1 all [installed,automatic]
python3-bpfcc/noble,now 0.29.1+ds-1ubuntu7 all [installed,automatic]
python3-certifi/noble,now 2023.11.17-1 all [installed,automatic]
python3-cffi-backend/noble,now 1.16.0-2build1 amd64 [installed,automatic]
python3-chardet/noble,now 5.2.0+dfsg-1 all [installed,automatic]
python3-click/noble,now 8.1.6-2 all [installed,automatic]
python3-colorama/noble,now 0.4.6-4 all [installed,automatic]
python3-commandnotfound/noble,now 23.04.0 all [installed,automatic]
python3-configobj/noble,now 5.0.8-3 all [installed,automatic]
python3-constantly/noble,now 23.10.4-1 all [installed,automatic]
python3-cryptography/noble-updates,noble-security,now 41.0.7-4ubuntu0.1 amd64 [installed,automatic]
python3-dateutil/noble,now 2.8.2-3ubuntu1 all [installed,automatic]
python3-dbus/noble,now 1.3.2-5build3 amd64 [installed,automatic]
python3-debconf/noble,now 1.5.86ubuntu1 all [installed,automatic]
python3-debian/noble,now 0.1.49ubuntu2 all [installed,automatic]
python3-dev/noble-updates,now 3.12.3-0ubuntu2 amd64 [installed,automatic]
python3-distro-info/noble,now 1.7build1 all [installed,automatic]
python3-distro/noble,now 1.9.0-1 all [installed,automatic]
python3-distupgrade/noble-updates,now 1:24.04.26 all [installed,automatic]
python3-gdbm/noble,now 3.12.3-0ubuntu1 amd64 [installed,automatic]
python3-gi/noble,now 3.48.2-1 amd64 [installed,automatic]
python3-hamcrest/noble,now 2.1.0-1 all [installed,automatic]
python3-httplib2/noble,now 0.20.4-3 all [installed,automatic]
python3-hyperlink/noble,now 21.0.0-5 all [installed,automatic]
python3-idna/noble-updates,noble-security,now 3.6-2ubuntu0.1 all [installed,automatic]
python3-incremental/noble,now 22.10.0-1 all [installed,automatic]
python3-jinja2/noble-updates,noble-security,now 3.1.2-1ubuntu1.3 all [installed]
python3-jmespath/noble,now 1.0.1-1 all [installed,automatic]
python3-json-pointer/noble,now 2.0-0ubuntu1 all [installed]
python3-jsonpatch/noble,now 1.32-3 all [installed]
python3-jsonschema/noble,now 4.10.3-2ubuntu1 all [installed]
python3-jwt/noble,now 2.7.0-1 all [installed,automatic]
python3-launchpadlib/noble,now 1.11.0-6 all [installed,automatic]
python3-lazr.restfulclient/noble,now 0.14.6-1 all [installed,automatic]
python3-lazr.uri/noble,now 1.0.6-3 all [installed,automatic]
python3-magic/noble,now 2:0.4.27-3 all [installed,automatic]
python3-markdown-it/noble,now 3.0.0-2 all [installed,automatic]
python3-markupsafe/noble,now 2.1.5-1build2 amd64 [installed]
python3-mdurl/noble,now 0.1.2-1 all [installed,automatic]
python3-minimal/noble-updates,now 3.12.3-0ubuntu2 amd64 [installed,automatic]
python3-netaddr/noble,now 0.8.0-2ubuntu1 all [installed,automatic]
python3-netifaces/noble,now 0.11.0-2build3 amd64 [installed,automatic]
python3-netplan/noble-updates,now 1.1.2-2~ubuntu24.04.1 amd64 [installed,automatic]
python3-newt/noble,now 0.52.24-2ubuntu2 amd64 [installed,automatic]
python3-oauthlib/noble,now 3.2.2-1 all [installed,automatic]
python3-openssl/noble,now 23.2.0-1 all [installed,automatic]
python3-packaging/noble,now 24.0-1 all [installed,automatic]
python3-pexpect/noble,now 4.9-2 all [installed,automatic]
python3-pip/noble-updates,noble-security,now 24.0+dfsg-1ubuntu1.2 all [installed]
python3-pkg-resources/noble-updates,noble-security,now 68.1.2-2ubuntu1.2 all [installed,automatic]
python3-problem-report/noble-updates,noble-security,now 2.28.1-0ubuntu3.7 all [installed,automatic]
python3-ptyprocess/noble,now 0.7.0-5 all [installed,automatic]
python3-pyasn1-modules/noble,now 0.2.8-1 all [installed,automatic]
python3-pyasn1/noble,now 0.4.8-4 all [installed,automatic]
python3-pygments/noble,now 2.17.2+dfsg-1 all [installed,automatic]
python3-pyparsing/noble,now 3.1.1-1 all [installed,automatic]
python3-pyrsistent/noble,now 0.20.0-1build2 amd64 [installed]
python3-requests/noble-updates,noble-security,now 2.31.0+dfsg-1ubuntu1.1 all [installed,automatic]
python3-rich/noble,now 13.7.1-1 all [installed,automatic]
python3-s3transfer/noble,now 0.10.1-1ubuntu2 all [installed,automatic]
python3-serial/noble,now 3.5-2 all [installed]
python3-service-identity/noble,now 24.1.0-1 all [installed,automatic]
python3-setuptools/noble-updates,noble-security,now 68.1.2-2ubuntu1.2 all [installed,automatic]
python3-six/noble,now 1.16.0-4 all [installed,automatic]
python3-software-properties/noble-updates,now 0.99.49.2 all [installed,automatic]
python3-systemd/noble,now 235-1build4 amd64 [installed,automatic]
python3-tdb/noble,now 1.4.10-1build1 amd64 [installed]
python3-twisted/noble-updates,noble-security,now 24.3.0-1ubuntu0.1 all [installed,automatic]
python3-typing-extensions/noble,now 4.10.0-1 all [installed,automatic]
python3-tz/noble,now 2024.1-2 all [installed]
python3-update-manager/noble-updates,now 1:24.04.12 all [installed,automatic]
python3-urllib3/noble-updates,noble-security,now 2.0.7-1ubuntu0.2 all [installed,automatic]
python3-wadllib/noble,now 1.3.6-5 all [installed,automatic]
python3-wheel/noble,now 0.42.0-2 all [installed,automatic]
python3-yaml/noble,now 6.0.1-2build2 amd64 [installed,automatic]
python3-zope.interface/noble,now 6.1-1build1 amd64 [installed,automatic]
python3.12-dev/noble-updates,noble-security,now 3.12.3-1ubuntu0.7 amd64 [installed,automatic]
python3.12-minimal/noble-updates,noble-security,now 3.12.3-1ubuntu0.7 amd64 [installed,automatic]
python3.12/noble-updates,noble-security,now 3.12.3-1ubuntu0.7 amd64 [installed,automatic]
python3/noble-updates,now 3.12.3-0ubuntu2 amd64 [installed,automatic]
readline-common/noble,now 8.2-4build1 all [installed,automatic]
rpcsvc-proto/noble,now 1.4.2-0ubuntu7 amd64 [installed,automatic]
rsync/noble-updates,noble-security,now 3.2.7-1ubuntu1.2 amd64 [installed,automatic]
rsyslog/noble-updates,now 8.2312.0-3ubuntu9.1 amd64 [installed,automatic]
run-one/noble,now 1.17-0ubuntu2 all [installed,automatic]
sbsigntool/noble,now 0.9.4-3.1ubuntu7 amd64 [installed,automatic]
screen/noble,now 4.9.1-1build1 amd64 [installed,automatic]
secureboot-db/noble,now 1.9build1 amd64 [installed,automatic]
sed/noble,now 4.9-2build1 amd64 [installed,automatic]
sensible-utils/noble,now 0.0.22 all [installed,automatic]
sg3-utils-udev/noble,now 1.46-3ubuntu4 all [installed,automatic]
sg3-utils/noble,now 1.46-3ubuntu4 amd64 [installed,automatic]
sgml-base/noble,now 1.31 all [installed,automatic]
shared-mime-info/noble,now 2.4-4 amd64 [installed,automatic]
shim-signed/noble,now 1.58+15.8-0ubuntu1 amd64 [installed]
snapd/noble-updates,now 2.67.1+24.04 amd64 [installed,automatic]
software-properties-common/noble-updates,now 0.99.49.2 all [installed,automatic]
sosreport/noble-updates,now 4.8.2-0ubuntu0~24.04.2 amd64 [installed,automatic]
squashfs-tools/noble,now 1:4.6.1-1build1 amd64 [installed,automatic]
ssh-import-id/noble-updates,now 5.11-0ubuntu2.24.04.1 all [installed]
strace/noble,now 6.8-0ubuntu2 amd64 [installed,automatic]
sudo/noble,now 1.9.15p5-3ubuntu5 amd64 [installed,automatic]
sysstat/noble,now 12.6.1-2 amd64 [installed,automatic]
systemd-dev/noble-updates,noble-security,now 255.4-1ubuntu8.8 all [installed,automatic]
systemd-hwe-hwdb/noble-updates,now 255.1.4 all [installed,automatic]
systemd-resolved/noble-updates,noble-security,now 255.4-1ubuntu8.8 amd64 [installed,automatic]
systemd-sysv/noble-updates,noble-security,now 255.4-1ubuntu8.8 amd64 [installed,automatic]
systemd-timesyncd/noble-updates,noble-security,now 255.4-1ubuntu8.8 amd64 [installed,automatic]
systemd/noble-updates,noble-security,now 255.4-1ubuntu8.8 amd64 [installed,automatic]
sysvinit-utils/noble,now 3.08-6ubuntu3 amd64 [installed,automatic]
tar/noble,now 1.35+dfsg-3build1 amd64 [installed,automatic]
tcl8.6/noble,now 8.6.14+dfsg-1build1 amd64 [installed,automatic]
tcl/noble,now 8.6.14build1 amd64 [installed,automatic]
tcpdump/noble,now 4.99.4-3ubuntu4 amd64 [installed,automatic]
telnet/noble,now 0.17+2.5-3ubuntu4 all [installed,automatic]
thin-provisioning-tools/noble-updates,now 0.9.0-2ubuntu5.1 amd64 [installed,automatic]
time/noble,now 1.9-0.2build1 amd64 [installed,automatic]
tmux/noble-updates,now 3.4-1ubuntu0.1 amd64 [installed,automatic]
tnftp/noble,now 20230507-2build3 amd64 [installed,automatic]
tpm-udev/noble,now 0.6ubuntu1 all [installed,automatic]
trace-cmd/noble,now 3.2-1ubuntu2 amd64 [installed,automatic]
tzdata/noble-updates,noble-security,now 2025b-0ubuntu0.24.04.1 all [installed,automatic]
ubuntu-kernel-accessories/noble-updates,now 1.539.2 amd64 [installed,automatic]
ubuntu-keyring/noble,now 2023.11.28.1 all [installed,automatic]
ubuntu-minimal/noble-updates,now 1.539.2 amd64 [installed]
ubuntu-pro-client-l10n/noble-updates,now 35.1ubuntu0~24.04 amd64 [installed,automatic]
ubuntu-pro-client/noble-updates,now 35.1ubuntu0~24.04 amd64 [installed,automatic]
ubuntu-release-upgrader-core/noble-updates,now 1:24.04.26 all [installed,automatic]
ubuntu-server/noble-updates,now 1.539.2 amd64 [installed]
ubuntu-standard/noble-updates,now 1.539.2 amd64 [installed]
ucf/noble,now 3.0043+nmu1 all [installed,automatic]
udev/noble-updates,noble-security,now 255.4-1ubuntu8.8 amd64 [installed,automatic]
udisks2/noble-updates,noble-security,now 2.10.1-6ubuntu1.2 amd64 [installed,automatic]
ufw/noble,now 0.36.2-6 all [installed,automatic]
unattended-upgrades/noble,now 2.9.1+nmu4ubuntu1 all [installed,automatic]
update-manager-core/noble-updates,now 1:24.04.12 all [installed,automatic]
update-notifier-common/noble-updates,now 3.192.68.2 all [installed,automatic]
usb-modeswitch-data/noble,now 20191128-6 all [installed,automatic]
usb-modeswitch/noble,now 2.6.1-3ubuntu3 amd64 [installed,automatic]
usb.ids/noble,now 2024.03.18-1 all [installed,automatic]
usbutils/noble,now 1:017-3build1 amd64 [installed,automatic]
util-linux/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed]
uuid-runtime/noble-updates,now 2.39.3-9ubuntu6.2 amd64 [installed,automatic]
vim-common/noble-updates,noble-security,now 2:9.1.0016-1ubuntu7.8 all [installed,automatic]
vim-runtime/noble-updates,noble-security,now 2:9.1.0016-1ubuntu7.8 all [installed,automatic]
vim-tiny/noble-updates,noble-security,now 2:9.1.0016-1ubuntu7.8 amd64 [installed,automatic]
vim/noble-updates,noble-security,now 2:9.1.0016-1ubuntu7.8 amd64 [installed,automatic]
wget/noble-updates,noble-security,now 1.21.4-1ubuntu4.1 amd64 [installed,automatic]
whiptail/noble,now 0.52.24-2ubuntu2 amd64 [installed,automatic]
xauth/noble,now 1:1.1.2-1build1 amd64 [installed,automatic]
xdg-user-dirs/noble,now 0.18-1build1 amd64 [installed,automatic]
xfsprogs/noble-updates,now 6.6.0-1ubuntu2.1 amd64 [installed,automatic]
xkb-data/noble-updates,now 2.41-2ubuntu1.1 all [installed,automatic]
xml-core/noble,now 0.19 all [installed,automatic]
xxd/noble-updates,noble-security,now 2:9.1.0016-1ubuntu7.8 amd64 [installed,automatic]
xz-utils/noble-updates,noble-security,now 5.6.1+really5.4.5-1ubuntu0.2 amd64 [installed,automatic]
zerofree/noble,now 1.1.1-1build5 amd64 [installed,automatic]
zlib1g-dev/noble-updates,now 1:1.3.dfsg-3.1ubuntu2.1 amd64 [installed,automatic]
zlib1g/noble-updates,now 1:1.3.dfsg-3.1ubuntu2.1 amd64 [installed,automatic]
zstd/noble-updates,now 1.5.5+dfsg2-2build1.1 amd64 [installed,automatic]

and my pip list:

root@ubuntu:~# pip list
Package             Version
------------------- --------------
attrs               23.2.0
Automat             22.10.0
Babel               2.10.3
bcc                 0.29.1
bcrypt              3.2.2
blinker             1.7.0
boto3               1.34.46
botocore            1.34.46
certifi             2023.11.17
chardet             5.2.0
click               8.1.6
cloud-init          25.1.2
colorama            0.4.6
command-not-found   0.3
configobj           5.0.8
constantly          23.10.4
cryptography        41.0.7
dbus-python         1.3.2
distro              1.9.0
distro-info         1.7+build1
editabletuple       1.5.3
future              1.0.0
httplib2            0.20.4
hyperlink           21.0.0
idna                3.6
incremental         22.10.0
Jinja2              3.1.2
jmespath            1.0.1
jsonpatch           1.32
jsonpointer         2.0
jsonschema          4.10.3
launchpadlib        1.11.0
lazr.restfulclient  0.14.6
lazr.uri            1.0.6
lxml                5.4.0
markdown-it-py      3.0.0
MarkupSafe          2.1.5
mdurl               0.1.2
netaddr             0.8.0
netifaces           0.11.0
oauthlib            3.2.2
packaging           24.0
pexpect             4.9.0
pip                 24.0
ptyprocess          0.7.0
pyasn1              0.4.8
pyasn1-modules      0.2.8
Pygments            2.17.2
PyGObject           3.48.2
PyHamcrest          2.1.0
PyJWT               2.7.0
pymavlink           2.4.47
pyOpenSSL           23.2.0
pyparsing           3.1.1
pyrsistent          0.20.0
pyserial            3.5
python-apt          2.7.7+ubuntu4
python-dateutil     2.8.2
python-debian       0.1.49+ubuntu2
python-magic        0.4.27
pytz                2024.1
PyYAML              6.0.1
requests            2.31.0
rich                13.7.1
s3transfer          0.10.1
service-identity    24.1.0
setuptools          68.1.2
six                 1.16.0
sos                 4.8.2
ssh-import-id       5.11
systemd-python      235
tdb-py              0.9.5
Twisted             24.3.0
typing_extensions   4.10.0
ubuntu-pro-client   8001
ufw                 0.36.2
unattended-upgrades 0.1
urllib3             2.0.7
wadllib             1.3.6
wheel               0.42.0
zope.interface      6.1

1 Like

you need to do this:

  • python3 -m pip uninstall tdb-py
  • sudo apt install python3-tdb

the problem is there are two ā€˜tdb’ packages for python. The tdb-py package is for a completely different database format.

I’ve been doing quite a lot of testing of the SIM7070G, which is a CAT-M modem.