AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题 / 3667
Accepted
Darkmage
Darkmage
Asked: 2010-09-06 06:12:54 +0800 CST2010-09-06 06:12:54 +0800 CST 2010-09-06 06:12:54 +0800 CST

黑色 tty 1-6 屏幕

  • 772

安装 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:    

使用 radeon x1300 的Nerdfest

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)

有人有建议吗?

10.04 upgrade drivers
  • 3 3 个回答
  • 2949 Views

3 个回答

  • Voted
  1. Best Answer
    FuzzyQ
    2012-06-15T05:01:14+08:002012-06-15T05:01:14+08:00

    我知道这个线程已经死了很长一段时间了,但是对于你们中的一些人来说,这个问题可能仍然存在,就像直到不久前对我一样。Ctrl如果您在点击++ to后出现黑屏,以下是如何让您的 tty-consoles恢复Alt:F1F6

    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 控制台应该可以再次访问。

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

    • 3
  2. Oli
    2010-09-06T07:37:48+08:002010-09-06T07:37:48+08:00

    根据另一个网站上的这个答案:

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

    options radeon modeset=0
    

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

    • 1
  3. Javier Rivera
    2010-09-10T23:42:18+08:002010-09-10T23:42:18+08:00

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

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

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

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

    • 1

相关问题

  • 从 8.04 LTS 升级到 10.04 LTS 的体验?

  • 分销升级的合理途径

  • 删除在线状态菜单,但保留注销菜单?

  • 什么可能会阻止 xrandr 屏幕之间的鼠标移动?[关闭]

  • 在不使用标准升级系统的情况下升级有哪些替代方案?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何安装 .run 文件?

    • 7 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    如何获得 CPU 温度?

    • 21 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Marko Smith

    如何使用命令行将用户添加为新的 sudoer?

    • 7 个回答
  • Marko Smith

    更改文件夹权限和所有权

    • 9 个回答
  • Marko Smith

    你如何重新启动Apache?

    • 13 个回答
  • Marko Smith

    如何卸载软件?

    • 11 个回答
  • Marko Smith

    如何删除 PPA?

    • 26 个回答
  • Martin Hope
    NES 如何启用或禁用服务? 2010-12-30 13:03:32 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    Olivier Lalonde 如何在结束 ssh 会话后保持进程运行? 2010-10-22 04:09:13 +0800 CST
  • Martin Hope
    David B 如何使用命令行将用户添加为新的 sudoer? 2010-10-16 04:02:45 +0800 CST
  • Martin Hope
    Hans 如何删除旧内核版本以清理启动菜单? 2010-08-21 19:37:01 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve