I am trying to run ImageMagick to mass resize many files for the first time.
When I try to run it, the “imagemagick” and “ImageMagick” commands both fail.
jc@localhost:~$ which ImageMagick
which: no ImageMagick in (/home/jc/bin:/home/jc/bin:/usr/local/bin:/usr/bin:/bin)
jc@localhost:~$ which imagemagick
which: no imagemagick in (/home/jc/bin:/home/jc/bin:/usr/local/bin:/usr/bin:/bin)
jc@localhost:~$ ImageMagick
ImageMagick: command not found
So I try to install it and I get the following:
c@localhost:~$ sudo su
localhost:/home/jc # zypper addrepo https://download.opensuse.org/repositories/graphics/openSUSE_Factory_ARM/graphics.repo
Adding repository 'Graphics Project (openSUSE_Factory_ARM)' ..........................................................................[done]
Repository 'Graphics Project (openSUSE_Factory_ARM)' successfully added
URI : https://download.opensuse.org/repositories/graphics/openSUSE_Factory_ARM/
Enabled : Yes
GPG Check : Yes
Autorefresh : No
Priority : 99 (default priority)
Repository priorities in effect: (See 'zypper lr -P' for details)
90 (raised priority) : 1 repository
99 (default priority) : 6 repositories
localhost:/home/jc # zypper refresh
Repository 'repo-non-free' is up to date.
New repository or package signing key received:
Repository: Graphics Project (openSUSE_Factory_ARM)
Key Fingerprint: 4B9E 37E2 BED9 C972 5FAD 399D 55E7 BAF9 4F31 1B1D
Key Name: graphics OBS Project <graphics@build.opensuse.org>
Key Algorithm: DSA 1024
Key Created: Tue Mar 19 00:03:40 2024
Key Expires: Thu May 28 00:03:40 2026
Rpm Name: gpg-pubkey-4f311b1d-65f90e9c
Note: Signing data enables the recipient to verify that no modifications occurred after the data
were signed. Accepting data with no, wrong or unknown signature can lead to a corrupted system
and in extreme cases even to a system compromise.
Note: A GPG pubkey is clearly identified by its fingerprint. Do not rely on the key's name. If
you are not sure whether the presented key is authentic, ask the repository provider or check
their web site. Many providers maintain a web page showing the fingerprints of the GPG keys they
are using.
Do you want to reject the key, trust temporarily, or trust always? [r/t/a/?] (r): a
Retrieving repository 'Graphics Project (openSUSE_Factory_ARM)' metadata .............................................................[done]
Building repository 'Graphics Project (openSUSE_Factory_ARM)' cache ..................................................................[done]
Repository 'repo-non-oss' is up to date.
Repository 'repo-openh264' is up to date.
Repository 'repo-oss' is up to date.
Repository 'update-tumbleweed' is up to date.
Repository 'packman' is up to date.
All repositories have been refreshed.
localhost:/home/jc # zypper install ImageMagick
Refreshing service 'NVIDIA'.
Refreshing service 'openSUSE'.
Loading repository data...
Reading installed packages...
'ImageMagick' is already installed.
No update candidate for 'ImageMagick-7.1.1.36-1.1.x86_64'. The highest available version is already installed.
Resolving package dependencies...
Nothing to do.
localhost:/home/jc # which ImageMagick
which: no ImageMagick in (/sbin:/usr/sbin:/usr/local/sbin:/root/bin:/usr/local/bin:/usr/bin:/bin)
localhost:/home/jc # zypper addrepo https://download.opensuse.or
I also have tried to force install it.
What am I doing wrong?