ep 环上没有空间?

ep 环上没有空间?

我刚刚切换到 tty1,并且得到了各种输出。一切看起来像这样:

[timestamp] xhci_hcd 0000:00:14.0: ERROR no room on ep ring

它在每个 tty 上每秒发生超过 100 次,每 5 秒左右一次。其他类似的问题说这是因为外部驱动器而发生的,但我安装的唯一驱动器是 /dev/sda1 (根),以及 /dev/sda5 上的交换分区

编辑:这是mount根:

sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,relatime,size=10240k,nr_inodes=1008641,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=808160k,mode=755)
/dev/disk/by-uuid/eb5e28f7-395f-4556-aff4-8c8910a6295c on / type ext4 (rw,relatime,errors=remount-ro,user_xattr,barrier=1,data=ordered)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /run/shm type tmpfs (rw,nosuid,nodev,noexec,relatime,size=4924640k)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,nosuid,nodev,noexec,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
gvfs-fuse-daemon on /home/lucas/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
gvfs-fuse-daemon on /root/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,relatime,user_id=0,group_id=0)
truecrypt on /tmp/.truecrypt_aux_mnt1 type fuse.truecrypt (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)
/dev/mapper/truecrypt1 on /media/truecrypt1 type ext4 (rw,relatime,user_xattr,barrier=1,data=ordered)

(请注意,此问题是在安装 truecrypt 卷之前开始的)

我的dmseg已经完全臃肿了,除了这条消息什么也没有。

重新启动后,我的 dmesg 恢复正常。它是方式太长了,无法在这里发布,所以这里有一个 Pastebin 链接:

消息

答案1

我想要我的蒂

这些消息很可能试图告诉您一些事情。如果您只是尝试使用tty1终端而不发送所有消息,您可以暂时将其关闭:

$ dmesg -n #

其中#是数字,例如 1,2,3,...

dmesg手册页摘录

-n level
          Set the level at which logging of messages is done to the 
          console.  For example, -n 1 prevents all messages, except
          panic messages, from appearing on the console.  All levels of 
          messages are still written to /proc/kmsg, so syslogd(8) can 
          still be used to control exactly where kernel messages appear.
          When the -n option is used, dmesg will not print or clear the
          kernel ring buffer.

调试消息

如果您试图确定消息的来源是什么,那么我们将需要更多信息,例如命令的输出mount,并在命令的输出中查找dmesg相同的消息,并提供该消息之前和之后的任何行相关的。

USB 3.0 设备的已知问题?

我在 Ask Ubuntu 上发现了这个帖子,标题为:错误:带有 USB 3.0 设备的 ep 环上没有空间听起来你有问题。看起来已经有一个错误打开,标题为,“错误 ep 环上没有空间”会在几分钟内填满系统日志和硬盘,但目前似乎还没有解决,甚至还没有分配。

相关内容