Como você usa o ubuntu-drivers-common ou software-properties na linha de comando para alterar os drivers gráficos?

6

Martin Pitt removeu o jockey-text no Ubuntu 14.04 (também é quebrado em 13,10 aparentemente) mas eu usei para alterar os drivers gráficos na linha de comando quando X não estava funcionando. Como faço isso agora (ele se refere aos dois pacotes no título)?

    
por Ads20000 14.04.2014 / 09:03

1 resposta

6

Usando ubuntu-drivers , os comandos disponíveis são descritos abaixo:

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.

Fonte

Assim, você pode obter a lista de nomes de pacotes com sudo ubuntu-drivers devices e, em seguida, instalar os respectivos pacotes usando apt-get .

Depois de instalar o que você quer usar, você tem que remover o que você não quer usar. Isso forçará o Ubuntu a usar o que você instalou (obrigado @ Ads20000 )

    
por Sylvain Pineau 14.04.2014 / 10:04