LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-04-2006, 07:15 AM   #1
gnoteb
LQ Newbie
 
Registered: Aug 2005
Location: Oslo
Distribution: Arch Linux (kernel 2.6.19). I also like these two livecds: Slax and DSL
Posts: 28

Rep: Reputation: 15
Can only run nicotine as su


installed nicotine and it works fine in su mode. if i try to run it in user mode however it freezes



$ nicotine
/usr/lib/python2.4/site-packages/pynicotine/gtkgui/nicotine_glade.py:269: DeprecationWarning: use gtk.ComboBoxEntry
self.combo1 = gtk.Combo()


from here on nothing happens ..

using mandriva le2005/icewm

 
Old 02-05-2006, 04:53 AM   #2
gnoteb
LQ Newbie
 
Registered: Aug 2005
Location: Oslo
Distribution: Arch Linux (kernel 2.6.19). I also like these two livecds: Slax and DSL
Posts: 28

Original Poster
Rep: Reputation: 15
its not good running p2p as root i reckon?
 
Old 02-05-2006, 06:54 AM   #3
muddywaters
Member
 
Registered: May 2005
Location: Winnipeg, Canada
Distribution: mostly mepis
Posts: 427

Rep: Reputation: 30
It shouldn't need to be run as root. My guess is something related to python or GTK is not in your user path. Maybe one of the more experienced users can tell you how to troubleshoot that.
Do you run kde? You might want to take a look at museek. It looks great in kde and is being more actively developed afaik. Also gets away from the pyGTK errors that seem common with nicotine.
EDIT/I see now you are running icewm.Guess the coffee hadn't kicked in. It looks like museek isn't being as actively developed as I thought. No changes for nearly a year.

Last edited by muddywaters; 02-05-2006 at 08:59 AM.
 
Old 02-05-2006, 08:51 AM   #4
gnoteb
LQ Newbie
 
Registered: Aug 2005
Location: Oslo
Distribution: Arch Linux (kernel 2.6.19). I also like these two livecds: Slax and DSL
Posts: 28

Original Poster
Rep: Reputation: 15
thanks for the advice.

i use xfce or icewm. but i will check out museek if it doesnt work out..
 
Old 02-06-2006, 09:30 AM   #5
gnoteb
LQ Newbie
 
Registered: Aug 2005
Location: Oslo
Distribution: Arch Linux (kernel 2.6.19). I also like these two livecds: Slax and DSL
Posts: 28

Original Poster
Rep: Reputation: 15
so i should add something to my user path then? how?
 
Old 02-06-2006, 09:39 AM   #6
esje
Member
 
Registered: Mar 2004
Location: Holland
Distribution: Debian Etch, Gentoo 2005.1/SUSE 10
Posts: 52

Rep: Reputation: 15
Possibly. This link explains how to put something in your path.

Can you give the output of "echo $PATH"?
 
Old 02-06-2006, 12:13 PM   #7
gnoteb
LQ Newbie
 
Registered: Aug 2005
Location: Oslo
Distribution: Arch Linux (kernel 2.6.19). I also like these two livecds: Slax and DSL
Posts: 28

Original Poster
Rep: Reputation: 15
$ echo $PATH
/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/home/geir/bin
 
Old 02-06-2006, 11:36 PM   #8
muddywaters
Member
 
Registered: May 2005
Location: Winnipeg, Canada
Distribution: mostly mepis
Posts: 427

Rep: Reputation: 30
When I said my guess was a path problem maybe the word "guess" should have been capitalized.
I was basing this on the idea that the problem only shows up when running as user.
Does it run as root without the deprecation warning? That script (nicotine_glade.py) always threw a bunch of warnings when I ran nicotine. They weren't fatal errors.
You could try reinstalling or doing a different type of install. If you used an RPM maybe try a tarball?
If you do reinstall make sure the .nicotine directory is cleaned up in your home folder. The only thing you will want to save is the config file from that directory.
 
Old 02-07-2006, 03:23 PM   #9
gnoteb
LQ Newbie
 
Registered: Aug 2005
Location: Oslo
Distribution: Arch Linux (kernel 2.6.19). I also like these two livecds: Slax and DSL
Posts: 28

Original Poster
Rep: Reputation: 15
I get deprecation several times. What is that?

