Segfault on start, Ubuntu 18.04 #58427

Closed
opened 2018-12-01 12:53:26 +01:00 by Samuli Pahaoja · 8 comments

System Information
Operating system: Ubuntu 18.04, Gnome3
Graphics card: Intel Corporation HD Graphics 520 (rev 07)

Blender Version
Broken: Blender 2.80 (sub 35), Commit date: 2018-11-30 22:29, Hash 0f5b53ba4d
Worked: 2.79b (except the whole window is translucent)

Short description of error

skarkkai@bosk:~$ blender
Warning! GLX_ARB_create_context not available.
Warning! GLX_ARB_create_context not available.
Warning! GLX_ARB_create_context not available.
Warning! GLX_ARB_create_context not available.
Warning! GLX_ARB_create_context not available.
Warning! GLX_ARB_create_context not available.
Warning! GLX_ARB_create_context not available.
Writing: /tmp/blender.crash.txt
Segmentation fault (core dumped)

skarkkai@bosk:~$ cat /tmp/blender.crash.txt

Blender 2.80 (sub 35), Commit date: 2018-11-30 22:29, Hash 0f5b53ba4d

backtrace

blender(BLI_system_backtrace+0x1d) [0x1b830dd]
blender() [0x114ecc9]
/lib/x86_64-linux-gnu/libc.so.6(+0x3ef20) [0x7f90ef96df20]
blender(wm_window_ghostwindows_ensure+0x3fc) [0x1174e1c]
blender(WM_check+0x4a) [0x114f31a]
blender(wm_homefile_read+0x2dc) [0x115c3ec]
blender(WM_init+0x138) [0x115fe48]
blender(main+0x28c) [0x10b54bc]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xe7) [0x7f90ef950b97]
blender(_start+0x2a) [0x114b7ca]

Running "blender-softwaregl --factory-startup" also crashes exactly the same way.

Exact steps for others to reproduce the error

Run "blender" or "blender-softwaregl --factory-startup" in terminal.

**System Information** Operating system: Ubuntu 18.04, Gnome3 Graphics card: Intel Corporation HD Graphics 520 (rev 07) **Blender Version** Broken: Blender 2.80 (sub 35), Commit date: 2018-11-30 22:29, Hash 0f5b53ba4dc Worked: 2.79b (except the whole window is translucent) **Short description of error** skarkkai@bosk:~$ blender Warning! GLX_ARB_create_context not available. Warning! GLX_ARB_create_context not available. Warning! GLX_ARB_create_context not available. Warning! GLX_ARB_create_context not available. Warning! GLX_ARB_create_context not available. Warning! GLX_ARB_create_context not available. Warning! GLX_ARB_create_context not available. Writing: /tmp/blender.crash.txt Segmentation fault (core dumped) skarkkai@bosk:~$ cat /tmp/blender.crash.txt # Blender 2.80 (sub 35), Commit date: 2018-11-30 22:29, Hash 0f5b53ba4dc # backtrace blender(BLI_system_backtrace+0x1d) [0x1b830dd] blender() [0x114ecc9] /lib/x86_64-linux-gnu/libc.so.6(+0x3ef20) [0x7f90ef96df20] blender(wm_window_ghostwindows_ensure+0x3fc) [0x1174e1c] blender(WM_check+0x4a) [0x114f31a] blender(wm_homefile_read+0x2dc) [0x115c3ec] blender(WM_init+0x138) [0x115fe48] blender(main+0x28c) [0x10b54bc] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xe7) [0x7f90ef950b97] blender(_start+0x2a) [0x114b7ca] Running "blender-softwaregl --factory-startup" also crashes exactly the same way. **Exact steps for others to reproduce the error** Run "blender" or "blender-softwaregl --factory-startup" in terminal.
Author

Added subscriber: @skarkkai

Added subscriber: @skarkkai
Author

Disabling OpenGL and Composite extensions in CompizConfig Settings Manager had no effect.

Disabling OpenGL and Composite extensions in CompizConfig Settings Manager had no effect.

Added subscriber: @ZedDB

Added subscriber: @ZedDB

What is your output from:

$ glxinfo | grep -i opengl
$ glxinfo | grep GLX_ARB

If you do not see the "GLX_ARB_create_context" in the grep command, then your GPU driver does not support the needed functionality to run blender.
It says here that the intel i965 driver should have that extension: https://mesamatrix.net/

What is your output from: ``` $ glxinfo | grep -i opengl $ glxinfo | grep GLX_ARB ``` If you do not see the "GLX_ARB_create_context" in the grep command, then your GPU driver does not support the needed functionality to run blender. It says here that the intel i965 driver should have that extension: https://mesamatrix.net/
Author

$ glxinfo | grep -i opengl

OpenGL vendor string: Brian Paul
OpenGL renderer string: Mesa X11
OpenGL version string: 2.1 Mesa 8.0.5
OpenGL shading language version string: 1.20
OpenGL extensions:

$ glxinfo | grep GLX_ARB

  GLX_ARB_get_proc_address, GLX_EXT_texture_from_pixmap, 
  GLX_ARB_get_proc_address, GLX_EXT_texture_from_pixmap, 
  GLX_ARB_get_proc_address, GLX_EXT_texture_from_pixmap, 
$ glxinfo | grep -i opengl ``` OpenGL vendor string: Brian Paul OpenGL renderer string: Mesa X11 OpenGL version string: 2.1 Mesa 8.0.5 OpenGL shading language version string: 1.20 OpenGL extensions: ``` $ glxinfo | grep GLX_ARB ``` GLX_ARB_get_proc_address, GLX_EXT_texture_from_pixmap, GLX_ARB_get_proc_address, GLX_EXT_texture_from_pixmap, GLX_ARB_get_proc_address, GLX_EXT_texture_from_pixmap,
Author

lshw -c video shows my system is using i915.

`lshw -c video` shows my system is using i915.

Changed status from 'Open' to: 'Archived'

Changed status from 'Open' to: 'Archived'
Sebastian Parborg self-assigned this 2018-12-10 20:59:56 +01:00

I think you are using software rendering (so you are not using you GPU to render).
The vendor string and renderer string implies as much. And that is why you are locked to opengl 2.1.

Blender 2.8 requires at least opengl 3.3. So you will have to figure out how to get the intel drivers working properly.
This is not a blender problem though.

I think you are using software rendering (so you are not using you GPU to render). The vendor string and renderer string implies as much. And that is why you are locked to opengl 2.1. Blender 2.8 requires at least opengl 3.3. So you will have to figure out how to get the intel drivers working properly. This is not a blender problem though.
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#58427
No description provided.