web-dev-qa-db-ja.com

グラフィックドライバを変更するには、コマンドラインでubuntu-drivers-commonまたはsoftware-propertiesをどのように使用しますか?

Martin PittはUbuntu 14.04でjockey-textを削除しました(13.10でも壊れているようです) しかし、Xが機能していないときにコマンドラインでグラフィックドライバーを変更するために使用しました。どうすればこれを実行できますか(彼はタイトルの2つのパッケージを参照しています)。

6
Ads20000

ubuntu-driversを使用して、使用可能なコマンドを以下に説明します。

usage: ubuntu-drivers [-h] [--package-list PATH] <command>

List/install driver packages for Ubuntu.

positional arguments:
  <command>            See below

optional arguments:
  -h, --help           show this help message and exit
  --package-list PATH  Create file with list of installed packages (in
                       autoinstall mode)

Available commands:
   debug: Print all available information and debug data about drivers.
   autoinstall: Install drivers that are appropriate for automatic installation.
   devices: Show all devices which need drivers, and which packages apply to them.
   list: Show all driver packages which apply to the current system.

ソース

したがって、Sudo ubuntu-drivers devicesを使用してパッケージ名のリストを取得し、apt-getを使用してそれぞれのパッケージをインストールできます。

使用したいものをインストールしたら、使用したくないものを削除する必要があります。これにより、Ubuntuはインストールしたものを使用するようになります(ありがとう@ Ads200

6
Sylvain Pineau