# nicotine
/usr/lib/python2.4/site-packages/pynicotine/gtkgui/nicotine_glade.py:269: Deprecation Warning: use gtk.ComboBoxEntry
self.combo1 = gtk.Combo()
Launching a SCIM daemon with Socket FrontEnd...
Loading -d Config module ...
Creating backend ...
Loading socket FrontEnd module ...
Starting SCIM as daemon ...
/usr/lib/python2.4/site-packages/pynicotine/gtkgui/settings_glade.py:41: DeprecationW arning: use gtk.ComboBoxEntry
self.Server = gtk.Combo()
/usr/lib/python2.4/site-packages/pynicotine/gtkgui/settings_glade.py:125: Deprecation Warning: use gtk.ComboBoxEntry
self.Encoding = gtk.Combo()
/usr/lib/python2.4/site-packages/pynicotine/gtkgui/settings_glade.py:1194: Deprecatio nWarning: use gtk.ComboBoxEntry
self.DecimalSep = gtk.Combo()
/usr/lib/python2.4/site-packages/pynicotine/gtkgui/nicotine_glade.py:768: DeprecationWarning: use gtk.ComboBox
self.Encoding = gtk.OptionMenu()
 
Old 02-08-2006, 11:09 AM   #10
muddywaters
Member
 
Registered: May 2005
Location: Winnipeg, Canada
Distribution: mostly mepis
Posts: 427

Rep: Reputation: 30
Sorry gnoteb, this is way out of my depth. What follows is pure speculation on my part.
The deprecation warnings are just warnings. Nothing there says fatal or critical. Maybe some of the script used is a little old.You are able to run as root so it looks like it is still usable.The problem could be here;

Quote:
Originally Posted by gnoteb
Launching a SCIM daemon with Socket FrontEnd...
Loading -d Config module ...
Creating backend ...
Loading socket FrontEnd module ...
Starting SCIM as daemon ...
This part may need root priviledges. Really guessing here, I have no idea what SCIM is.

Hopefully there is enough misinformation here to compel a response from someone.

Last edited by muddywaters; 02-08-2006 at 11:11 AM.
 
Old 02-09-2006, 11:28 AM   #11
gnoteb
LQ Newbie
 
Registered: Aug 2005
Location: Oslo
Distribution: Arch Linux (kernel 2.6.19). I also like these two livecds: Slax and DSL
Posts: 28

Original Poster
Rep: Reputation: 15
Smile

Thanks alot for trying Muddywaters (great artist btw!), really appreciate it!

SCIM is for typing with other 'typesets' like korean and chinese. I dont think that needs root privileges as leafpad and gaim for instance loads in user mode..

I also need to log in as root to modify the files d/led from nicotine..

 
Old 02-11-2006, 11:00 AM   #12
gnoteb
LQ Newbie
 
Registered: Aug 2005
Location: Oslo
Distribution: Arch Linux (kernel 2.6.19). I also like these two livecds: Slax and DSL
Posts: 28

Original Poster
Rep: Reputation: 15
Is it impossible?
 
Old 02-12-2006, 09:57 AM   #13
muddywaters
Member
 
Registered: May 2005
Location: Winnipeg, Canada
Distribution: mostly mepis
Posts: 427

Rep: Reputation: 30
I very much doubt that it's impossible. I have installed nicotine in Slackware and Mepis with no problem but am now using museek. A warning if you go this route; museek is not the easiest thing to install and in the end I may have been a little lucky.

Many users have path trouble when installing the java filesharing applications. Not sure if the same thing can happen with applications written in python. Try typing 'python' in a terminal to see if it runs as a normal user.

How did you install this? Was it in some mandriva repository or did you get it in some non-rpm form? Did you force the install in any way?

Go to the hidden nicotine directory in your home directory. If you 'ls -al' the files inside should look something like;
rw-r--r-- <your login name> users
My theory here is nicotine may have trouble reading the config file.

If you have been a longtime soulseek user this must be very frustrating. And well... ^^^BUMP^^^
 
  


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
Nicotine sandy_obrien Linux - Software 7 10-03-2005 02:53 AM
nicotine ToofDogger Linux - Software 5 09-15-2005 02:02 AM
Trying to run Nicotine, ZLib error ragingtarrasque Linux - Software 0 08-05-2004 02:08 PM
Trying to run nicotine, zlib error ragingtarrasque Linux - Software 0 08-05-2004 01:01 AM
nicotine-1.0.7 again FirstTimeUser Linux - Newbie 0 03-21-2004 04:18 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:44 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