Home > Net >  what is the command to check list of upgradable packages in SUSE linux?
what is the command to check list of upgradable packages in SUSE linux?

Time:10-16

in Ubuntu we use

apt list --upgradable

to get list of all upgradable packages in linux. How we can check list of all upgradable packages in SUSE Linux.

CodePudding user response:

A list of all new available packages.

sudo zypper list-updates --all

https://documentation.suse.com/sles/12-SP4/html/SLES-all/cha-sw-cl.html

  • Related