메모리에 블루투스 모듈을 로딩했는지 lsmod로 확인한다.
$ lsmod | grep btusb
블루투스 모듈이 있는지 확인한다. kernerl/drivers/bluetooth 디렉토레 있는지 확인할 수 있다.
$ modinfo btusb
filename: /lib/modules/3.10.0-327.22.2.el7.x86_64/kernel/drivers/bluetooth/btusb.ko
license: GPL
version: 0.6
description: Generic Bluetooth USB driver ver 0.6
author: Marcel Holtmann <marcel@holtmann.org>
rhelversion: 7.2
..
modprobe를 이용해서 블루투스 모듈을 메모리에 올린다.
$ sudo modprobe btusb
정상적으로 블루투스 모듈이 올라갔는지 lsmod로 확인한다.
$ lsmod | grep btusb
btusb 28219 0
bluetooth 372944 1 btusb
이제 블루투스 모듈을 내리고, 메모리에 해당 모듈이 있는지 확인한다.
$ sudo rmmod btusb
$ lsmod | grep btusb
'unix and linux' 카테고리의 다른 글
[centos7] 시간 동기화 하기 - chrony (0) | 2016.08.05 |
---|---|
[centos 7] 로케일 변경하기 - localectl (0) | 2016.08.05 |
[centos] yum groupinfo, groupinstall 설치 (0) | 2016.08.04 |
[bash] 리스트(List)에서 중복 요소 제거하기 (0) | 2016.08.03 |
[vagrant] 맥에서 centos 7 설치 (0) | 2016.07.24 |