设备 /dev/ttyUSB2 已锁定

设备 /dev/ttyUSB2 已锁定

我的 GSM 调制解调器已连接到 ttyUSB2 端口,但我无法访问该端口以执行 AT 命令。当我尝试访问它时,我收到以下错误:

$ sudo minicom
Device /dev/ttyUSB2 is locked.

答案1

执行ps -ef并查看是否有任何minicom -s进程正在运行。

如果有,则使用where终止该进程kill -9 pidpid是输出中给出的PID编号ps -ef。它将解决您的问题。

答案2

阅读man minicom。其中部分内容如下:

     B - Lock file location
          On most systems This should be /usr/spool/uucp. GNU/Linux systems use /var/lock. If
          this directory does not exist, minicom will not attempt to use lockfiles.

因此,查找锁定文件/var/lock/usr/spool/uucp

相关内容