Debian

穆特和英特爾 GMA 4500MHD

  • May 1, 2011

我正在嘗試在 Debian Wheezy 中將 Mutter 與我的 Intel GMA 4500MHD(在我的 Thinkpad T400 上)一起使用。但是,它說:

不使用 GLX TFP

並且一些效果變得非常緩慢。

我該如何解決?

可能一種方法是升級到mutter 3.0

為此,您首先必須添加 debian 實驗儲存庫。以 su 身份打開 /etc/apt/sources.list 並添加

# Experimental (just when explicitly demanded)
deb http://ftp.at.debian.org/debian/ experimental main contrib non-free
deb-src http://ftp.at.debian.org/debian/ experimental main contrib non-free

下一步非常重要。以 su 身份打開 /etc/apt/apt.conf 並確保它包含這一行

APT::Default-Release "<your release>"; # (your release could be "testing" for example)

如果您錯過了這一步,您的系統可能會更改為 debian 實驗性。

現在更新您的儲存庫資訊

apt-get update

並從實驗安裝 mutter

apt-get -t experimental install mutter

在我的筆記本上,實驗性的嘟嘟聲直到現在都沒有引起任何問題……

在對系統進行細微更改之前,您可能還想閱讀本文件的第 3.8 節。

引用自:https://unix.stackexchange.com/questions/12423