public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] Can't kill /usr/lib64/libreoffice/program/nsplugin
@ 2013-10-15  8:38 Grant
  2013-10-15  8:44 ` Alan McKinnon
  2013-10-15 15:08 ` Bruce Hill
  0 siblings, 2 replies; 7+ messages in thread
From: Grant @ 2013-10-15  8:38 UTC (permalink / raw
  To: Gentoo mailing list

Multiple instances of /usr/lib64/libreoffice/program/nsplugin keep
spawning even after I kill them. I suspect midori although I have the
libreoffice plugin disabled. Has anyone else seen this?  How can I
confirm my suspicions?

- Grant


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] Can't kill /usr/lib64/libreoffice/program/nsplugin
  2013-10-15  8:38 [gentoo-user] Can't kill /usr/lib64/libreoffice/program/nsplugin Grant
@ 2013-10-15  8:44 ` Alan McKinnon
  2013-10-15 10:39   ` Grant
  2013-10-15 15:08 ` Bruce Hill
  1 sibling, 1 reply; 7+ messages in thread
From: Alan McKinnon @ 2013-10-15  8:44 UTC (permalink / raw
  To: gentoo-user

On 15/10/2013 10:38, Grant wrote:
> Multiple instances of /usr/lib64/libreoffice/program/nsplugin keep
> spawning even after I kill them. I suspect midori although I have the
> libreoffice plugin disabled. Has anyone else seen this?  How can I
> confirm my suspicions?
> 
> - Grant
> 


ps with the f option ?


-- 
Alan McKinnon
alan.mckinnon@gmail.com



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] Can't kill /usr/lib64/libreoffice/program/nsplugin
  2013-10-15  8:44 ` Alan McKinnon
@ 2013-10-15 10:39   ` Grant
  2013-10-15 11:18     ` Adam Carter
  2013-10-15 11:27     ` Alan McKinnon
  0 siblings, 2 replies; 7+ messages in thread
From: Grant @ 2013-10-15 10:39 UTC (permalink / raw
  To: Gentoo mailing list

>> Multiple instances of /usr/lib64/libreoffice/program/nsplugin keep
>> spawning even after I kill them. I suspect midori although I have the
>> libreoffice plugin disabled. Has anyone else seen this?  How can I
>> confirm my suspicions?
>
> ps with the f option ?

I always do 'ps -ef|grep name' but should that indicate whether midori
is to blame?

- Grant


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] Can't kill /usr/lib64/libreoffice/program/nsplugin
  2013-10-15 10:39   ` Grant
@ 2013-10-15 11:18     ` Adam Carter
  2013-10-15 11:27     ` Alan McKinnon
  1 sibling, 0 replies; 7+ messages in thread
From: Adam Carter @ 2013-10-15 11:18 UTC (permalink / raw
  To: gentoo-user@lists.gentoo.org

[-- Attachment #1: Type: text/plain, Size: 455 bytes --]

> >> Multiple instances of /usr/lib64/libreoffice/program/nsplugin keep
> >> spawning even after I kill them. I suspect midori although I have the
> >> libreoffice plugin disabled. Has anyone else seen this?  How can I
> >> confirm my suspicions?
> >
> > ps with the f option ?
>
> I always do 'ps -ef|grep name' but should that indicate whether midori
> is to blame?
>

Check the parent process id (PPID) to see what's responsible for starting
nsplugin.

[-- Attachment #2: Type: text/html, Size: 764 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] Can't kill /usr/lib64/libreoffice/program/nsplugin
  2013-10-15 10:39   ` Grant
  2013-10-15 11:18     ` Adam Carter
@ 2013-10-15 11:27     ` Alan McKinnon
  2013-10-15 16:13       ` Grant
  1 sibling, 1 reply; 7+ messages in thread
From: Alan McKinnon @ 2013-10-15 11:27 UTC (permalink / raw
  To: gentoo-user

On 15/10/2013 12:39, Grant wrote:
>>> Multiple instances of /usr/lib64/libreoffice/program/nsplugin keep
>>> spawning even after I kill them. I suspect midori although I have the
>>> libreoffice plugin disabled. Has anyone else seen this?  How can I
>>> confirm my suspicions?
>>
>> ps with the f option ?
> 
> I always do 'ps -ef|grep name' but should that indicate whether midori
> is to blame?
> 
> - Grant
> 

No, that will grep nsplugin only, that string is unlikely to appear in
the line of ps output of it's parent.

Rather pipe ps -ef into less and search for nsplugin. Less efficient but
a) you should care about that and b) you will get everything and none of
it chucked away by grep

-- 
Alan McKinnon
alan.mckinnon@gmail.com



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] Can't kill /usr/lib64/libreoffice/program/nsplugin
  2013-10-15  8:38 [gentoo-user] Can't kill /usr/lib64/libreoffice/program/nsplugin Grant
  2013-10-15  8:44 ` Alan McKinnon
@ 2013-10-15 15:08 ` Bruce Hill
  1 sibling, 0 replies; 7+ messages in thread
From: Bruce Hill @ 2013-10-15 15:08 UTC (permalink / raw
  To: gentoo-user

On Tue, Oct 15, 2013 at 01:38:19AM -0700, Grant wrote:
> Multiple instances of /usr/lib64/libreoffice/program/nsplugin keep
> spawning even after I kill them. I suspect midori although I have the
> libreoffice plugin disabled. Has anyone else seen this?  How can I
> confirm my suspicions?

Is pstree useful at all?
-- 
Happy Penguin Computers               >')
126 Fenco Drive                       ( \
Tupelo, MS 38801                       ^^
support@happypenguincomputers.com
662-269-2706 662-205-6424
http://happypenguincomputers.com/

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

Don't top-post: http://en.wikipedia.org/wiki/Top_post#Top-posting


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] Can't kill /usr/lib64/libreoffice/program/nsplugin
  2013-10-15 11:27     ` Alan McKinnon
@ 2013-10-15 16:13       ` Grant
  0 siblings, 0 replies; 7+ messages in thread
From: Grant @ 2013-10-15 16:13 UTC (permalink / raw
  To: Gentoo mailing list

>>>> Multiple instances of /usr/lib64/libreoffice/program/nsplugin keep
>>>> spawning even after I kill them. I suspect midori although I have the
>>>> libreoffice plugin disabled. Has anyone else seen this?  How can I
>>>> confirm my suspicions?
>>>
>>> ps with the f option ?
>>
>> I always do 'ps -ef|grep name' but should that indicate whether midori
>> is to blame?
>>
> No, that will grep nsplugin only, that string is unlikely to appear in
> the line of ps output of it's parent.
>
> Rather pipe ps -ef into less and search for nsplugin. Less efficient but
> a) you should care about that and b) you will get everything and none of
> it chucked away by grep

Yep, it's midori.  pstree was no good for this.  Thanks everyone.

- Grant


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-10-15 16:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-15  8:38 [gentoo-user] Can't kill /usr/lib64/libreoffice/program/nsplugin Grant
2013-10-15  8:44 ` Alan McKinnon
2013-10-15 10:39   ` Grant
2013-10-15 11:18     ` Adam Carter
2013-10-15 11:27     ` Alan McKinnon
2013-10-15 16:13       ` Grant
2013-10-15 15:08 ` Bruce Hill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox