You are not logged in.
ok, it was an official skype blunder: note to self = ALWAYS CHECK TWITTER!!!
Offline
For me the solution was to delete the ~/.Skype/shared.xml file.
Based on what it was said on Twitter.
When, I did that, Skype ask me to accept the license again.
Pheraps the licence as changed (I didn't read it) ? Cause Skype is now a Microsoft product...
Last edited by gostmasterys (2011-05-26 14:22:00)
Offline
I had the problem a month ago on my 64bit machine but it sort of went away on its own after a few days.
Today, it popped up out of nowhere on my laptop (Arch 32bit) and at my office (5 computers all running Ubuntu crashed within hours of each other).
There are reports that deleting ~/.Skype/shared.xml fixes ths issue (it did on the Ubuntu installs at my office but not on my laptop).
This has no ill-effect that i can tell other than you having to type your password again.
The last time I had the issue, I could fix it temporarily (usually until a reboot) by deleting /usr/share/skype/sounds. (you probably want to back up the folder before deleting it though)
This makes skype work without any sounds (I believe calls still work though).
@bullen: Do you have more info on skype's "linux server"? I've never heard of it.
Last edited by Halike (2011-05-26 13:24:19)
Offline
At least for me deleting ~/.Skype/shared.xml fixed the problem for me, too. Thanks for the info @gostmasterys.
Offline
Skype is out world-wide acording to the news>>>>
Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit! X-ray confirms Iam spineless!
Offline
For me the solution was to delete the ~/.Skype/shared.xml file.
Based on what it was said on Twitter.
When, I did that, Skype ask me to accept the license again.
Pheraps the licence as changed (I didn't read it) ? Cause Skype is now a Microsoft product...
This also works for me!
Thanks.
Offline
If you are using pulseaudio (you need because it is a dependency of gnome shell that comes with Gnome 3 I believe) then you need to install lib32-libpulse according to the archwiki.
This worked for me. I don't know exactly why you need two different sound servers: pulseaudio and alsa :-(
Offline
gostmasterys wrote:For me the solution was to delete the ~/.Skype/shared.xml file.
Based on what it was said on Twitter.
When, I did that, Skype ask me to accept the license again.
Pheraps the licence as changed (I didn't read it) ? Cause Skype is now a Microsoft product...This also works for me!
Thanks.
Doesn't work for me. Skype still crashes for me even with the new beta 2.2.0.35
Offline
Creating $HOME/.Skype/Logs also solved the problem for me. (32bit skype on 64bit, alsa only).
Helped for me
Offline
Creating $HOME/.Skype/Logs also solved the problem for me. (32bit skype on 64bit, alsa only).
FINALLY!!! This solved my crashing issues I've had for a year. Many many thanks .
Offline
Creating $HOME/.Skype/Logs also solved the problem for me. (32bit skype on 64bit, alsa only).
worked for me as well, thanks.
However, Skype seems to create quite a lot of log data. After 3 months, my $HOME/.Skype/Logs was swollen to about 10GB.
Offline
However, Skype seems to create quite a lot of log data. After 3 months, my $HOME/.Skype/Logs was swollen to about 10GB.
Wow, thanks for the hint! I had lost >6GB there. I think I will put a cron job for cleaning up the directory.
Offline
Slizzered wrote:However, Skype seems to create quite a lot of log data. After 3 months, my $HOME/.Skype/Logs was swollen to about 10GB.
Wow, thanks for the hint! I had lost >6GB there. I think I will put a cron job for cleaning up the directory.
What I did was create an alias in my .bashrc that removes all log files whenever I run Skype:
alias skype="rm ~/.Skype/Logs/* && skype"
Offline
I just updated my skype to version 4.0.0.7-1-x86_64 and am getting this same problem...has anyone upgraded to the new version and is also experiencing the same issue?
Offline
I'm on 32-bit, different distro, and suddenly after a few updates (glibc, kernel), skype 2.2.0.35 was crashing after 6 seconds.
This is my ludicrous workaround script:
#!/bin/bash
(cd ~ && cp .asoundrc{,-skype-temp} && cp .asoundrc{-skype,} && sleep 12 && cp .asoundrc{-skype-temp,}) &
nice -n 9 /usr/bin/skype --disable-cleanlooks &
# Still sometimes quits after a few secs, so check
sleep 14
if [[ -z `pidof /usr/bin/skype` ]] ; then
nice -n 9 /usr/bin/skype --disable-cleanlooks &
fi
Where my ~/.asoundrc-skype is a cut-down version of my normal ~/.asoundrc
It seems that skype crashes (with error "Aborted") while reading my ~/.asoundrc - it is the only app that has this problem.
Skype 4 doesn't need this workaround.
Offline