все пакеты на версии, соответствующей условно 22.04.1, и при этом по желанию обновить все пакетики до версии 22.04.2
есть условное понимание того что можно захолдить все пакеты на одной версии, и при необходимости с форсом накатить свежие пакеты с указанием конкртеных версий, но у нас десктоп и пакетов там будет слишком огромное количество, указывать, хранить и отслеживать потом версию каждого установленного пакета по мне - оверкилл
есть идеи?
а кто мешает просто использовать LTS релизы?
а при чем тут лтс? у нас и так они
To hold all packages in Ubuntu 22.04.1, you can use the `apt-mark` command to set all installed packages to a "hold" state. Here's how you can do it: 1. Open a terminal by pressing Ctrl+Alt+T. 2. Update the package lists by running the following command: sudo apt update 3. List all installed packages using the `dpkg` command. Pipe the output to `awk` and `cut` to extract the package names: dpkg --list | awk '/^ii/ { print $2 }' | cut -d: -f1 4. Copy the list of installed package names. 5. Create a file to hold the package names using the following command: sudo nano /etc/apt/preferences.d/hold-packages 6. In the text editor that opens, paste the list of package names and save the file. 7. Exit the text editor. 8. Hold the packages by running the following command: sudo apt-mark hold $(cat /etc/apt/preferences.d/hold-packages) Now, all installed packages on your Ubuntu 22.04.1 system will be held, meaning they won't be automatically upgraded when you run system updates. If you want to unhold the packages later, you can use the `apt-mark unhold` command followed by the package names.
Обсуждают сегодня