Προς το περιεχόμενο

Kopete σε Gnome (Ubuntu Gutsy)


myle

Προτεινόμενες αναρτήσεις

τωρα τρεχω παλι σε kopete (καλα πως κολλαμε ετσι με τα linux applications δεν εχει προηγουμενο:mrgreen: )

δεν με βολευει στο emesen οταν μου απαντάει ο συνομιλητής και κοιτάω κάτι άλλο δεν αναβοσβηνει το παραθυρο

και κατι άλλο στο kopete ξερει κανεις αν μπορούμε οταν ξεκιναει καινουργια συζήτηση να βλέπουμε 1-2 παραγράφους απο την τελευταία συζήτηση που ειχαμε με τον συνομιλητή ;

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Εγώ το εγκατέστησα με sudo apt-get install kopete από terminal, ωστόσω συνεχίζω να αντιμετωπίζω το πρόβλημα που ανέφερα. Όταν κάνω save ένα emoticon μου λέει ότι ήδη υπάρχει ένα τέτοιο στον φάκελο και να διαλέξω ένα με διαφορετικό όνομα.

 

αν επιλέξεις άλλο όνομα ή άλλον φάκελο τι κάνει ;

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Για να εγκαταστήσετε το amsn σε ubuntu μην το κάνετε μέσω του synaptic αλλά καλήτερα βάλτε το με τις οδηγίες από εδώ

 

http://ubuntuforums.org/showthread.php?p=3659583#post3659583

 

Πολύ πιο καλή εμφάνιση και τα ελληνικά εμφανίζονται σωστά.

 

Το κάνω τώρα αυτό. Επίσης βρήκα και το παρακάτω thread στα ubuntuforums που είναι πολύ καλά για διάφορα προβλήματα που μπορεί να αντιμετωπίζει κάποιος

 

http://ubuntuforums.org/showthread.php?t=297676

 

αλλά έδωσα προτεραιότητα σε αυτό που πρότεινες εσύ μιας και είναι δοκιμασμένο.

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

καλο το το kopete,μονο που δεν δουλεύει η κάμερα.

ενώ μου την αναγνωρίζει μια χαρα,σε συνομιλία δεν μπορώ να την χρησιμοποιήσω.

δεν ανεβάζεις το σκριπτάκι σε κανα rapidshare να το πάρουμε κ μεις χωρίς να φτιάχνουμε λογαριασμό στο

ubuntuforums??

pleassseeee!:D

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Credits λίγα post πιο πάνω

 

Το κάνω upload εδώ. Φαντάζομαι λογαριασμό στο insomnia έχετε.

 

Για όσους δεν έχουν, ας δώσουν την κατάληξη το όνομα του συννημένου αρχείου, εκτός από το .zip:

>#!/bin/bash
#Last edited: March 8, 2007

#This is an automated script to add anti-aliasing support to aMSN. This
# will compile the latest beta of Tcl and Tk, and recompile aMSN for it.
#
#This script supports [,K,X]Ubuntu Edgy and Feisty on both 32-bit and
# 64-bit processors.
#
#A few notes:
#
# - The beta Tcl and Tk will be compiled and installed into /usr/local;
#   it will not replace your existing Tcl and Tk installation, so it
#   should be much safer to use and easier to revert than other methods.
#   If the script fails for whatever reason, your existing aMSN
#   installation will not be harmed.
#
# - A hold will be placed on the amsn package in apt-get so that it
#   doesn't upgrade automatically. If you want to upgrade when a new
#   version comes out, you will need to apt-get install the new package,
#   then download the source code and compile it as in this script.
#
# - This script accepts the command line option "cvs" (without quotes).
#   This will download the latest trunk of Tcl/Tk and aMSN through
#   revision control systems instead of using source tarballs.
#   Use it if you want to be on the bleeding edge or if the tarballs
#   fail for some reason.
#
# - This script accepts the command line option "clean" (without quotes).
#   This will remove Tcl/Tk 8.5 and purge aMSN and all configuration files and
#   customizations (profiles, skins, extensions, logs, etc). If you want to
#   revert to the normal aMSN, execute the clean, then apt-get install amsn.
#
# - The Ubuntu and Kubuntu skins by GuS-Arg will be installed. If you do
#   not have a skin already selected, the proper skin will be selected
#   automatically. You can activate them manually via Account -> Select Skin.
#
#This script was written for [,K,X]Ubuntu Edgy/Feisty. Use at your own risk.
#  - Vuen


