Não, você não pode. Pelo menos não com essa ferramenta. Não há um comando que ajude você a instalar drivers diferentes:
list: Show all driver packages which apply to the current system.
debug: Print all available information and debug data about drivers.
devices: Show all devices which need drivers, and which packages apply to them.
autoinstall: Install drivers that are appropriate for automatic installation.
list
não instala, mas lista. debug
apenas imprime mais informações. devices
é informativo. autoinstall
não permite outros parâmetros:
def command_autoinstall(args):
'''Install drivers that are appropriate for automatic installation.'''
cache = apt.Cache()
packages = UbuntuDrivers.detect.system_driver_packages(cache)
packages = UbuntuDrivers.detect.auto_install_filter(packages)
if not packages:
print('No drivers found for automatic installation.')
return
# ignore packages which are already installed
to_install = []
for p in packages:
if not cache[p].installed:
to_install.append(p)
if not packages:
print('All drivers for automatic installation are already installed.')
return
ret = subprocess.call(['apt-get', 'install', '-o',
'DPkg::options::=--force-confnew', '-y'] + to_install)
# create package list
if ret == 0 and args.package_list:
with open(args.package_list, 'a') as f:
f.write('\n'.join(to_install))
f.write('\n')
return ret
Você pode simplesmente ignorar a ferramenta e instalar manualmente o pacote usando apt
após a saída obtida. Basta remover um pacote e instalar o outro:
sudo apt-get install nvidia-331-updates