Nu får imidlertid ved login forsøg beskeden "P2P connect failed"
Jeg har søgt rundt og fundet flere der anbefaler:
Kode: Vælg alt
rm ~/.Skype
Inden jeg nåede til at køre koden fandt jeg imidlertid også denne kommentar:
Why not just format the drive?
Wow, what a dumb ass suggestion. Sure doing this will fix it but you will loose all of your chat histories and everything else when all you need to do is delete the shared.xml file that lies within the .skype direction. But hey, maybe that's too complicated, better off to just buy a new computer and re-install skype.
(http://languor.us/skype-upgrade-p2p-connect-failed#comments)
hvilket ledte mig til at finde forslaget herunder - mine begrænsede kundskaber tillader mig desværre ikke at forstå fremgangsmåden i den foreslåede løsning.
Derfor:
-> er det korrekt forstået, at løsningsforslaget nedenfor vil være bedst?
-> og kan I hjælpe med en trin-for-trin til hvordan udfører jeg forslaget (copy it into fix-skype.sh, run chmod +x fix-skype.sh and then ./fix-skype.sh)
Try removing shared.xml from ~/.Skype/ and restarting skype.
Here's a kludge of a script that does it for you. Just copy it into fix-skype.sh, run chmod +x fix-skype.sh and then ./fix-skype.sh:
#!/bin/bash
if [ -e ~/.Skype/shared.xml ]
then
echo "Stopping Skype"
killall -HUP skype
echo "Moving shared.xml"
mv ~/.Skype/shared.xml ~/.Skype/shared.xml.bk
echo "Restarting Skype"
skype &
else
echo "Can't find shared.xml - this solution will not work"
fi
If this happens again, rinse and repeat.
(http://askubuntu.com/questions/18537/how-can-i-fix-the-login-error-p2p-connect-failed-on-skype)