have you opened top to see if maybe the monitor you are looking at is
broken…or maybe zypper is a zombie?
i’m not questioning your eyes, but i’ve never (yet) seen a process
that couldn’t be killed this way:
in a terminal:
ps -A | grep -i zypper
the output might be something like:
4182 ? 00:00:00 zypper
4187 ? 00:10:13 zypper
4194 ? 00:10:13 zypper
it might be one line or lots of different lines, at this point we
don’t care, we just want those process numbers at the beginning of the
line…
since we can anticipate that zypper is being run by root, lets become
root to kill it:
su -
do not forget the dash, and give the root password when asked (you
will not see what you type) and hit enter…the prompt will change and
may be red, and will probably have one of these #
so, now as root lets kill:
kill 4182
hit enter and you should not get an error, instead just be returned to
the command prompt…
then do the same to kill all other process ID numbers you received as
output from the ps -A command…
some of the other numbers may or may not be killed when you kill an
earlier number…that is, killing one number may kill several of
the listed numbers…and, if it did then you will get an error kinda
like: “No such process” or something like that when you try…
kill all the numbers listed OR just do another:
ps -A | grep -i zypper
to see if maybe all were killed already
was that helpful/did it work? (if my instructions were too basic it
wasn’t because i didn’t think you knew much, just i can’t see from
here your experience level…ok?)
if that does not kill zypper then you may have to push that box over a
cliff to kill it…
BUT, post back with error messages if need be…before going to a
cliff…
–
palladium