나는 최근 새로 설치된 Debian 8.6 ppc의 몇 가지 사소한 문제를 해결하려고 노력하고 있습니다. 문제를 해결하기 위해 터미널에서 실행할 명령을 찾거나 받았습니다. 이 명령을 추가했지만 /etc/init.d/rc.local
작동 하려면 부팅하고 로그인한 후 터미널에서 명령 /etc/rc.local
을 .profile
실행해야 합니다.
하나는 sudo modprobe snd-aoa-i2sbus
사운드를 작동시키는 것이고, 두 번째는 synclient TapButton1=1
터치패드 클릭을 활성화하는 것입니다.
답변1
이러한 작업을 수행하기 위해 명령을 실행할 필요는 없습니다. 모듈 로딩 및 주변 장치 구성을 처리하려면 특정 구성 파일을 사용하십시오.
사운드 모듈 로딩
모듈 이름과 함께 줄을 추가하도록 snd-aoa-i2sbus
편집하여 해결할 수 있습니다 . /etc/modules
다음과 같이 보일 것입니다:
root@host:~# cat /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
snd-aoa-i2sbus
loop
로드 시 모듈 옵션: 로드 중에 특정 모듈 매개변수를 변경해야 하는 경우 다음을 /etc/modprobe.d/<your_module>.conf
실행하여 해당 매개변수를 에 추가합니다.modinfo snd-aoa-i2sbus | grep '^parm:'
터치패드 구성
터치패드 버튼을 변경하려면 수정 /etc/X11/xorg.conf.d/50-synaptics.conf
(없을 경우 생성)하고 다음 내용을 입력하세요.
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
EndSection
매개변수를 사용하여 버튼 동작/작업을 매핑 Option
하고 필요에 맞게 터치패드 버튼을 변경하기만 하면 됩니다. 이 답변에 대한 설명에서 지적했듯이 xorg.conf.d/
디렉토리가 없으면 직접 조정할 /etc/X11
필요가 없습니다 .xorg.conf
답변2
이전에 Jessie를 사용한 적이 없지만 /etc/modules-load.d/에 program.conf를 배치하여 모듈을 블랙리스트에 추가했습니다.
예를 들어:
/etc/modules-load.d/virtio-net.conf
# Load virtio-net.ko at boot
virtio-net
다음은 참고 자료입니다.https://wiki.archlinux.org/index.php/kernel_modules
module-load.d 디렉토리가 존재하지 않으면 /lib/modules/ 디렉토리가 흥미로울 수 있습니다.