黑色tty 1-6屏幕

安装Ubuntu 10.04之后我遇到了一些闪烁的问题,所以我尝试升级驱动程序等,然后我安装了fglrx驱动程序并且闪烁已经消失但是当试图从1-6访问TTY屏幕时,屏幕变为空白。 我能够在tty7上回到gnome。

有人建议在这里尝试什么?


丹尼斯

输出是:

glennwiz @ Linux-laptop:〜$ sudo cat / dev / vcs1

 Ubuntu 10.04.1 LTS Linux-laptop tty1 Linux-laptop login: 

Nerdfest即时通讯使用radeon x1300

 lspci output 00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub (rev 03) 00:01.0 PCI bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express PCI Express Root Port (rev 03) 00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller (rev 01) 00:1c.0 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 1 (rev 01) 00:1c.1 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 2 (rev 01) 00:1c.3 PCI bridge: Intel Corporation N10/ICH 7 Family PCI Express Port 4 (rev 01) 00:1d.0 USB Controller: Intel Corporation N10/ICH7 Family USB UHCI Controller #1 (rev 01) 00:1d.1 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #2 (rev 01) 00:1d.2 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #3 (rev 01) 00:1d.3 USB Controller: Intel Corporation N10/ICH 7 Family USB UHCI Controller #4 (rev 01) 00:1d.7 USB Controller: Intel Corporation N10/ICH 7 Family USB2 EHCI Controller (rev 01) 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e1) 00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 01) 00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 01) 01:00.0 VGA compatible controller: ATI Technologies Inc M52 [Mobility Radeon X1300] 02:06.0 CardBus bridge: Texas Instruments PCIxx12 Cardbus Controller 02:06.2 Mass storage controller: Texas Instruments 5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD) 02:06.3 SD Host controller: Texas Instruments PCIxx12 SDA Standard Compliant SD Host Controller 02:06.4 Communication controller: Texas Instruments PCIxx12 GemCore based SmartCard controller 08:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5753M Gigabit Ethernet PCI Express (rev 21) 10:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02) 

有人有建议吗?

我知道这个post已经死了很长一段时间了,但是对于你们中的一些人来说这个问题可能仍然存在,就像我刚才那样。 如果你在按下Ctrl + Alt + F1F6之后得到黑屏,那么如何让你的tty-consoles回来:

  1. 在控制台中,运行

     sudo apt-get install v86d 
  2. 安装完成后,打开:

     gksudo gedit /etc/default/grub 
  3. 找到以下行:

     GRUB_CMDLINE_LINUX_DEFAULT="quiet" 

    注意:“”之间可能有更多条目,具体取决于之前的更改。

    替换为(或相应扩展):

     GRUB_CMDLINE_LINUX_DEFAULT="quiet nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap" 
  4. 找到另一行:

     #GRUB_GFXMODE=640x480 

    并替换为:

     GRUB_GFXMODE=1280x1024 

    注意:确保前面没有#

  5. 保存并关闭编辑器。

  6. 现在打开:

     gksudo gedit /etc/initramfs-tools/modules 

    在文件末尾添加以下行:

     uvesafb mode_option=1280x1024-24 mtrr=3 scroll=ywrap 
  7. 保存并关闭编辑器。

  8. 最后运行:

     FRAMEBUFFER=y | sudo tee /etc/initramfs-tools/conf.d/splash && sudo update-grub2 && sudo update-initramfs -u 
  9. 现在重启。 重启后,您的tty-console应该可以再次访问。

来源: crunchbanglinux.org:如果他们不工作,如何修复tty1-6(Ctrl + Alt + Fx终端)

根据另一个网站的答案 :

我需要创建文件/etc/modprobe.d/radeon-kms.conf ,添加以下行

 options radeon modeset=0 

并不得不重新启动。 现在闪烁消失了。 🙂

我记得几年前我用一台运行ATI卡的电脑就遇到了这个问题。 IIRC的解决方案是在引导选项中为内核提供不同的分辨率。

您可以尝试在启动命令中添加vga = 785。 如果在Ubuntu开始加载时点击SHIFT,您应该能够看到GRUB菜单。 按“e”,您必须能够编辑启动命令。 在以“ linux ”开头的行的末尾追加vga = 785。 按CTRL + X启动。

您可以尝试使用其他一些解决方案,您可以在此Wiki中找到创建模式编号的说明。

请注意,我无法检查这个,它基于我非常有缺陷的记忆。 希望它有效。 如果它只是一个太疯狂的猜测,请不要犹豫。