LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-19-2018, 10:19 AM   #1
Skippy23
LQ Newbie
 
Registered: Mar 2018
Posts: 11

Rep: Reputation: Disabled
Weird process


Hi all

I awoke this morning and turned on my linux machine. When I started firefox I got a system message stating "Could not start. The current process is not responding. You must turn the process off and start again."...kind of message. So I brought up konsole and did a TOP command. In TOP, at the very top....were two processes...one called Web Con+ with a total time of 102:15:65 and then right below it was the not responding firefox process with a total time of 72:33:71.


The previous night I had been watching an amazon prime movie, but I thought I had shut that down. If I didn't shut this down, and amazon did on their end could this have truncated the process name from web content to web con+ and caused firefox to hang? Thanks
 
Old 03-19-2018, 10:25 AM   #2
jsbjsb001
Senior Member
 
Registered: Mar 2009
Location: Earth, unfortunately...
Distribution: Currently: OpenMandriva. Previously: openSUSE, PCLinuxOS, CentOS, among others over the years.
Posts: 3,881

Rep: Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063
Quote:
Originally Posted by Skippy23 View Post
Hi all

I awoke this morning and turned on my linux machine. When I started firefox I got a system message stating "Could not start. The current process is not responding. You must turn the process off and start again."...kind of message. So I brought up konsole and did a TOP command. In TOP, at the very top....were two processes...one called Web Con+ with a total time of 102:15:65 and then right below it was the not responding firefox process with a total time of 72:33:71.


The previous night I had been watching an amazon prime movie, but I thought I had shut that down. If I didn't shut this down, and amazon did on their end could this have truncated the process name from web content to web con+ and caused firefox to hang? Thanks
I'd just kill the firefox process. If the Web Con+ process is a child process of the firefox process, you should be able to kill the firefox process and the Web Con+ should also be killed.

Try running the following command:

Code:
kill firefox_pid_here
Replace firefox_pid_here with Firefox's PID (process ID), that you can get from the top command. You can also use the kill command to kill the Web Con+ process if need be.

Let us know how it works out for you.
 
Old 03-19-2018, 11:01 AM   #3
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
if you just want to do a quick kill in lue of going through all that it takes to find the pid for Firefox first.

killall firefox

does it in a pinch. sometimes I get them kind of messages when I click to start Firefox more than once, and it gets confused and I just wait it out. nothing majorly serous in my option.

Last edited by BW-userx; 03-19-2018 at 11:03 AM.
 
Old 03-19-2018, 11:08 AM   #4
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,880
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
How could Web Con+ be a child of Firefox when Web Con+ has been running for 102 hours and Firefox has been running for 72 hours?

What's more important would be the %CPU and %MEM that these processes are using, not the fact that they have been running for so long.

You may have to use:
Code:
$ sudo kill -9 <pid>
Or optionally:
Code:
$sudo pkill firefox
I'm also assuming that when you stated that you "turned on" your machine, that it was already on, and you merely woke it up from sleep?

I would kill the firefox process because you were trying to open a web browser and it complained. Not familiar with Web Con+, but it appears to be a web server. If you do not deem that important you could kill that as well. A reboot should clear that up either case.
 
Old 03-19-2018, 11:53 AM   #5
Skippy23
LQ Newbie
 
Registered: Mar 2018
Posts: 11

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rtmistler View Post
How could Web Con+ be a child of Firefox when Web Con+ has been running for 102 hours and Firefox has been running for 72 hours?

What's more important would be the %CPU and %MEM that these processes are using, not the fact that they have been running for so long.

You may have to use:
Code:
$ sudo kill -9 <pid>
Or optionally:
Code:
$sudo pkill firefox
I'm also assuming that when you stated that you "turned on" your machine, that it was already on, and you merely woke it up from sleep?

I would kill the firefox process because you were trying to open a web browser and it complained. Not familiar with Web Con+, but it appears to be a web server. If you do not deem that important you could kill that as well. A reboot should clear that up either case.
Indeed indeed. The main question being..."is somebody busting into my machine?" Probably not, however one can't be too careful.

I ended up killing both promptly, and could find no reference to any processes on the net called 'web con+' however, that doesn't necessarily mean that it was/is malign. I'll just have to keep an eye on things in the future. I'm running Mint which comes with a default root pass, that I don't know(at the moment).

Thanks for the other command suggestions guys. Great help.
 
Old 03-19-2018, 12:31 PM   #6
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
taking this out of top listings
Code:
19619 userx     20   0 2082124 349876 105052 S   1.0  2.1   0:14.81 Web Content
using "web content process firefox" in google I got a hand full of hits on it.

Last edited by BW-userx; 03-19-2018 at 12:33 PM.
 
Old 03-19-2018, 01:43 PM   #7
Skippy23
LQ Newbie
 
Registered: Mar 2018
Posts: 11

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by BW-userx View Post
taking this out of top listings
Code:
19619 userx     20   0 2082124 349876 105052 S   1.0  2.1   0:14.81 Web Content
using "web content process firefox" in google I got a hand full of hits on it.

Hey, thanks for reply. When I was searching at first, and paranoid, I was searching 'web con+' as that's how the process appeared in the konsole(full screen). When I look at the konsole now and minimize the window, I notice that other processes become truncated in the same manner(____+). Strange that it was listed as such even at full screen, however that's now besides the point. Cheers!

Thanks for everyone's help.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Looking for information on a weird process Alex_Dc Linux - General 1 12-10-2011 09:32 PM
weird process sang_froid Linux - Server 1 05-19-2009 04:29 PM
Can't access Windows. Weird, weird grub issue. MightyHard Linux - General 2 12-31-2008 04:35 PM
Weird 'process' problem ivanatora Slackware 10 02-02-2006 12:48 AM
weird, weird problems with logitech precision USB gamepad ikataii Linux - Hardware 4 10-14-2005 04:31 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 02:27 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration