LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE
User Name
Password
SUSE / openSUSE This Forum is for the discussion of Suse Linux.

Notices


Reply
  Search this Thread
Old 11-25-2006, 06:37 PM   #1
cueman
Member
 
Registered: Oct 2006
Location: Scottsdale, Arizona
Distribution: openSUSE 10.2
Posts: 197

Rep: Reputation: 30
kaffeine quit on me


I've been watching some Sopranos episodes with kaffeine. They are .avi files. All was fine until limewire froze and locked up my laptop, so I had to hard power it down and restart. Now, kaffeine will not load. The icon bounces for 20-30 seconds then just stops. I tried to start it via the command line also, and it won't start that way either. It is not giving me any type of error messages. I can still view the .avi files with xine, mplayer, and noatun. But I always liked kaffeine better.

Any ideas?

Cueman
 
Old 11-27-2006, 12:52 AM   #2
cueman
Member
 
Registered: Oct 2006
Location: Scottsdale, Arizona
Distribution: openSUSE 10.2
Posts: 197

Original Poster
Rep: Reputation: 30
Uninstalled with yast, then reinstalled. Problem fixed.

Cueman
 
Old 11-29-2006, 11:08 AM   #3
BDHamp
Member
 
Registered: Mar 2005
Distribution: Ubuntu 9.10, Mint 8, Slackware 12
Posts: 105

Rep: Reputation: 16
Quote:
Originally Posted by cueman
I can still view the .avi files with xine, mplayer, and noatun. But I always liked kaffeine better.

Any ideas?
Cueman
I see you fixed the problem with the radical solution.

If this happens again, I suspect it's because the kaffeine process is still running. After a recent update to it, I've noticed this tendency myself of kaffeine to get "stuck" and not shut down fully. You're never aware of this until you try to start it again.

If it happens again do:

Code:
ps -e|grep kaffeine*
If the process shows up, then:

Code:
killall kaffeine

or

kill -s 15 <process ID>
I've been having this problem with Firefox after upgrading to 2.0 as well. With it, I have to go nuclear and kill firefox-bin with signal 9. Not sure what's happening there.
 
Old 11-29-2006, 11:26 AM   #4
cueman
Member
 
Registered: Oct 2006
Location: Scottsdale, Arizona
Distribution: openSUSE 10.2
Posts: 197

Original Poster
Rep: Reputation: 30
Hey thanks for the tip. I also have had this happen with firefox 2.0 since I also recently installed it. A dialog pops up telling me that it is already running. What the heck, I should be able to run as many instances as I want. It also seems to take forever to load. I did manage to install suse 10.2 last night. Firefox 2.0 comes bundled and it seems to behave much better in 10.2.
Thanks again for the tip.

Cueman
 
Old 11-29-2006, 11:28 AM   #5
cueman
Member
 
Registered: Oct 2006
Location: Scottsdale, Arizona
Distribution: openSUSE 10.2
Posts: 197

Original Poster
Rep: Reputation: 30
Code:
ps -e|grep kaffeine*
By the way, what is this character in this line, after the ps -e ??? Some kind of key combination ? Sorry if it is obvious, I just woke up...
 
Old 11-29-2006, 12:07 PM   #6
BDHamp
Member
 
Registered: Mar 2005
Distribution: Ubuntu 9.10, Mint 8, Slackware 12
Posts: 105

Rep: Reputation: 16
Quote:
Originally Posted by cueman
Code:
ps -e|grep kaffeine*
By the way, what is this character in this line, after the ps -e ??? Some kind of key combination ? Sorry if it is obvious, I just woke up...
It's called a pipe. On standard keyboards, it's the same key as the "\" key shifted, i.e. SHIFT-\.

I know you didn't ask, but ...

The pipe "|" allows you to run the output of one command through another command. The ps -e command would normally return all running processes, but you only want to know if a process named a certain thing is running, so you filter that output through "grep" by telling it to look for the string "kaffeine."

I always add "*" wildcards on either end when looking for a process with which I'm not familiar because the process could be named something other than just the program name, e.g. when firefox is running under SuSE when invoked from the desktop, processes named "firefox" and "firefox-bin" will be running. It's the "firefox-bin" process that has been getting frozen on my system.
 
Old 11-29-2006, 12:37 PM   #7
cueman
Member
 
Registered: Oct 2006
Location: Scottsdale, Arizona
Distribution: openSUSE 10.2
Posts: 197

Original Poster
Rep: Reputation: 30
Thanks, good information. I remember rebooting several times though, and kaffeine still would not load, so I don't think it was still running, unless it was 'restored' somehow on reboot. Thank again for the info

Cueman

Last edited by cueman; 11-29-2006 at 12:48 PM.
 
Old 11-29-2006, 12:56 PM   #8
riba43
Member
 
Registered: Feb 2005
Location: Slovenia
Distribution: suse11.0
Posts: 749

Rep: Reputation: 31
It's called a pipe. On standard keyboards, it's the same key as the "\" key shifted, i.e. SHIFT-\.

Hi BDHamp, I also need a help with this "pipe" character.
I cant find a proper combination of keys. I use AltGr + Q to get "\". My keyboard is a slovenian one. Can you help?
 
Old 11-29-2006, 02:49 PM   #9
BDHamp
Member
 
Registered: Mar 2005
Distribution: Ubuntu 9.10, Mint 8, Slackware 12
Posts: 105

Rep: Reputation: 16
Quote:
Originally Posted by riba43
Hi BDHamp, I also need a help with this "pipe" character.
I cant find a proper combination of keys. I use AltGr + Q to get "\". My keyboard is a slovenian one. Can you help?
This is a pure guess, since I am not at all familiar with anything other than the standard US keyboard layout.

But try:

AltGr+W to get the pipe. I googled for awhile and found someone with a Slovenian keyboard say that's what worked for him.
 
Old 11-29-2006, 08:02 PM   #10
BDHamp
Member
 
Registered: Mar 2005
Distribution: Ubuntu 9.10, Mint 8, Slackware 12
Posts: 105

Rep: Reputation: 16
Quote:
Originally Posted by cueman
Thanks, good information. I remember rebooting several times though, and kaffeine still would not load, so I don't think it was still running, unless it was 'restored' somehow on reboot. Thank again for the info
Just some rambling thoughts...

By default KDE saves a snapshot of itself and processes running under it and reloads it after reboot. I don't know that this is what happened in your case because I almost never reboot my system. (One of the main things I like about Linux is that the vast majority of problems can be fixed without a reboot.) And, I didn't reboot on this, so I don't know if the same thing would have happened there. That *shouldn't* happen because the shutdown should kill the process, with prejudice if necessary, in such a way that it shouldn't reload, but I haven't looked into it deeply enough to know truly what is going on.

Although now that I think of it, I do remember having pan freeze on me once while trying to save a binary and encountering a physical error on the disc. I did have to reboot to kill the process, and it didn't reload. Of course pan is not native to KDE, so that may have had something to do with it.
 
Old 11-29-2006, 11:19 PM   #11
riba43
Member
 
Registered: Feb 2005
Location: Slovenia
Distribution: suse11.0
Posts: 749

Rep: Reputation: 31
Thanks BDHamp, thats it. AltG+W. I have been wondering how this "pipe"sign was made and I did not ask, because I think I would look silly. Two years I am learning SuSE Linux ++++ Thanks again.
 
Old 11-29-2006, 11:37 PM   #12
BDHamp
Member
 
Registered: Mar 2005
Distribution: Ubuntu 9.10, Mint 8, Slackware 12
Posts: 105

Rep: Reputation: 16
Quote:
Originally Posted by riba43
Thanks BDHamp, thats it. AltG+W. I have been wondering how this "pipe"sign was made and I did not ask, because I think I would look silly. Two years I am learning SuSE Linux ++++ Thanks again.
It's a trite phrase, but a true one. There are no silly questions.

Hell, one of the first questions I asked someone when I started using Linux was how to get a directory listing. The "dir" command wasn't working. What the hell!?!?!? I got quite irritated about it.

And them someone answered, and I felt like a fool momentarily for not having been able to discover this for myself, but the exchange taught me quite a lot, beyond just what the "ls" command does.

It's another thing I like about Linux. We're a community. We help each other. That's the *point*.

Glad my guess was correct.

Happy computing. :-)
 
Old 11-30-2006, 12:03 AM   #13
riba43
Member
 
Registered: Feb 2005
Location: Slovenia
Distribution: suse11.0
Posts: 749

Rep: Reputation: 31
Yes that is true. Thanks again
 
  


Reply



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
Quit spotslayer Linux - Wireless Networking 1 06-20-2004 12:29 AM
Which Processes To quit?? balanagireddy Linux - General 14 02-03-2004 02:10 AM
installers quit benazonafunk Linux - General 4 08-25-2003 05:12 PM
Help!! ..X quit hyd_lin Linux - Software 0 06-10-2003 07:22 AM
how do you quit tcpdump? groovin Linux - Networking 1 12-30-2002 03:44 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE

All times are GMT -5. The time now is 07:14 PM.

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