<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>nvidia Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/nvidia/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 21 Jun 2018 20:43:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to Install NVIDIA Drivers on Linux</title>
		<link>https://www.osradar.com/how-to-install-nvidia-drivers-on-linux/</link>
					<comments>https://www.osradar.com/how-to-install-nvidia-drivers-on-linux/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Wed, 21 Mar 2018 14:04:58 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[install nvidia driver]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[nvidia driver]]></category>
		<category><![CDATA[nvidia driver linux]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=2241</guid>

					<description><![CDATA[<p>NVIDIA has always been one of the best GPU creators in the market. I personally love NVIDIA for their ultra-optimized products and software that makes gaming a lot easier. If you’re an NVIDIA user, you already know what I mean. For those who are running Linux as their operating system, installing the NVIDIA driver is [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-nvidia-drivers-on-linux/">How to Install NVIDIA Drivers on Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>NVIDIA has always been one of the best GPU creators in the market. I personally love NVIDIA for their ultra-optimized products and software that makes gaming a lot easier. If you’re an NVIDIA user, you already know what I mean. For those who are running Linux as their operating system, installing the NVIDIA driver is a must to get the most out of the hardware. Let’s take a look how to install NVIDIA drivers on your Linux distro.</p>
<h2>The best option</h2>
<p>Depending on your Linux distro, there can be different methods to install the latest NVIDIA driver on your system. However, this is the easiest method of all and offers compatibility with almost all the major Linux systems.</p>
<ul>
<li><a href="https://www.nvidia.com/Download/index.aspx">Download the latest driver for Linux</a>. It’s a .RUN file. Download and save it into “Downloads” directory.</li>
</ul>
<p><img loading="lazy" class="size-full wp-image-2242 aligncenter" src="https://www.osradar.com/wp-content/uploads/2018/03/download-nvidia-driver-official-website.png" alt="" width="1282" height="603" srcset="https://www.osradar.com/wp-content/uploads/2018/03/download-nvidia-driver-official-website.png 1282w, https://www.osradar.com/wp-content/uploads/2018/03/download-nvidia-driver-official-website-300x141.png 300w, https://www.osradar.com/wp-content/uploads/2018/03/download-nvidia-driver-official-website-768x361.png 768w, https://www.osradar.com/wp-content/uploads/2018/03/download-nvidia-driver-official-website-1024x482.png 1024w, https://www.osradar.com/wp-content/uploads/2018/03/download-nvidia-driver-official-website-696x327.png 696w, https://www.osradar.com/wp-content/uploads/2018/03/download-nvidia-driver-official-website-1068x502.png 1068w, https://www.osradar.com/wp-content/uploads/2018/03/download-nvidia-driver-official-website-893x420.png 893w" sizes="(max-width: 1282px) 100vw, 1282px" /></p>
<ul>
<li>Now, open a Terminal (CTRL + Alt + X) and run the following commands:</li>
</ul>
<pre class="lang:default decode:true">cd ~/Downloads
chmod +x NVIDIA-Linux-x86_64-390.42.run
./NVIDIA-Linux-x86_64-390.42.run</pre>
<p>Now, the NVIDIA driver should be installed properly.</p>
<h2>Arch Linux</h2>
<p>Installing NVIDIA drivers on Arch Linux is quite simple and easy. Open a terminal &amp; run this command:</p>
<pre class="lang:default decode:true">sudo pacman -S nvidia</pre>
<p>After completing, run the following command to install the latest 32-bit version of the driver (IMPORTANT for playing Steam games).</p>
<pre class="lang:default decode:true">sudo pacman -S nvidia nvidia-libgl lib32-nvidia-libgl nvidia-settings</pre>
<p>Now, enable a “persistence” systemd service so that the latest driver works smoothly. Start the opened file with</p>
<pre class="lang:default decode:true">sudo sudo systemctl start nvidia-persistenced.service</pre>
<h2>Fedora</h2>
<p>Installing NVIDIA GPU driver on Fedora can follow many paths, so here’s the shortest and easiest method of all.</p>
<ul>
<li>Open a terminal and run the command:</li>
</ul>
<pre class="lang:default decode:true">sudo dnf update</pre>
<ul>
<li>Now, you need to add the following repository inside Fedora’s list. Run this command:</li>
</ul>
<pre class="lang:default decode:true">sudo dnf config-manager --add-repo=https://negativo17.org/repos/fedora-nvidia.repo</pre>
<ul>
<li>Open Software Center, search for “NVIDIA Linux Graphics Driver” and install it.</li>
</ul>
<p>Done!</p>
<h2>Ubuntu + Ubuntu-based distros</h2>
<p>Ubuntu doesn’t have NVIDIA driver in their default software collection. You have to add it by adding a repository.</p>
<ul>
<li>Open a terminal and run the following commands:</li>
</ul>
<pre class="lang:default decode:true">sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo apt upgrade -y</pre>
<ul>
<li>When the process is complete, run this line to install the latest NVIDIA driver.</li>
</ul>
<pre class="lang:default decode:true">sudo apt install nvidia-graphics-drivers-390 nvidia-settings vdpauinfo vulkan libvdpau</pre>
<p>Take a note that the latest version, at present, is 390. Depending on the latest release, the number will change. If you’re confused, follow the first method described.</p>
<h2>Debian</h2>
<p>If you’re a Debian user, you already know how things work in here. The latest driver isn’t available through the Stable branch. To obtain the latest one, you have to switch towards Unstable branch.</p>
<ul>
<li>Open a terminal.</li>
<li>Run this command:</li>
</ul>
<pre class="lang:default decode:true">sudo nano /etc/apt/sources.list</pre>
<ul>
<li>In the file, change every “stable”, “wheezy” and other <a href="https://www.electrictoolbox.com/debian-release-names/">Debian release names</a> to “unstable”. For example, here’s a modified line of the file:</li>
</ul>
<pre class="lang:default decode:true ">deb http://ftp2.fr.debian.org/debian/ unstable main contrib non-free</pre>
<p>Make as many changes available.</p>
<ul>
<li>Save the file by pressing CTRL + O.</li>
<li>Run these commands in the terminal:</li>
</ul>
<pre class="lang:default decode:true">sudo apt-get update
sudo apt-get dist-upgrade</pre>
<ul>
<li>Install “aptitude”. It makes drivers easier to install.</li>
</ul>
<pre class="lang:default decode:true">sudo apt install aptitude</pre>
<ul>
<li>Run these commands to complete the installation process.</li>
</ul>
<pre class="lang:default decode:true">sudo dpkg --add-architecture i386
sudo aptitude -r install nvidia-kernel-dkms nvidia-settings libgl1-nvidia-glx:i386</pre>
<ul>
<li>Reboot your system.</li>
</ul>
<h2>OpenSUSE</h2>
<p>For enterprise Linux, OpenSUSE is the best free option. Installing NVIDIA driver on OpenSUSE is a bit difficult task, but not impossible. Just follow the steps properly.</p>
<ul>
<li>
<h3>Leap edition</h3>
</li>
</ul>
<p>Remove the package “drm-kmp-default”. It usually conflicts with NVIDIA packages. Run the command in the terminal:</p>
<pre class="lang:default decode:true">sudo zypper rm drm-kmp-default</pre>
<p>Add NVIDIA driver repository.</p>
<pre class="lang:default decode:true">sudo zypper addrepo --refresh http://http.download.nvidia.com/opensuse/leap/42.3 NVIDIA</pre>
<p>Install the driver.</p>
<pre class="lang:default decode:true">sudo zypper install-new-recommends</pre>
<ul>
<li>
<h3>Tumbleweed edition</h3>
<ul>
<li>Run the following commands:</li>
</ul>
</li>
</ul>
<pre class="lang:default decode:true">sudo zypper addrepo --refresh http://http.download.nvidia.com/opensuse/tumbleweed NVIDIA
sudo zypper install-new-recommends</pre>
<p>After installation is complete, don’t forget to restart your system.</p>
<p>If you&#8217;re interested, you can try out some of <a href="https://www.osradar.com/libreoffice-alternatives-for-linux-users/">the best alternatives of LibreOffice</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-nvidia-drivers-on-linux/">How to Install NVIDIA Drivers on Linux</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-nvidia-drivers-on-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
