VESA 드라이버가 TrueOS(FreeBSD 12)에서 작동하지 않습니다.

VESA 드라이버가 TrueOS(FreeBSD 12)에서 작동하지 않습니다.

내 하드 드라이브에서 TrueOS(현재 FreeBSD12)를 사용하고 있습니다. 설치 후 시작할 때. VESA 설치를 권유했는데 vesa 드라이브를 선택하니 화면이 ​​하얗게 변하고 재부팅해서 드라이버를 인텔로 바꾸니 완료됐는데 백라이트가 안좋아요 드라이버 불량인줄 알았어요. 권장 드라이버 vesa를 다운로드하고 사용하는 방법.

저는 grub2와 아치 및 페도라와 함께 듀얼 부팅 TrueOS를 사용하고 있습니다. lspciArch에서의 내 결과는 다음과 같습니다.

$ lspci 
00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation 7 Series/C216 Chipset Family MEI Controller #1 (rev 04)
00:16.3 Serial controller: Intel Corporation 7 Series/C210 Series Chipset Family KT Controller (rev 04)
00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (rev 04)
00:1a.0 USB controller: Intel Corporation 7 Series/C216 Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 7 Series/C216 Chipset Family High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 7 Series/C216 Chipset Family PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4)
00:1c.2 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 3 (rev c4)
00:1d.0 USB controller: Intel Corporation 7 Series/C216 Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation QM77 Express Chipset LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 7 Series/C216 Chipset Family SMBus Controller (rev 04)
02:00.0 System peripheral: Ricoh Co Ltd PCIe SDXC/MMC Host Controller (rev 07)
03:00.0 Network controller: Intel Corporation Centrino Advanced-N 6205 [Taylor Peak] (rev 34)

Linux 드라이버를 사용할 수 있다고 들었습니다. 어떻게 해야 합니까?

답변1

대신 scfb 드라이버를 사용하세요.

좋다 /usr/local/etc/X11/xorg.conf.d/xorg.conf:

Section "Device"
    Driver      "scfb"
EndSection

~에서https://wiki.freebsd.org/Graphics/SCFB

FreeBSD 시스템에서 가속 그래픽 드라이버를 사용할 수 없는 경우 대안은 scfb 드라이버를 사용하는 것입니다. 이 글을 쓰는 시점에서 이는 Intel DRM 드라이버가 지원을 포함하도록 업데이트될 때까지 통합 그래픽이 있는 Intel Broadwell 또는 Skylake 칩셋이 장착된 노트북에 대한 일반적인 옵션입니다. scfb 드라이버는 그래픽 가속 기능을 제공하지 않고 밝기 조정, 외부 모니터 지원 등 일부 기능이 부족하지만, 내장된 노트북 모니터에서는 간단하게 데스크탑 사용은 물론 동영상 재생까지 잘 작동합니다.

scfb 드라이버가 작동하려면 시스템에서 새로운 vt(4)(Newcons라고도 함) 콘솔을 사용해야 합니다. 이는 시스템이 UEFI를 사용하여 부팅하는 경우 기본 설정이지만 (레거시) BIOS 모드를 사용하여 부팅하는 경우에는 기본 설정이 아닙니다. scfb 드라이버가 작동하려면 일부 노트북을 UEFI 모드에서 부팅해야 합니다(레거시 BIOS 모드에서 부팅하지만 vt(4)를 사용하도록 sysctl을 수동으로 설정하면 작동하지 않을 수 있음).

관련 정보