PIDGIN出现问题

上网、浏览、聊天、下载等
回复
hitly
帖子: 391
注册时间: 2006-02-20 0:27

PIDGIN出现问题

#1

帖子 hitly » 2009-08-01 23:22

是自己编译的,因为是LFS系统。
关也关不掉的。
关也关不掉的。
2009-08-01-194042_258x574_scrot.png (6.77 KiB) 查看 833 次
如图所示。

一开启不是这样,但过了一会(时间长短可能就看人品了),就会变成这样,点什么都没有反应,关也关不掉,如果是在终端起动,可以ctrl+c去掉。但如果是是点图标那样起动的,就得ps -ef 看看是哪个进程再kill -9 xxxx 来杀掉了。

本想在终羰pidgin -d 来看是什么情况,但是出了问题往往自己还不知道的,当发现时,那一段出问题可能提示的话早不知去到哪里了。就算是马上发现想看,也是总有新的出现,还是没本事分得出。

想搜索都不知道搜什么关键词好。

没办法了,就借这里人气看哪位试过这种情况,知怎么办解决的。

附上安装过程:

代码: 全选

wget -c 	 http://ftp.gnome.org/pub/GNOME/sources/startup-notification/0.9/startup-notification-0.9.tar.bz2
tar xvf startup-notification-0.9.tar.bz2
cd startup-notification-0.9
./configure --prefix=/usr &&
make
make install &&
install -v -m644 -D doc/startup-notification.txt \
    /usr/share/doc/startup-notification-0.9/startup-notification.txt
cd ..
rm -rf startup-notification-0.9


wget -c http://www.abisource.com/downloads/enchant/1.4.2/enchant-1.4.2.tar.gz
tar xvf enchant-1.4.2.tar.gz
cd enchant-1.4.2
./configure --prefix=/usr &&
make
make install
cd ..
rm -rf  enchant-1.4.2

wget -c http://gtkspell.sourceforge.net/download/gtkspell-2.0.15.tar.gz
tar xvf gtkspell-2.0.15.tar.gz
cd gtkspell-2.0.15
./configure --prefix=/usr &&
make
make install
cd ..
rm -rf gtkspell-2.0.15

wget -c 	 http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.22.tar.bz2
tar xvf gstreamer-0.10.22.tar.bz2
cd gstreamer-0.10.22
./configure --prefix=/usr &&
make
make install &&
install -v -m755 -d /usr/share/doc/gstreamer-0.10.22/design &&
install -v -m644 docs/design/*.txt \
                    /usr/share/doc/gstreamer-0.10.22/design &&
if [ -d /usr/share/doc/gstreamer-0.10.22/faq/html ]; then
    chown -v -R root:root /usr/share/doc/gstreamer-0.10.22/*/html
fi
cd ..
rm -rf  gstreamer-0.10.22


wget -c ftp://ftp.stack.nl/pub/users/dimitri/doxygen-1.5.8.src.tar.gz
tar xvf doxygen-1.5.8.src.tar.gz
cd doxygen-1.5.8
./configure --prefix /usr --docdir /usr/share/doc &&
make
make install
cd ..
rm -rf doxygen-1.5.8



wget -c http://downloads.sourceforge.net/meanwhile/meanwhile-1.0.2.tar.gz
tar xvf meanwhile-1.0.2.tar.gz
cd meanwhile-1.0.2
./configure --prefix=/usr &&
make
make install
cd ..
rm -rf meanwhile-1.0.2


wget -c http://www.sqlite.org/sqlite-3.6.2.tar.gz
tar xvf sqlite-3.6.2.tar.gz
cd sqlite-3.6.2
./configure --prefix=/usr --enable-threadsafe &&
make
make install
cd ..
rm -rf sqlite-3.6.2


tar xvf nspr-4.7.3.tar.gz
cd nspr-4.7.3
mkdir -v build &&
cd build
../mozilla/nsprpub/configure --prefix=/usr \
    --infodir=/usr/share/info \
    --mandir=/usr/share/man \
    --enable-ipv6 --enable-system-sqlite &&
make
make install
cd ../..
rm -rf nspr-4.7.3
cat > /usr/lib/pkgconfig/nspr.pc << "EOF"
prefix=/usr
exec_prefix=/usr
libdir=/usr/lib
includedir=/usr/include/nspr

Name: NSPR
Description: The Netscape Portable Runtime
Version: 4.7.3
Libs: -L${libdir} -lplds4 -lplc4 -lnspr4 -lpthread -ldl -Wl,-R${libdir}
Cflags: -I${includedir}
EOF




wget -c http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_12_RTM/src/nss-3.12.tar.gz
wget -c http://cross-lfs.org/~jciccone/nss-3.12-r2-config.in

tar xvf nss-3.12.tar.gz
cd nss-3.12

export WORKINGDIR=$PWD &&
echo 'INCLUDES += -I/usr/include/nspr' >> mozilla/security/coreconf/headers.mk &&
make -C mozilla/security/coreconf BUILD_OPT=1 NSS_USE_SYSTEM_SQLITE=1 &&
make -C mozilla/security/dbm BUILD_OPT=1 NSS_USE_SYSTEM_SQLITE=1 &&
make -C mozilla/security/nss BUILD_OPT=1 NSS_USE_SYSTEM_SQLITE=1

export NSS_LINUXDIR=$(basename `dir -d $WORKINGDIR/mozilla/dist/Linux*`) &&
cd $WORKINGDIR/mozilla/dist &&
install -v -m755 $NSS_LINUXDIR/lib/*.so /usr/lib &&
install -v -m644 $NSS_LINUXDIR/lib/*.{chk,a} /usr/lib &&
install -v -d /usr/include/nss &&
install -v -m644 {public,private}/nss/* /usr/include/nss &&
unset NSS_LINUXDIR WORKINGDIR

cat > /usr/lib/pkgconfig/nss.pc << "EOF"
prefix=/usr
exec_prefix=/usr
libdir=/usr/lib
includedir=/usr/include/nss

Name: NSS
Description: Network Security Services
Version: 3.12
Requires: nspr >= 4.7.3
Libs: -L${libdir} -lnss3 -lnssutil3 -lsmime3 -lssl3 -lsoftokn3 -Wl,-R${libdir}
Cflags: -I${includedir}
EOF

install -v -m755 ../../../nss-3.12-r2-config.in /usr/bin/nss-config &&
sed -i -e "s/@MOD_MAJOR_VERSION@/3/" \
       -e "s/@MOD_MINOR_VERSION@/12/" \
       -e "s/@MOD_PATCH_VERSION@/0/" \
       -e "s/@prefix@/\/usr/" \
       /usr/bin/nss-config

cd ../../..
rm -rf nss-3.12


wget -c http://downloads.sourceforge.net/tcl/tcl8.5.6-src.tar.gz
tar xvf tcl8.5.6-src.tar.gz
cd tcl8.5.6
cd unix &&
./configure --prefix=/usr --enable-threads &&
make
make install &&
make install-private-headers &&
ln -v -sf tclsh8.5 /usr/bin/tclsh
cd ../..
rm -rf tcl8.5.6

wget -c http://downloads.sourceforge.net/tcl/tk8.5.6-src.tar.gz
tar xvf tk8.5.6-src.tar.gz
cd tk8.5.6
cd unix &&
./configure --prefix=/usr --enable-threads &&
make
make install &&
make install-private-headers &&
ln -v -sf wish8.5 /usr/bin/wish
cd ../..
rm -rf tk8.5.6


wget -c  http://downloads.sourceforge.net/pidgin/pidgin-2.5.5.tar.bz2
tar xvf pidgin-2.5.5.tar.bz2
cd pidgin-2.5.5
sed -i "s/lib64/lib/g" configure &&
./configure --prefix=/usr --sysconfdir=/etc/gnome --disable-avahi --disable-nm
make 
make install
cd ..
rm -rf pidgin-2.5.5

当然最后有新版本就make uninstall 掉旧的,现在装到Pidgin 2.5.8,不过个个版本还是出这个问题。
Linux mylinux 2.6.37.3-mylinux #1 SMP Fri Feb 18 19:52:03 CST 2011 i686 GNU/Linux

==
境由心造,事在人为!
==
http://www.open2l.com
==
hitly
帖子: 391
注册时间: 2006-02-20 0:27

Re: PIDGIN出现问题

#2

帖子 hitly » 2009-08-02 14:04

没有人碰到过???
Linux mylinux 2.6.37.3-mylinux #1 SMP Fri Feb 18 19:52:03 CST 2011 i686 GNU/Linux

==
境由心造,事在人为!
==
http://www.open2l.com
==
头像
xsoul
帖子: 441
注册时间: 2007-06-05 18:27

Re: PIDGIN出现问题

#3

帖子 xsoul » 2009-08-02 18:47

我碰到...ubuntu下从getdeb找来装的...pidgin 2.5.8..
也不知道怎么办,只会ctrl+q
hitly
帖子: 391
注册时间: 2006-02-20 0:27

Re: PIDGIN出现问题

#4

帖子 hitly » 2009-08-03 15:38

xsoul 写了:我碰到...ubuntu下从getdeb找来装的...pidgin 2.5.8..
也不知道怎么办,只会ctrl+q
哎,不知道问题点出在哪里最烦人,都不知道怎么样去找答案。连问人都不太会。。
Linux mylinux 2.6.37.3-mylinux #1 SMP Fri Feb 18 19:52:03 CST 2011 i686 GNU/Linux

==
境由心造,事在人为!
==
http://www.open2l.com
==
头像
xsoul
帖子: 441
注册时间: 2007-06-05 18:27

Re: PIDGIN出现问题

#5

帖子 xsoul » 2009-08-03 19:34

试下在terminal开pidgin,看这样的时候有啥报错的 :em06
hitly
帖子: 391
注册时间: 2006-02-20 0:27

Re: PIDGIN出现问题

#6

帖子 hitly » 2009-08-03 20:38

xsoul 写了:试下在terminal开pidgin,看这样的时候有啥报错的 :em06
早就用过这招,pidgin是没有什么输出的,加参数-d来看,当出错的时候,自己没发现,又有新的东西自己出来,不知道哪句是哪句,就算马上发现,也还是很多东西出来,也不知道是哪句是哪句,所以郁闷的就在这里。
Linux mylinux 2.6.37.3-mylinux #1 SMP Fri Feb 18 19:52:03 CST 2011 i686 GNU/Linux

==
境由心造,事在人为!
==
http://www.open2l.com
==
头像
想入非非
帖子: 8078
注册时间: 2008-07-14 22:42
来自: Beijing
联系:

Re: PIDGIN出现问题

#7

帖子 想入非非 » 2009-08-05 4:00

xsoul 写了:试下在terminal开pidgin,看这样的时候有啥报错的 :em06
:em05 nnd,多次看到你,还以为是huntxu,原来头像一样,诡异了
Ubuntu User
回复