SOURCEFORGE=http://easynews.dl.sourceforge.net/sourceforge
TEMPDIR=/tmp/fixamsn.$RANDOM
APTOPTIONS="--assume-yes --option Dir::Etc::SourceList=$TEMPDIR/sources.list"


function clean_up {
   EXITVAL=$?
   rm -rf $TEMPDIR
   exit $EXITVAL
}

function error_exit
{
   echo "ERROR: $1" 1>&2
   clean_up
}

trap clean_up SIGHUP SIGINT SIGTERM

#check for clean option
if [ "$1" = "clean" ]; then
   echo -e "\nCleaning Tcl/Tk 8.5 and aMSN."
   echo -e "\nWARNING: This option will clear all your configuration options,\n         including profiles, skins, plugins, and conversation logs.\n         Press CTRL+C to cancel.\n"
   sudo -k
   sudo echo -n "" || error_exit "Could not gain root."
   sudo killall amsn
   sudo killall wish8.5
   sudo apt-get update
   sudo apt-get remove --purge --assume-yes amsn
   sudo rm -rf \
       /usr/local/bin/tclsh8.5      \
       /usr/local/bin/wish8.5       \
       /usr/local/include/tcl8.5/   \
       /usr/local/lib/libtcl8.5.so  \
       /usr/local/lib/tcl8.5/       \
       /usr/local/lib/libtk8.5.so   \
       /usr/local/lib/tk8.5/        \
       /usr/share/amsn              \
       ~/.amsn
   exit 0
fi

#give some information:
echo -e "\nInstalling aMSN with Anti-Aliasing support."
if [ "$1" = "cvs" ]; then
   echo -e " -- CVS mode: the latest trunk of Tcl/Tk and aMSN will be installed.\n"
else
   echo -e " -- Source tarball mode: Tcl/Tk 8.5a6 and aMSN 0.97RC1 will be installed.\n"
fi

#get all user interaction done right away
 #activate sudo
echo "Please enter your sudo password:"
sudo echo -n "" || error_exit "Could not gain root."

#get in temp folder
mkdir -p $TEMPDIR
cd $TEMPDIR

#write our own sources.list in temp folder
DISTNAME=`lsb_release -cs`
if [ "$DISTNAME" == "edgy" ] || [ "$DISTNAME" == "feisty" ] || [ "$DISTNAME" == "gutsy" ]; then
   #supported distribution
   echo "#Temporary sources.list by aMSN installation script" | sudo tee $TEMPDIR/sources.list > /dev/null
   DEBTYPES="deb deb-src"
   for DEBTYPE in $DEBTYPES; do
       echo "$DEBTYPE http://archive.ubuntu.com/ubuntu/ ${DISTNAME} main restricted universe multiverse" | sudo tee -a $TEMPDIR/sources.list > /dev/null
       echo "$DEBTYPE http://archive.ubuntu.com/ubuntu/ ${DISTNAME}-updates main restricted universe multiverse" | sudo tee -a $TEMPDIR/sources.list > /dev/null
       echo "$DEBTYPE http://archive.ubuntu.com/ubuntu/ ${DISTNAME}-backports main restricted universe multiverse" | sudo tee -a $TEMPDIR/sources.list > /dev/null
       echo "$DEBTYPE http://security.ubuntu.com/ubuntu ${DISTNAME}-security main restricted universe multiverse" | sudo tee -a $TEMPDIR/sources.list > /dev/null
   done
else
   if grep deb-src /etc/apt/sources.list > /dev/null; then
       #existing sources.list has deb-src lines; copy to temp folder and uncomment
       echo -e "\nYour distribution is not supported by this script."
       echo "Press enter to proceed anyway, or CTRL+C to cancel."
       read
       sudo cp /etc/apt/sources.list $TEMPDIR/sources.list
       sudo sed --in-place 's/#deb-src/deb-src/' $TEMPDIR/sources.list
   else
       #unsupported, no source repositories in sources.list
       error_exit "Could not add deb-src repositories. Your distribution is not supported by this script."
   fi
fi

#load our temporary sources.list
sudo apt-get $APTOPTIONS update

#install amsn and hold it so it doesn't update
sudo apt-get $APTOPTIONS install amsn || error_exit "Could not install build dependencies."
sudo aptitude --assume-yes hold amsn

