IMX8 Debian Package Update: Difference between revisions
From Variscite Wiki
No edit summary |
|||
Line 25: | Line 25: | ||
# apt-get update | # apt-get update | ||
= | = Upgrading to latest package = | ||
# apt-get --only-upgrade install <package name> | # apt-get --only-upgrade install <package name> | ||
Note: The option --only-upgrade will upgrade the package only if it is already installed, and without installing new packages. | Note: The option --only-upgrade will upgrade the package only if it is already installed, and without installing new packages. |
Revision as of 08:34, 25 September 2024
Warning: This page is designed to be used with a 'release' URL parameter.
This page is using the default release mx8mp-debian-bookworm-6.1.36_2.1.0-v1.0.
To view this page for a specific Variscite SoM and software release, please follow these steps:
- Visit variwiki.com
- Select your SoM
- Select the software release
Upgrading Debian Packages
Debian Package Upgrade
By default Debian release uses snapshot at the time of release. The package upgrade requires manual addition to the latest apt resources.
Warning
- Latest debian.org packages may break your application libraries stack of your existing application.
- Please verify your application and package dependencies before upgrading to latest Debian packages.
Adding debian.org to apt source list
# echo "deb https://deb.debian.org/debian bookworm main contrib nono-free" > /etc/apt/sources.list.d/debian_update.list # echo "deb-src https://deb.debian.org/debian bookworm main contrib nono-free" >> /etc/apt/sources.list.d/debian_update.list # echo "deb https://deb.debian.org/debian bookworm-backports main contrib nono-free" >> /etc/apt/sources.list.d/debian_update.list # echo "deb-src https://deb.debian.org/debian bookworm-backports main contrib nono-free" >> /etc/apt/sources.list.d/debian_update.list
Updating package repo
# apt-get update
Upgrading to latest package
# apt-get --only-upgrade install <package name>
Note: The option --only-upgrade will upgrade the package only if it is already installed, and without installing new packages.
For example, if you wish to upgrade apache2, below is an example of it.
# apt-get --only-upgrade install apache2