8
$ wine --version
wine-1.7.47-161-g1a0c4ef

$ winecfg
syslog: kernel: [33279.238873] wineserver[9087]: segfault at eeb102d0 ip 00000000eeb102d0 sp 0000000052879ac0 error 14 in ld-2.19.so[7fb3eeb0f000+23000]

$ wine prog.exe
syslog: kernel: [33554.031996] wineserver[9173]: segfault at a31c12d0 ip 00000000a31c12d0 sp 00000000a4fdfbf0 error 14 in ld-2.19.so[7f37a31c0000+23000]
David Foerster
  • 36,264
  • 56
  • 94
  • 147

4 Answers4

5

I booted the previous kernel (3.13.0-58-generic) and it works again. 3.13.0-59 fails for me.

Mitch
  • 151
  • I filed a bug: https://bugs.launchpad.net/ubuntu/+source/wine1.6/+bug/1479040 – Mitch Jul 28 '15 at 16:16
  • It did not help. When I enter the login / password, I was again taken to the lightdm. Apparently this is due to the ATI driver (proprietary). – Sergey Shitov Jul 29 '15 at 04:04
4

Solved. Today updated the kernel (3.13.0-61), and all was fine.

3

Install newer 3.19.0-25 kernel. And wine 1.6 works again!

see this post How can I use Kernel 3.19 in 14.04 now?

sudo apt-get install linux-generic-lts-vivid

Matt
  • 31
  • +1 I don't get the downvote. This is the solution that I chose. And it works. – rpsml Jul 29 '15 at 17:55
  • @rpsml If this answer works for you then don't forget to tick ☑ on left of this answer and up-vote it. – Mudit Kapil Jul 29 '15 at 18:43
  • @mudit-kapil I did upvote the answer (hence the +1 preceeding my comment). But I did not ask the question, so I cannot accept it... – rpsml Jul 29 '15 at 18:47
  • @rpsml do it on the ^ mark left on the answer not in comments – Mudit Kapil Jul 29 '15 at 18:52
  • @mudit-kapil That is exactly what I did (and then pointed out in my comment that I upvoted it). – rpsml Jul 29 '15 at 18:55
  • @rpsml You dint not upvoted it correctly It is my vote that is reflecting – Mudit Kapil Jul 29 '15 at 19:01
  • @mudit-kapil Yes I did. When I upvoted it had been previously downvoted. Hence my surprised comment "I don't get the downvote". BTW, you should have enough rep to see the number of +'s and -'s (assuming that askubuntu has the same policy of other stackexchange sites)... – rpsml Jul 29 '15 at 19:03
3

Running a wineserver instance manually seems to help. Run wineserver -p before trying to run a program with wine.

UPDATE: changing the working directory doesn't help reproducibly but running wineserver manually does.

jrudolph
  • 131