#install build dependencies for beta tcl and tk
sudo apt-get $APTOPTIONS build-dep tcl8.4 tk8.4 amsn || error_exit "Could not install build dependencies."
sudo apt-get $APTOPTIONS install libpng12-dev libjpeg-dev libxft-dev || error_exit "Could not install build dependencies."
if [ "$1" = "cvs" ]; then
   sudo apt-get $APTOPTIONS install cvs subversion || error_exit "Could not install revision control systems."
fi

#load original sources.list
sudo apt-get update

#get the various source codes we need
if [ "$1" = "cvs" ]; then
     #tcl trunk
   cvs -d:pserver:anonymous:@tcl.cvs.sourceforge.net:/cvsroot/tcl login || error_exit "Could not download Tcl source code."
   cvs -z3 -d:pserver:[email protected]:/cvsroot/tcl co -P tcl || error_exit "Could not download Tcl source code."
     #tk trunk
   cvs -d:pserver:anonymous:@tktoolkit.cvs.sourceforge.net:/cvsroot/tktoolkit login || error_exit "Could not download Tk source code."
   cvs -z3 -d:pserver:[email protected]:/cvsroot/tktoolkit co -P tk || error_exit "Could not download Tk source code."
     #amsn trunk
   svn co https://svn.sourceforge.net/svnroot/amsn/trunk/amsn/ amsn || error_exit "Could not download aMSN source code."
else
     #tcl 8.5a6
   wget -c $SOURCEFORGE/tcl/tcl8.5a6-src.tar.gz || error_exit "Could not download Tcl source code."
   tar -xsf tcl8.5a6-src.tar.gz
   mv tcl8.5a6 tcl
     #tk 8.5a6
   wget -c $SOURCEFORGE/tcl/tk8.5a6-src.tar.gz || error_exit "Could not download Tk source code."
   tar -xsf tk8.5a6-src.tar.gz
   mv tk8.5a6 tk
     #amsn 0.96
   wget -c $SOURCEFORGE/amsn/amsn-0.97RC1.tar.bz2 || error_exit "Could not download aMSN source code."
   tar -xsf amsn-0.97RC1.tar.bz2
   mv amsn-0.97RC1 amsn
fi

#compile tcl (into /usr/local, to leave tcl 8.4 untouched)
cd tcl/unix
(./configure --prefix=/usr/local --includedir=/usr/local/include/tcl8.5 --enable-shared --enable-threads --enable-64bit --mandir=/usr/local/share/man --enable-man-symlinks --enable-man-compression=gzip && make CFLAGS="-g -O2 -D_REENTRANT" && sudo make install) || error_exit "Could not compile Tcl."
cd ../..

#compile tk (into /usr/local, to leave tcl 8.4 untouched)
cd tk/unix
(./configure --prefix=/usr/local --includedir=/usr/local/include/tcl8.5 --with-tcl=/usr/local/lib --enable-shared --enable-threads --enable-64bit --enable-man-symlinks --enable-man-compression=gzip --enable-xft && make CFLAGS="-g -O2 -D_REENTRANT" && sudo make install) || error_exit "Could not compile Tk."
cd ../..

#compile amsn
cd amsn
(./configure --with-tcl=/usr/local/lib --with-tk=/usr/local/lib && make && sudo make install) || error_exit "Could not compile aMSN."
cd ..

#fix tcltls bug (this finally works!)
sudo cp /usr/lib/tls1.50/pkgIndex.tcl /usr/lib/tls1.50/pkgIndex.tcl.amsnbak
sudo sed --in-place 's/ifneeded tls 1.5 /ifneeded tls 1.50 /' /usr/lib/tls1.50/pkgIndex.tcl
mkdir -p ~/.amsn
echo "set libtls /usr/lib/tls1.50" > ~/.amsn/tlsconfig.tcl

#modify amsn launcher to call wish8.5
sudo sed --in-place 's/wish /wish8.5 /' /usr/share/amsn/amsn

