Connecting Tech Pros Worldwide Forums | Help | Site Map

Application Problems

Newbie
 
Join Date: Jul 2008
Posts: 10
#1: Jul 10 '08
I am running Fedora Core 6 on my desktop and when I go to install the new software updates it says that another application is accessing software information. But I can't find this other application, so anyone got any help.

I keep comin for help but I keep needin it. I am glad you guys are here to provide it.

Nepomuk's Avatar
Moderator
 
Join Date: Aug 2007
Location: Germany
Posts: 2,466
#2: Jul 10 '08

re: Application Problems


Hi DK1090!
Quote:

Originally Posted by DK1090

I am running Fedora Core 6 on my desktop and when I go to install the new software updates it says that another application is accessing software information. But I can't find this other application, so anyone got any help.

To find out, which programs are running, you can use pgrep. I'm not quite sure, what we'll be looking for, so use
Expand|Select|Wrap|Line Numbers
  1. pgrep -l -u root
That means:
pgrep : find running processes
-l : show their names, not only their process IDs
-u root : show those of the user root (as software updates have to be done with root privileges)
You could also run
Expand|Select|Wrap|Line Numbers
  1. pgrep -l yum
to check, if yum is running. (If not successful, you might also want to check for pirut and pup.)
If any of these is running, you can try to kill them with
Expand|Select|Wrap|Line Numbers
  1. su
  2. pkill <process name>
  3. exit
or
Expand|Select|Wrap|Line Numbers
  1. su
  2. kill <proccess id>
  3. exit
Then try installing again.
Quote:
I keep comin for help but I keep needin it. I am glad you guys are here to provide it.
No need to feel bad about that. Everyone needs help sometimes and the newer you are to something, the more you still have to find out! :-)

Greetings,
Nepomuk
Newbie
 
Join Date: Jul 2008
Posts: 10
#3: Jul 10 '08

re: Application Problems


Sorry anyone who tried to help me but I got it myself while I was trying to get flash support for my opera browser. All there was was a file called yum.pid in /var/run which I guess what blocking it.

And now if I could only get flash to work in Opera
Nepomuk's Avatar
Moderator
 
Join Date: Aug 2007
Location: Germany
Posts: 2,466
#4: Jul 10 '08

re: Application Problems


Quote:

Originally Posted by DK1090

Sorry anyone who tried to help me but I got it myself while I was trying to get flash support for my opera browser. All there was was a file called yum.pid in /var/run which I guess what blocking it.

And now if I could only get flash to work in Opera

Well, yum was certainly active then. :-D

You say, flash won't work in Opera. What's the problem?

Greetings,
Nepomuk
Newbie
 
Join Date: Jul 2008
Posts: 10
#5: Jul 10 '08

re: Application Problems


Well I got Flash 9 and Opera 9. When go to install flash it automatically installs in my /.mozilla directory. So, no big deal I go to move the libflashplayer.so file to the Opera plugin file. But that isn't working, so I go to plugins.ini and change the path to /.mozilla/plugins and still I get no flash. I don't know if I have the wrong flash or the wrong opera version but nothing I do seems to work.
Nepomuk's Avatar
Moderator
 
Join Date: Aug 2007
Location: Germany
Posts: 2,466
#6: Jul 10 '08

re: Application Problems


Could this be helpfull?

Greetings,
Nepomuk
Newbie
 
Join Date: Jul 2008
Posts: 10
#7: Jul 11 '08

re: Application Problems


It helps a little, cause now I know it has to be my version of flash that is messing up. It has to be cause all of the other plugins are working.
Reply