From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7865B1382C5 for ; Sun, 29 Nov 2020 12:34:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8840EE085A; Sun, 29 Nov 2020 12:34:52 +0000 (UTC) Received: from ciao.gmane.io (static.214.254.202.116.clients.your-server.de [116.202.254.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 429D6E0845 for ; Sun, 29 Nov 2020 12:34:52 +0000 (UTC) Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1kjLuk-0004im-Is for gentoo-user@lists.gentoo.org; Sun, 29 Nov 2020 13:34:50 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: gentoo-user@lists.gentoo.org From: Nikos Chantziaras Subject: [gentoo-user] Re: nvidia x server settings doesn't open Date: Sun, 29 Nov 2020 14:34:46 +0200 Message-ID: References: <82244110-9bba-128c-2de7-442bc9ec2fdc@sys-concept.com> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.5.0 In-Reply-To: Content-Language: en-US X-Archives-Salt: 8627edae-94b4-499d-a10e-caa62a347a92 X-Archives-Hash: 8794a31379b646df682fcf82e5797964 On 29/11/2020 05:53, thelma@sys-concept.com wrote: > On 11/28/2020 07:19 AM, Nikos Chantziaras wrote: >> On 27/11/2020 02:56, thelma@sys-concept.com wrote: >>> I just installed nvidia-drivers-455.28-r1 and can not start "nvidia x >>> server setting" it doesn't open. >>> >>> running: $ nvidia-smi >>> NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA >>> driver. Make sure that the latest NVIDIA driver is installed and running. >> >> What's the output of: >> >>   lsmod >> >> and: >> >>   emerge --info > > Here it is. > [...snip...] Your system is using the nouveau driver. You need to disable it and only enable the nvidia driver. In your make.conf, change this: VIDEO_CARDS="nvidia nouveau" to: VIDEO_CARDS="nvidia" Also, add "nvidia" to your make.conf USE flags (this might not be actually needed, but better safe than sorry.) Then also see if you have nouveau enabled for something elsewhere in your portage configuration. Do this: grep -r nouveau /etc/portage This should print nothing. If it does, then you should edit the files and disable nouveau. Finally, tell portage to check what needs to be re-emerged due to these changes: emerge -auDN --with-bdeps=y @world Reboot.