zypper equivalent to yum groupupdate?

0

Is there an equivalent command?

Tried the obvious:

$ zypper update -t pattern <pattern name>
Warning: The /etc/products.d/baseproduct symlink is dangling or missing!
The link must point to your core products .prod file in /etc/products.d.

Loading repository data...
Reading installed packages...
Package '<pattern name>' is not installed.
Resolving package dependencies...

Nothing to do.

I see in the documentation that removal by pattern is not implemented -- is it the same story for update?

John Westlund

Posted 2016-08-02T21:18:26.990

Reputation: 75

Answers

0

afaik, zypper update does the same ase `yum update; that is:

  • zypper update will try to update all installed packages
  • zypper update package-name will try to update the package with name "package-name".

Chris Maes

Posted 2016-08-02T21:18:26.990

Reputation: 371

But no groupupdate - correct? – John Westlund – 2016-08-03T19:29:47.560

no; you can update a "group"; which is called a "pattern" in zypper; using: zypper update -t pattern <pattern name>. Note that you have to replace <pattern name> by the name of the installed pattern (group) you want to update. – Chris Maes – 2016-08-04T06:22:48.627