<?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>stable Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/stable/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 26 Dec 2020 23:58:37 +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 change Debian Stable to Debian Testing?</title>
		<link>https://www.osradar.com/how-to-change-debian-stable-to-debian-testing/</link>
					<comments>https://www.osradar.com/how-to-change-debian-stable-to-debian-testing/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 27 Dec 2020 23:55:00 +0000</pubDate>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[stable]]></category>
		<category><![CDATA[testing]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=26870</guid>

					<description><![CDATA[<p>Hello friends. Happy holidays. I hope you enjoyed yourselves no matter what the circumstances. In this post, I show you something very simple and that is to change Debian Stable for Debian Testing. This will allow you to have newer packages but a little less stability but enough for a desktop user- Debian is a [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-change-debian-stable-to-debian-testing/">How to change Debian Stable to Debian Testing?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello friends. Happy holidays. I hope you enjoyed yourselves no matter what the circumstances. In this post, I show you something very simple and that is <strong>to change Debian Stable for Debian Testing. </strong>This will allow you to have newer packages but a little less stability but enough for a desktop user-</p>



<p>Debian is a very robust system because it is based on testing the packages many times. These tests are carried out by teams and people prepared for this purpose. The problem is that recent versions are sacrificed for stability. If you are using Debian for a home or production server this is ideal, but for a desktop user, it is worth it?</p>



<p>Well, there is a middle ground between having the stability of Debian Stable and having more recent packages and that is moving to the Debian testing branch. Or rather change Debian Stable to Debian Testing.</p>



<p>The good thing about Debian Testing is that there is often more up-to-date software that often has new features that older software does not have, which is a positive point that many Debian users are looking for. In addition to this, we will not have to reinstall the system from time to time because it works in a similar way to the Rolling Release model.</p>



<p>So, the process is very simple and we&#8217;re going for it.</p>



<h2>Changing Debian Stable to Debian Testing</h2>



<p>The process is quite simple and we only have to change the Debian repositories to point to the <a href="https://www.debian.org/devel/testing.en.html" target="_blank" rel="noreferrer noopener">testing branch.</a></p>



<p>Before we start I remind you that Debian Stable is quite stable and that Testing could give you a headache or two. Besides this process is not recommendable to do in servers or if your system works properly. Also, the process will take some time depending on the number of packages you have installed.</p>



<p>So, open the Debian archive repository.</p>



<pre class="wp-block-preformatted">sudo nano /etc/apt/sources.list</pre>



<p>And change all repositories from stable or buster to testing. It also eliminates backports or updates. Or any external repository to avoid problems in the update.</p>



<p>At the end, there is a file with the following content</p>



<pre class="wp-block-preformatted">deb http://deb.debian.org/debian testing main contrib non-free<br>deb http://deb.debian.org/debian testing/updates main contrib non-free<br>deb http://security.debian.org/ testing-security main contrib non-free</pre>



<p>Save the changes and close the editor.</p>



<p>Then refresh <a href="https://www.osradar.com/apt-the-ubuntu-package-manager/" target="_blank" rel="noreferrer noopener">APT</a>.</p>



<pre class="wp-block-preformatted">sudo apt update</pre>



<p>And it makes the update:</p>



<pre class="wp-block-preformatted">sudo apt upgrade</pre>



<p>Then:</p>



<pre class="wp-block-preformatted">sudo apt dist-upgrade</pre>



<p>During the process, you will see a screen informing you that the services need to be restarted automatically.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="449" src="https://www.osradar.com/wp-content/uploads/2020/12/1-10-1024x449.png" alt="1.- Services question during the process to change Debian Stable to Debian Testing" class="wp-image-27028" srcset="https://www.osradar.com/wp-content/uploads/2020/12/1-10-1024x449.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/1-10-300x131.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/1-10-768x336.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/1-10-696x305.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/1-10-1068x468.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/1-10.png 1365w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Services question during the process to change Debian Stable to Debian Testing</figcaption></figure>



<p>In the end, restart your computer.</p>



<p>And when it starts again you will have Debian Testing.</p>



<p>Check it out by running it:</p>



<pre class="wp-block-preformatted">lsb_release -a</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="532" height="150" src="https://www.osradar.com/wp-content/uploads/2020/12/2-8.png" alt="2.- Debian Testing running" class="wp-image-27027" srcset="https://www.osradar.com/wp-content/uploads/2020/12/2-8.png 532w, https://www.osradar.com/wp-content/uploads/2020/12/2-8-300x85.png 300w" sizes="(max-width: 532px) 100vw, 532px" /><figcaption>2.- Debian Testing running</figcaption></figure>



<p>So, enjoy it.</p>



<h2>Conclusion</h2>



<p>Debian is quite stable but it is also true that it does not have very updated packages. In this post, you will learn how to change Debian Stable to Debian Testing. It&#8217;s simple and can be useful for you.</p>



<p>Happy holidays.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-change-debian-stable-to-debian-testing/">How to change Debian Stable to Debian Testing?</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-change-debian-stable-to-debian-testing/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
