시스템에서 실제로 어떤 xorg.conf.d가 사용되는지 이해하는 방법


4

Ubuntu 17.04에서 실행 locate xorg.conf.d | grep d$하면 다음과 같은 결과를 얻을 수 있습니다.

/etc/X11/xorg.conf.d
/usr/share/X11/xorg.conf.d

이와 같은 두 개의 폴더가있는 것이 정상입니까, 아니면 이전에 수행 한 배포판 업그레이드로 인한 부작용입니까?

둘 중 시스템에서 실제로 사용되는 폴더입니다. 구성 파일을 추가해야하는데 구성 파일을 다른 파일에 추가할지 여부를 모릅니다.

답변:


4

에 따르면 man xorg.conf,

When the Xorg server is started by the “root” user, the config directory search locations are as follows:

    /etc/X11/<cmdline> 
    /usr/etc/X11/<cmdline> 
    /etc/X11/xorg.conf.d 
    /usr/etc/X11/xorg.conf.d

where <cmdline> is the path specified with the −configdir command line option (which may be absolute or relative).
Finally, configuration files will also be searched for in directories reserved for system use. These are to separate configuration files from the vendor or 3rd party packages from those of local administration. These files are found in the following directories:

    /usr/share/X11/xorg.conf.d 

그래서 /etc/X11/xorg.conf.d당신이 당신의 구성을 넣어해야하는 위치이며, /usr/share/X11/xorg.conf.d소프트웨어가 구성 파일을 넣을 곳입니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.