$ dmesg
[ 3305.097301] usb 1-1: USB disconnect, device number 7
[ 3306.883704] usb 1-1: new high-speed USB device number 8 using ehci-pci
[ 3307.188064] usb 1-1: New USB device found, idVendor=0403, idProduct=6014
[ 3307.188069] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3307.188071] usb 1-1: Product: Digilent USB Device
[ 3307.188072] usb 1-1: Manufacturer: Digilent
[ 3307.188074] usb 1-1: SerialNumber: 210512180081
[ 3307.336684] usbcore: registered new interface driver ftdi_sio
[ 3307.336718] usbserial: USB Serial support registered for FTDI USB Serial Device
[ 3307.336783] ftdi_sio 1-1:1.0: FTDI USB Serial Device converter detected
[ 3307.336850] usb 1-1: Detected FT232H
[ 3307.339018] usb 1-1: FTDI USB Serial Device converter now attached to ttyUSB0
[ 3307.656752] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0
[ 3307.656775] ftdi_sio 1-1:1.0: device disconnected

$ lsmod | grep ftdi_sio
ftdi_sio 52949 0

$ sudo rmmod ftdi_sio

$ lsmod |grep ftdi_sio

$ sudo gedit /etc/modprobe.d/blacklist.conf

在文件末尾添加一行

blacklist ftdi_sio

保存并关闭

$ dmesg
[ 3386.408334] usb 1-1: new high-speed USB device number 10 using ehci-pci
[ 3386.713372] usb 1-1: New USB device found, idVendor=0403, idProduct=6014
[ 3386.713377] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3386.713379] usb 1-1: Product: Digilent USB Device
[ 3386.713381] usb 1-1: Manufacturer: Digilent
[ 3386.713382] usb 1-1: SerialNumber: 210512180081

Centos 7禁止ftdi_sio模块的更多相关文章

  1. CentOS下禁止防火墙

    CentOS下禁止防火墙 1.使用如下命令安装iptables-services. yum install -y iptables-services 2.关闭防火墙. service iptables ...

  2. CentOS 7禁止IPv6

    如何在CentOS 7中禁止IPv6 https://Linux.cn/article-4935-1.html 最近,我的一位朋友问我该如何禁止IPv6.在搜索了一番之后,我找到了下面的方案.下面就是 ...

  3. CentOS配置禁止root用户直接登录

    Linux的默认管理员名即是root,只需要知道ROOT密码即可直接登录SSH.禁止Root从SSH直接登录可以提高服务器安全性.经过以下操作后即可实现.本文适用于CentOS.Debian等Linu ...

  4. Centos防火墙禁止ping和开启ping

    1.允许PING设置 iptables -A INPUT -p icmp --icmp-type echo-request -j ACCEPT iptables -A OUTPUT -p icmp - ...

  5. CentOS允许/禁止ping的方法

    一.临时生效 1.允许ping >/proc/sys/net/ipv4/icmp_echo_ignore_all 2.禁止ping >/proc/sys/net/ipv4/icmp_ech ...

  6. centos/linux 禁止root用户远程登录

    注意:在禁止root等前要建立一个用户用来远程登录,否则退出后无法通过远程登录服务器. 编辑 /etc/ssh/sshd_config 文件 更改参数 PermitRootLogin yes 为 Pe ...

  7. 永久禁止floppy模块开机自动加载

    环境:Red Hat Enterprise Linux Server release 7.4 (Maipo) 问题:执行fdisk -l后系统会抓到错误 解决方案: https://access.re ...

  8. centos 安装python PIL模块

    转载:https://www.cnblogs.com/ccdc/p/4069112.html 1.安装 使用yum安装缺少类库: #尤其重要,否则会报错 yum install python-deve ...

  9. centos 7 禁止root登录及更改ssh端口号

    vim /etc/ssh/sshd_config PermitRootLogin yes => PermitRootLogin no systemctl restart sshd.service ...

随机推荐

  1. lesson12Homework

    package StringPractice; public class arrayTest { //1. 把A数组的前5个元素复制到B数组中. public static void main(Str ...

  2. 抓包工具之tcpdump

    tcpdump 官网 -> http://www.tcpdump.org 1. 安装步骤 在官网分别下载 Tcpdump.Libpcap 这两个包链接 在安装Tcpdump之前,先安装Libpc ...

  3. Redis之过期策略

    一.设置过期时间 Redis对存储值的过期处理实际上是针对该值的键(key)处理的,即时间的设置也是设置key的有效时间.Expires字典保存了所有键的过期时间,Expires也被称为过期字段. e ...

  4. spring boot 使用RedisTemplate

    1导入包 <!-- redis --> <dependency> <groupId>org.springframework.boot</groupId> ...

  5. centos7 php7.3

    ./configure --prefix=/root/php/php-7.3.10/output \ --with-mhash \ --with-openssl \ --with-mysqli=sha ...

  6. (六)buildroot使用详解

    为什么要使用buildroot? (文件系统搭建,强烈建议直接用buildroot,官网[http://buildroot.uclibc.org/]上有使用教程非常详细)文件系统通常要包含很多第三方软 ...

  7. 9月24日开始发布,主打安全的Librem 5 Linux手机

    曾推出搭载PureOS Linux发行版本Librem笔记本系列的硬件厂商Purism,今天正式宣布了Librem 5 Linux手机的最终和官方发售日期.Librem 5于2017年10月正式发布, ...

  8. IO框架:asyncio 上篇

    如何定义/创建协程 只要在一个函数前面加上 async 关键字,这个函数对象是一个协程,通过isinstance函数,它确实是Coroutine类型. from collections.abc imp ...

  9. Tampermonkey油猴脚本管理插件-最强浏览器插件的安装使用全攻略

      对于接触过谷歌浏览器插件的“玩家”们来说,应该没有人没听说过Tampermonkey用户脚本管理器,也就是中文所说的“油猴”这个chrome插件了. 油猴号称全商店最强的浏览器插件绝非浪得虚名,一 ...

  10. pssh一个微量级自动化工具

    一.pssh简介 pssh是一个python编写可以在多台服务器上执行命令的工具,也可实现文件复制.pssh需要通过ssh的key验证来管理主机,其不能很好的支持密码验证.用过epel源的pssh包来 ...