Please, please please go there and read before posting for help. Otherwise you will be chastised

Code: Select all
blacksun-2 : root [~] # ln -s /usr/include/{boost-1_33_1/boost,boost}
blacksun-2 : root [~] # ll /usr/include/boost
lrwxrwxrwx 1 root root 31 2007-06-17 20:38 /usr/include/boost -> /usr/include/boost-1_33_1/boost/
Code: Select all
blacksun-2 : root [~] # paco -fx boost | grep gcc-mt.so
/usr/lib/libboost_date_time-gcc-mt.so
/usr/lib/libboost_filesystem-gcc-mt.so
/usr/lib/libboost_iostreams-gcc-mt.so
/usr/lib/libboost_prg_exec_monitor-gcc-mt.so
/usr/lib/libboost_program_options-gcc-mt.so
/usr/lib/libboost_python-gcc-mt.so
/usr/lib/libboost_regex-gcc-mt.so
/usr/lib/libboost_serialization-gcc-mt.so
/usr/lib/libboost_signals-gcc-mt.so
/usr/lib/libboost_test_exec_monitor-gcc-mt.so
/usr/lib/libboost_thread-gcc-mt.so
/usr/lib/libboost_unit_test_framework-gcc-mt.so
/usr/lib/libboost_wserialization-gcc-mt.so
Code: Select all
blacksun-1 : io [~/build/deluge] $ cat setup.py | grep -- -mt
librariestype = ['boost_filesystem-mt', 'boost_date_time-mt',
'boost_thread-mt', 'z', 'pthread', 'ssl']
Code: Select all
blacksun-1 : io [~/build/deluge] $ sed -i s/-mt/-gcc-mt/g setup.py
blacksun-1 : io [~/build/deluge] $ cat setup.py | grep -- -mt
librariestype = ['boost_filesystem-gcc-mt', 'boost_date_time-gcc-mt',
'boost_thread-gcc-mt', 'z', 'pthread', 'ssl']
you should go to pclinuxos's irc channel or forum and ask them. i havent the slightest idea what they call things theremarcus wrote:HI
I'm running PClinuxOS 2007 and I don't have Libboost-filesystem-dev. I've looked around and I don't seem to be able to find source code either.
I've installed all the Libboost systems from my repositories and the Install is still complaining the above is missing. Does it have a dfferent name or something. I have looked on boost.org, but there doesn't seem to be a seperate package for this there.
I want to upgrade from 5.3 (which is inmy repository) because it crashes without warning or notice at adhoc times, but its the best client I've come accross for Linux yet
You need to add -r, because you have to remove directory not file.$ rm ~/.config/deluge
Code: Select all
sudo apt-get install g++ python-all-dev python-all python-dbus python-gtk2 python-xdg python-support libboost-dev libboost-thread-dev libboost-date-time-dev libboost-filesystem-dev libboost-serialization-dev libssl-dev zlib1g-dev subversion
Code: Select all
$ deluge
Traceback (most recent call last):
File "/usr/bin/deluge", line 112, in <module>
bus = dbus.SessionBus()
File "/var/lib/python-support/python2.5/dbus/_dbus.py", line 669, in __new__
mainloop=mainloop)
File "/var/lib/python-support/python2.5/dbus/_dbus.py", line 293, in __new__
mainloop=mainloop)
dbus.DBusException: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
Code: Select all
$ dbus-launch deluge
Thanks! This worked for me....
The problem occured because, somehow, session bus above (bus = dbus.SessionBus( ) ) couldn't be started and hence an exception 'dbus.DBusException: org.freedesktop.DBus.Error.NoReply' occured. To solve this, start deluge like this instead:and pray that it works.Code: Select all
$ dbus-launch deluge