o daemon bumblebee requer reinicialização manual para funcionar

0

Primeiro:

$ optirun vlc
[16127.891535] [ERROR]Cannot access secondary GPU - error: Could not load GPU driver
[16127.891591] [ERROR]Aborting because fallback start is disabled.

e depois faço um truque de mágica:

# ps aux | grep bumblebee
root      1138  0.0  0.0  36232  1872 ?        Ss   17:00   0:00 /usr/sbin/bumblebeed --daemon
# kill 1138
# service bumblebeed start

porque a maneira simples não funciona:

# service bumblebeed restart
stop: Unknown instance: 
bumblebeed start/running, process 6481

como fazê-lo funcionar logo após o boot? aqui alguns dados talvez úteis:

dpkg --list | grep nvidia

/etc/bumblebee/bumblebee.conf

# lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: NVIDIA Corporation GF108M [GeForce GT 630M] (rev a1)
    
por Esixt 04.04.2016 / 20:43

1 resposta

0

você pode precisar fazer o seguinte: 1. O demônio Bumblebee deve estar rodando como root (o que foi no início). Você então matou o daemon e o executou como você mesmo (no userspace). Portanto, não mate o daemon se ele estiver sendo executado quando você inicializar 2. Adicione seu nome de usuário ao grupo de abelha ( adduser <user> bumblebee ). Crie o grupo, se ele ainda não existir 3. No seu arquivo bumblebee.conf, mude todas as ocorrências de nvidia-current para nvidia-352

    
por GrammyUnderpants 05.04.2016 / 07:38