O Ubuntu 14.04 não pode ter o trabalho nvidia-prime

5

Ontem eu atualizei para 14.04 de 13.10 e queria tentar nvidia-prime. No entanto, não consigo trabalhar. A mensagem que estou recebendo quando eu executo 'nvidia-settings' na linha de comando é a seguinte:

ERROR: Error querying target relations

** Message: PRIME: No offloading required. Abort
** Message: PRIME: is it supported? no

ERROR: nvidia-settings could not find the registry key file. This file should
   have been installed along with this driver at either
   /usr/share/nvidia/nvidia-application-profiles-331.38-key-documentation
   or /usr/share/nvidia/nvidia-application-profiles-key-documentation. The
   application profiles will continue to work, but values cannot be
   preopulated or validated, and will not be listed in the help text.
   Please see the README for possible values and descriptions.

Eu tentei instalar e desinstalar muitas vezes seguindo sugestões diferentes que pude encontrar, mas aparentemente estou fazendo algo errado como o cara aqui faz com que funcione exatamente no mesmo laptop que o meu (em 13.10)

Muito obrigado

    
por ThunderBiggi 06.06.2014 / 10:19

2 respostas

1

Aqui está uma variante do acima, e uma solução - para este caso, possivelmente ajudando nos outros casos também.

SIDENOTE 1: se você não executar nvidia-settings com gksudo ... THE FIRST TIME (e não tiver "$ HOME / .config / ibus /" nesse momento), você verá:

IBUS-WARNING **: The owner of /home/$USER/.config/ibus/bus is not root!  
Em seguida, refira-se ao link - e exclua o diretório ... / ibus / (nota NOT .config /) e continue aqui ...

SIDENOTE 2: você também pode ver:

** (nvidia-settings:8563): WARNING **: PRIME: Failed to execute child process "/usr/bin/prime-supported" (No such file or directory)
** Message: PRIME: is it supported? no
O remédio é fazer
sudo apt-get install nvidia-prime
... que foi QUEBRADO por algum tempo, mas parece estar de volta "online" novamente.

SIDENOTE 3: A menos que você tenha, e. DUMMY assim:

$ tail -n 3 /etc/group
nvidia-persistenced:x:128:

DUMMY:x:65535:

(hrm, que é três linhas, mesmo que não pareça) ... então você NÃO terá perfis de cores carregados para suas exibições EXTRA - em uma configuração de vários monitores - na inicialização . O problema é a ÚLTIMA LINHA em / etc / group - esse grupo não "funcionará".

O seguinte tem uma relação direta com a impossibilidade de salvar configurações alteradas:

$ gksudo nvidia-settings 

ERROR: nvidia-settings could not find the registry key file. This file should have been installed along with this driver at either /usr/share/nvidia/nvidia-application-profiles-337.25-key-documentation or
       /usr/share/nvidia/nvidia-application-profiles-key-documentation. The application profiles will continue to work, but values cannot be preopulated or validated, and will not be listed in the help text. Please see the README for possible
       values and descriptions.

... isso é familiar? Então faça

sudo bash
...
mkdir -p /etc/nvidia
cd /etc/nvidia
ln -s /etc/alternatives/x86_64-linux-gnu_nvidia_app_profile_keys  nvidia-application-profiles-340.24-key-documentation 
ln -s /etc/alternatives/x86_64-linux-gnu_nvidia_app_profile  nvidia-application-profiles-340.24-rc

Em seguida, verifique se você pode ver algo semelhante a:

$ ls -l
total 0
lrwxrwxrwx 1 root 58 jul 12 14:23 nvidia-application-profiles-340.24-key-documentation -> /etc/alternatives/x86_64-linux-gnu_nvidia_app_profile_keys
lrwxrwxrwx 1 root 53 jul 12 14:23 nvidia-application-profiles-340.24-rc -> /etc/alternatives/x86_64-linux-gnu_nvidia_app_profile

Note que "-340.24 ..." e talvez outras partes podem diferir para você (dependendo da versão do driver), o que é mostrado é depois de instalar o mais recente do ppa xorg-edgers neste momento.

    
por Hannu 12.07.2014 / 16:37
0

Eu tive o mesmo problema até instalar o ppa xorg-edgers.

sudo add-apt-repository ppa:xorg-edgers/ppa 
sudo apt-get update
sudo apt-get install <package name>

Além disso, certifique-se de que sua bios esteja no modo Optimus.

    
por Tom Salfield 09.06.2014 / 17:11