1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-20 06:33:24 +01:00
wiki.mbirth.de/know-how/software/linux/_posts/2010-02-07-wine.md

32 lines
1.1 KiB
Markdown
Raw Normal View History

2015-04-13 20:20:11 +01:00
---
created: 2010-02-06 01:55:28 +0100
2022-01-23 17:14:59 +00:00
layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2010/02/06/wine-tricks.html
2015-04-13 20:20:11 +01:00
tags:
2022-01-23 17:14:59 +00:00
- know-how
- software
- linux
title: WinE Tricks
toc: false
updated: 2010-02-07 13:29:19 +0100
2015-04-13 20:20:11 +01:00
---
2022-01-23 17:14:59 +00:00
2015-04-13 20:20:11 +01:00
Java crashes with EXCEPTION_ACCESS_VIOLATION (0xc00000005)
==========================================================
The [AirVideo](http://www.inmethod.com/) Server for iPhone runs only under Mac and Windows and needs [Bonjour](http://support.apple.com/downloads/Bonjour_for_Windows)
and [JRE](http://java.sun.com/javase/downloads/index.jsp). Java always crashed with
EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7d826f48, pid=8, tid=12
After some poking around, I found a thread at [nabble.com](http://old.nabble.com/Wine%2BJava%2BNvidia-crashes-td22505117.html).
Disabling the `d3d9.dll` was the solution:
1. Run `winecfg`
1. Go to the *Libraries* tab
1. Select `d3d9` from the drop-down box, click *Add*
1. Select the new entry `d3d9` and click *Edit…*
1. Select *(X) disabled*, click *OK*
2022-01-23 17:14:59 +00:00
That was it. Now, Java should run smoothly.