2018-05-05 21:40:43 +02:00
|
|
|
Framebuffer
|
|
|
|
===========
|
|
|
|
|
|
|
|
The Final Cut determines the used number of bits per pixel (bpp)
|
|
|
|
for Linux framebuffer console to determine whether 16 (or more)
|
2018-11-18 22:50:45 +01:00
|
|
|
different background colors can be displayed. Therefore your user
|
2018-05-05 21:48:20 +02:00
|
|
|
needs read-access to the framebuffer device (/dev/fb0 or /dev/fb/0).
|
2018-05-05 21:52:13 +02:00
|
|
|
You can check this with the following command:
|
2018-05-05 21:40:43 +02:00
|
|
|
|
|
|
|
> fbset -i
|
|
|
|
|
|
|
|
If the read-access is not given, it can help to add your user to
|
|
|
|
the group "video". To do this, please enter the following command:
|
|
|
|
|
|
|
|
> sudo usermod -a -G video USERNAME
|
|
|
|
|
2018-11-18 22:50:45 +01:00
|
|
|
You can check the group members with the id command:
|
2018-05-05 21:40:43 +02:00
|
|
|
|
|
|
|
> id
|
|
|
|
|