访问 tty1 到 6 需要很长时间

访问 tty1 到 6 需要很长时间

当我尝试从 X 会话 (tty7) 切换时,需要很长时间。一旦进入 tty1-6,就可以立即转到 tty1-7。

感觉 tty7 -> ttyX 切换所花的时间就像一个函数:
tty7 -> ttyX loading time = 3 seconds + (length of the session inside ttyX)

可能是什么原因造成的或者我该如何解决?

编辑:附加信息

uname -a
Linux troll 3.16.0-31-generic #41~14.04.1-Ubuntu SMP Wed Feb 11 19:30:13 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux


sudo lshw -c video
  *-display UNCLAIMED     
       description: 3D controller
       product: GM108M [GeForce 840M]
       vendor: NVIDIA Corporation
       physical id: 0
       bus info: pci@0000:01:00.0
       version: a2
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress cap_list
       configuration: latency=0
       resources: memory:f6000000-f6ffffff memory:e0000000-efffffff memory:f0000000-f1ffffff ioport:e000(size=128) memory:f7000000-f707ffff
  *-display
       description: VGA compatible controller
       product: 4th Gen Core Processor Integrated Graphics Controller
       vendor: Intel Corporation
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 06
       width: 64 bits
       clock: 33MHz
       capabilities: msi pm vga_controller bus_master cap_list rom
       configuration: driver=i915 latency=0
       resources: irq:53 memory:f7400000-f77fffff memory:d0000000-dfffffff ioport:f000(size=64) 

显卡驱动程序:Intel i915
Ubuntu 版本:14.04

答案1

这听起来很像是内核或 xorg-server 的问题。

一个潜在的解决方案是安装 3.16 Utopic + 最新的 xorg-server 堆栈。

为此,您可以按照社区推荐的安装说明进行操作:

总之:

sudo apt-get install --install-recommends linux-generic-lts-utopic xserver-xorg-lts-utopic libgl1-mesa-glx-lts-utopic

然而,我注意到我的博客您应该首先模拟此安装并仔细检查将要删除的软件包。

sudo apt-get -s install --install-recommends linux-generic-lts-utopic xserver-xorg-lts-utopic libgl1-mesa-glx-lts-utopic

一旦您确定没有删除任何重要软件包,请删除 -s 参数以安装硬件支持堆栈

相关内容