Nvidia / Intel gráficos híbridos com canela e mdm

0

Eu olhei em todos os lugares, mas não consigo encontrar uma resposta

Eu tenho um laptop (Acer V3-5726-54S6) 1GB 8gbRam com um gpu intel integrado e um Nvidia GT840m (2GB). Rodando o Ubuntu 14.04 com canela e mdm

Estou tentando fazer com que a placa nvidia funcione com o canela usando o mdm, mas parece que não consigo fazer funcionar. Eu tentei

  • abelha. editando o bumblebee.conf. editando xorg.conf.nvidia
  • bumblebee com driver nvidia-340,
  • bumblebee com nvidia-331
  • bumblebee com nvidia-337
  • bumblebee com corrente nvidia - nvidia drivers (do site e xorg-edgers ppa)
  • drivers nouveau

quando eu usei bumblebee eu tentei

    $ optirun (any program)

e eu voltei

[ERROR]Cannot access secondary GPU - error: Could not load GPU driver

[ERROR]Aborting because fallback start is disabled.

isso aconteceu em todos os drivers diferentes que eu usei (331.337.340, atual) então eu desinstalei o bumblebee * e nvidia * tentei instalar drivers da nvidia no site, mas isso quebra a canela.

tentou instalar os secadores sem abelha (331.340)

lightdm selecionado quando me deu a opção, reiniciei, e eu tenho uma tela preta após a tela inicial de inicialização. quando eu escolhi mdm, canela caiu ...

também

$ lspci | egrep 'VGA|3D'

e voltamos

00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b)

03:00.0 3D controller: NVIDIA Corporation GM108M [GeForce 840M] (rev a2)

alguma ajuda?

    
por Aj Dich 23.02.2015 / 11:30

1 resposta

0

Em primeiro lugar, não tenho certeza se vou ajudá-lo com isso, mas atualmente não posso comentar sua pergunta.

Estou assumindo que você seguiu essa sequência:

sudo apt-get install linux-headers-generic
sudo apt-get install bumblebee primus primus-libs-ia32

do que o driver nvidia:

sudo add-apt-repository ppa:xorg-edgers/ppa 
sudo apt-get update
sudo apt-get install nvidia-xxx

ou

sudo apt-get install bumblebee-nvidia

no final, reinstale o bbswitch-dkms:

sudo apt-get install --reinstall bbswitch-dkms

Edite os arquivos de configuração, reinicie.

Se não:

sudo apt-get remove --purge nvidia-xxx
sudo apt-get remove --purge bumblebee

Se você tiver bumblebee-nvidia, substitua-o no código. Agora reinstale tudo a partir do topo.

Eu posso relatar que a nvidia-346 não funcionará, você apenas obterá uma tela preta após a reinicialização, e terá que limpar nvidia e x-server e reinstalar o x-server para fazer o sistema voltar ao normal.

Eu acho que não há como instalar o driver da nvidia de forma convencional (da nvidia -XXX.run) nos sistemas Optimus, tentei algumas vezes e falhei.

Como exatamente você editou bumblebee, bumblebee.conf, xorg.conf.nvidia?

Eu recebi esse erro quando aconteceu de não ter o nome do driver especificado no bumblebee.conf.

Eu lhe darei meu bumblebee.conf sob o texto. Tenha em mente que estou usando o driver padrão (bumblebee-nvidia). Estamos usando o mesmo sistema operacional.

No entanto, acho que o problema irá surgir na linha BusID no xorg.conf.nvidia. Como você pode ver, BusID da sua placa nvidia é 03: 00.0, e ainda, o padrão BusID no arquivo nvidia.conf é 01: 00: 0. Atualmente, a linha é assim:

#   BusID "PCI:01:00:0"

Você precisa remover a hashtag e alterar o valor para que seja assim:

    BusID "PCI:03:00:0"

Experimente o meu bumblebee.conf, edite o BusID no xorg.nvidia.conf e veja o que acontece. Espero que isso seja de alguma ajuda.

Aguardando resposta.

# Configuration file for Bumblebee. Values should **not** be put between quotes

## Server options. Any change made in this section will need a server restart
# to take effect.
[bumblebeed]
# The secondary Xorg server DISPLAY number
VirtualDisplay=:8
# Should the unused Xorg server be kept running? Set this to true if waiting
# for X to be ready is too long and don't need power management at all.
KeepUnusedXServer=false
# The name of the Bumbleblee server group name (GID name)
ServerGroup=bumblebee
# Card power state at exit. Set to false if the card shoud be ON when Bumblebee
# server exits.
TurnCardOffAtExit=false
# The default behavior of '-f' option on optirun. If set to "true", '-f' will
# be ignored.
NoEcoModeOverride=false
# The Driver used by Bumblebee server. If this value is not set (or empty),
# auto-detection is performed. The available drivers are nvidia and nouveau
# (See also the driver-specific sections below)
Driver=nvidia
# Directory with a dummy config file to pass as a -configdir to secondary X
XorgConfDir=/etc/bumblebee/xorg.conf.d

## Client options. Will take effect on the next optirun executed.
[optirun]
# Acceleration/ rendering bridge, possible values are auto, virtualgl and
# primus.
Bridge=virtualgl
# The method used for VirtualGL to transport frames between X servers.
# Possible values are proxy, jpeg, rgb, xv and yuv.
VGLTransport=proxy
# List of paths which are searched for the primus libGL.so.1 when using
# the primus bridge
PrimusLibraryPath=/usr/lib/x86_64-linux-gnu/primus:/usr/lib/i386-linux-gnu/primus
# Should the program run under optirun even if Bumblebee server or nvidia card
# is not available?
AllowFallbackToIGC=false


# Driver-specific settings are grouped under [driver-NAME]. The sections are
# parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
# detection resolves to NAME).
# PMMethod: method to use for saving power by disabling the nvidia card, valid
# values are: auto - automatically detect which PM method to use
#         bbswitch - new in BB 3, recommended if available
#       switcheroo - vga_switcheroo method, use at your own risk
#             none - disable PM completely
# https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods

## Section with nvidia driver specific options, only parsed if Driver=nvidia
[driver-nvidia]
# Module name to load, defaults to Driver if empty or unset
KernelDriver=nvidia-current
PMMethod=bbswitch
# colon-separated path to the nvidia libraries
LibraryPath=/usr/lib/nvidia-current:/usr/lib32/nvidia-current
# comma-separated path of the directory containing nvidia_drv.so and the
# default Xorg modules path
XorgModulePath=/usr/lib/nvidia-current/xorg,/usr/lib/xorg/modules
XorgConfFile=/etc/bumblebee/xorg.conf.nvidia

## Section with nouveau driver specific options, only parsed if Driver=nouveau
[driver-nouveau]
KernelDriver=nouveau
PMMethod=bbswitch
XorgConfFile=/etc/bumblebee/xorg.conf.nouveau
    
por gogeccc 25.02.2015 / 04:35