xorg.conf에서 "load "fb""란 무엇입니까?

xorg.conf에서 "load "fb""란 무엇입니까?

Load "fb"in Section "Module"of 는 실제로 무엇을 합니까 /etc/xorg.conf?


RTFM을 시도하고 먼저 검색해 보세요.

답변1

Load "fb"X에게 프레임버퍼 모듈을 로드하라고 지시합니다.

(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
       compiled for 1.4.2, module version = 1.0.0
       ABI class: X.Org ANSI C Emulation, version 0.3
freedesktop.org xorg 아카이브에서
    The fb library is what is responsible for almost all of the software
    rendering that your X Server might do.

    You're probably mostly spending your time in fbComposite() and its
    children, which is the Render extension software implementation.  Some
    drivers have hardware implementations of this, and we're working on
    making this be the case for more hardware.

    -- 
    Eric Anholt                     anholt at FreeBSD.org
    eric at anholt.net                 eric.anholt at intel.com

대부분의 배포판에서 다음과 같은 파일을 찾을 수 있습니다:

$ locate libfb.so
/usr/lib64/xorg/modules/libfb.so
$ rpm -qf /usr/lib64/xorg/modules/libfb.so
xorg-x11-server-Xorg-1.19.5-5.el7.x86_64

그리고 포장 자체의 내용물/목적에 대해 물어보세요.

프레임버퍼란 무엇인가

그렇다면 다음 질문은 프레임버퍼가 무엇인지일 것입니다. 이에 대해서는 Wikipedia를 확인하십시오.프레임버퍼:

프레임 버퍼(프레임 저장소라고도 함)는 RAM의 일부입니다.1비디오 디스플레이를 구동하는 비트맵을 포함합니다. 완전한 데이터 프레임을 포함하는 메모리 버퍼입니다.2최신 비디오 카드의 핵심에는 프레임 버퍼 회로가 포함되어 있습니다. 이 회로는 메모리의 비트맵을 컴퓨터 모니터에 표시할 수 있는 비디오 신호로 변환합니다.

컴퓨터에서 이와 같은 버퍼는 메모리 영역을 모니터/화면에 직접 매핑하는 데 사용되며, 해당 영역을 모니터링하는 드라이버가 있습니다. 이 위치에 배치된 모든 항목은 모니터/화면 자체에서 선택되어 렌더링됩니다.

프레임 버퍼에 대한 자세한 내용은 다음 제목의 U&L Q&A를 참조하세요.프레임버퍼 장치란 무엇입니까? 더 높은 해상도를 위해 필요한가요?.

인용하다

관련 정보