#add Ubuntu and Kubuntu skins
mkdir skins
cd skins
if wget -c $SOURCEFORGE/amsn/Ubuntu-1.0b.tar.gz && sudo tar -xsf Ubuntu-1.0b.tar.gz --directory /usr/share/amsn/skins && wget -c $SOURCEFORGE/amsn/Kubuntu-1.6.tar.gz && sudo tar -xsf Kubuntu-1.6.tar.gz --directory /usr/share/amsn/skins; then
   #activate skins
   if [ -e ~/.amsn/gconfig.xml ]; then
       #file exists; if skin entry is blank, modify it
       if [ "$DESKTOP_SESSION" = "kde" ]; then
           sed --in-place '/<attribute>skin<\/attribute>/,/<\/entry>/ s/<value><\/value>/<value>Kubuntu-1.6<\/value>/' ~/.amsn/gconfig.xml
       else
           sed --in-place '/<attribute>skin<\/attribute>/,/<\/entry>/ s/<value><\/value>/<value>Ubuntu-1.0b<\/value>/' ~/.amsn/gconfig.xml
       fi
   else
       #write config file from scratch
       echo -e '<?xml version="1.0"?>\n<config>\n   <entry>\n      <attribute>skin</attribute>' > ~/.amsn/gconfig.xml
       if [ "$DESKTOP_SESSION" = "kde" ]; then
           echo '      <value>Kubuntu-1.6</value>' >> ~/.amsn/gconfig.xml
       else
           echo '      <value>Ubuntu-1.0b</value>' >> ~/.amsn/gconfig.xml
       fi
       echo -e '   </entry>\n</config>' >> ~/.amsn/gconfig.xml
   fi
else
   echo "Unable to install Ubuntu and Kubuntu skins."
fi

cd ..

#we're done!
echo ""
echo "Done!"
clean_up

fixamsn.sh.zip

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

παιδιά για το kopete , ξαναβάζω 2 ερωτήσεις μήπως εχει βρεθεί τίποτα

 

1) αν γίνεται μόλις ανοίγω το παράθυρο της συζήτησης να βλέπω 2-3 τελευταίες σειρές από το ιστορικό

2) αν γίνεται να στέλνω off-line μηνύματα

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

  • 2 εβδομάδες αργότερα...

otan anoigw to kopete kai dinw pass kai username kai epilegw status crasharei kai mou dinei sto terminal afto

"chris@camij:~$ kopete

kbuildsycoca running...

Reusing existing ksycoca

DCOP Cleaning up dead connections.

chris@camij:~$ X Error: BadWindow (invalid Window parameter) 3

Major opcode: 20

Minor opcode: 0

Resource id: 0x340000a

kdecore (KLibLoader): WARNING: KLibrary: /usr/lib/libcrypto.so.0.9.8: undefined symbol: PKCS7_content_free

kdecore (KLibLoader): WARNING: KLibrary: /usr/lib/libcrypto.so.0.9.8: undefined symbol: OpenSSL_add_all_algorithms

kdecore (KLibLoader): WARNING: KLibrary: /usr/lib/libcrypto.so.0.9.8: undefined symbol: OPENSSL_add_all_algorithms

kdecore (KLibLoader): WARNING: KLibrary: /usr/lib/libcrypto.so.0.9.8: undefined symbol: OpenSSL_add_all_algorithms_conf

kdecore (KLibLoader): WARNING: KLibrary: /usr/lib/libcrypto.so.0.9.8: undefined symbol: PKCS7_content_free

kdecore (KLibLoader): WARNING: KLibrary: /usr/lib/libcrypto.so.0.9.8: undefined symbol: OpenSSL_add_all_algorithms

kdecore (KLibLoader): WARNING: KLibrary: /usr/lib/libcrypto.so.0.9.8: undefined symbol: OPENSSL_add_all_algorithms

kdecore (KLibLoader): WARNING: KLibrary: /usr/lib/libcrypto.so.0.9.8: undefined symbol: OpenSSL_add_all_algorithms_conf

QGDict::hashKeyString: Invalid null key

QGDict::hashKeyString: Invalid null key

kopete: ERROR: : couldn't create slave : Unable to create io-slave:

klauncher said: Unknown protocol ''.

kopete:

KCrash: Application 'kopete' crashing...

X Error: BadWindow (invalid Window parameter) 3

Major opcode: 7

Minor opcode: 0

Resource id: 0x3600053

X Error: BadWindow (invalid Window parameter) 3

Major opcode: 20

Minor opcode: 0

Resource id: 0x3600007"

 

kserei kaneis giati???

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

οποιος χρησημοποιεί kopete και θέλει να έχει τις on line επαφες στην επιφάνεια εργασίας υπάρχει το DeskList plugin

eau23qe8.th.png

http://www.kde-apps.org/content/show.php/Kopete+DeskList+Plugin?content=32089

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Αρχειοθετημένο

Αυτό το θέμα έχει αρχειοθετηθεί και είναι κλειστό για περαιτέρω απαντήσεις.

  • Δημιουργία νέου...