<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Virtual Realm</title>
	<atom:link href="https://mykre.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://mykre.wordpress.com</link>
	<description>Just another WordPress.com site</description>
	<lastBuildDate>Fri, 12 Mar 2021 03:17:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<site xmlns="com-wordpress:feed-additions:1">17327844</site><cloud domain='mykre.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s2.wp.com/i/webclip.png</url>
		<title>Virtual Realm</title>
		<link>https://mykre.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://mykre.wordpress.com/osd.xml" title="Virtual Realm" />
	<atom:link rel='hub' href='https://mykre.wordpress.com/?pushpress=hub'/>
	<item>
		<title>Renaming a WSL Distro</title>
		<link>https://mykre.wordpress.com/2021/03/12/renaming-a-wsl-distro/</link>
					<comments>https://mykre.wordpress.com/2021/03/12/renaming-a-wsl-distro/#respond</comments>
		
		<dc:creator><![CDATA[Mykre]]></dc:creator>
		<pubDate>Fri, 12 Mar 2021 03:17:49 +0000</pubDate>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[WSL]]></category>
		<guid isPermaLink="false">http://mykre.wordpress.com/?p=207</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-jetpack-markdown"><p>I Recently had the need to change the name of one of the Distro&#8217;s on my WSL Environment, this is the process I followed to rename it.</p>
<ol>
<li>
<p>Stop all instances of WSL</p>
<pre><code class="language-bash">wsl --shutdown
</code></pre>
</li>
<li>
<p>Open Registry Editor and go to</p>
<pre><code class="language-bash">HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Lxss
</code></pre>
</li>
<li>
<p>Find the distro you want to rename, look for the key</p>
<pre><code class="language-bash">DistributionName
</code></pre>
</li>
<li>
<p>Change the key DistributionName to the desired value</p>
</li>
<li>
<p>Verify by running the following</p>
<pre><code class="language-bash">wsl -l -v
</code></pre>
<p>This will list the running Distros</p>
</li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://mykre.wordpress.com/2021/03/12/renaming-a-wsl-distro/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">207</post-id>
		<media:content url="https://0.gravatar.com/avatar/9469bc0595472ac75dde7ee8edda94a63ffc83ceeff496e2c1756f64d8f8fe8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mykre</media:title>
		</media:content>
	</item>
		<item>
		<title>Upgrading the WSL Distro</title>
		<link>https://mykre.wordpress.com/2020/12/23/upgrading-the-wsl-distro/</link>
					<comments>https://mykre.wordpress.com/2020/12/23/upgrading-the-wsl-distro/#respond</comments>
		
		<dc:creator><![CDATA[Mykre]]></dc:creator>
		<pubDate>Wed, 23 Dec 2020 07:22:18 +0000</pubDate>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Windows 10]]></category>
		<category><![CDATA[WSL]]></category>
		<guid isPermaLink="false">http://mykre.wordpress.com/?p=197</guid>

					<description><![CDATA[This process is how I went through upgrading my WSL Distro. This process completed an in place up grade of the system. I could have just re downloaded the new distro as I hadn&#8217;t save much content to the image. But as I plan on doing so this was a good chance to go through &#8230; <a href="https://mykre.wordpress.com/2020/12/23/upgrading-the-wsl-distro/" class="more-link">Continue reading<span class="screen-reader-text"> "Upgrading the WSL&#160;Distro"</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">This process is how I went through upgrading my WSL Distro. This process completed an in place up grade of the system. I could have just re downloaded the new distro as I hadn&#8217;t save much content to the image. But as I plan on doing so this was a good chance to go through the process.</p>



<p class="wp-block-paragraph">Checking the current version</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
lsb_release -a

</pre></div>


<p class="wp-block-paragraph">Returns the following,</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 19.10
Release:        19.10
Codename:       eoan

</pre></div>


<p class="wp-block-paragraph">Next I needed to make sure that I was on the latest version of the current release.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
sudo apt update
sudo apt list --upgradable
sudo apt upgrade

</pre></div>


<p class="wp-block-paragraph">Next I cleaned up any packages that were no longer needed</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
sudo apt --purge autoremove

</pre></div>


<p class="wp-block-paragraph">Now to update the core manager package</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
sudo apt install update-manager-core

</pre></div>


<p class="wp-block-paragraph">Finally to start the upgrade</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
sudo do-release-upgrade

</pre></div>


<p class="wp-block-paragraph">At this point i left the system to do it&#8217;s thing and complete the upgrade. This could take some time as it downloads all of the packages that it needs.</p>



<p class="wp-block-paragraph">During the install you are asked a couple of times to authorize and continue. When this is done the system will restart.</p>



<p class="wp-block-paragraph">At this point you just need to restart the WSL terminal session and check the version.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
lsb_release -a

</pre></div>


<p class="wp-block-paragraph">and the output returned is.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 20.04.1 LTS
Release:        20.04
Codename:       focal
</pre></div>]]></content:encoded>
					
					<wfw:commentRss>https://mykre.wordpress.com/2020/12/23/upgrading-the-wsl-distro/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">197</post-id>
		<media:content url="https://0.gravatar.com/avatar/9469bc0595472ac75dde7ee8edda94a63ffc83ceeff496e2c1756f64d8f8fe8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mykre</media:title>
		</media:content>
	</item>
		<item>
		<title>Updating Azure Scripting Tools</title>
		<link>https://mykre.wordpress.com/2020/02/18/updating-azure-scripting-tools/</link>
					<comments>https://mykre.wordpress.com/2020/02/18/updating-azure-scripting-tools/#respond</comments>
		
		<dc:creator><![CDATA[Mykre]]></dc:creator>
		<pubDate>Mon, 17 Feb 2020 23:15:28 +0000</pubDate>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Azure CLI]]></category>
		<category><![CDATA[PowerShell]]></category>
		<guid isPermaLink="false">http://mykre.wordpress.com/?p=194</guid>

					<description><![CDATA[I use the various scripting tools for azure on a daily bases, so because of this I put together this little script that I run to update the toolsets. It currently does the azureCLI and az Powershell Modules, only simple but it does what I need. You will need to run the script under an &#8230; <a href="https://mykre.wordpress.com/2020/02/18/updating-azure-scripting-tools/" class="more-link">Continue reading<span class="screen-reader-text"> "Updating Azure Scripting&#160;Tools"</span></a>]]></description>
										<content:encoded><![CDATA[<p>I use the various scripting tools for azure on a daily bases, so because of this I put together this little script that I run to update the toolsets.<br />
It currently does the azureCLI and az Powershell Modules, only simple but it does what I need.</p>
<p>You will need to run the script under an Administrator Prompt.</p>
<div id="scid:C89E2BDB-ADD3-4f7a-9810-1B7EACF446C1:05a9e533-88f0-4646-9b29-02a3f047fcd9" class="wlWriterEditableSmartContent" style="margin:0;padding:0;float:none;display:inline;">
<pre><pre class="brush: powershell; html-script: false; pad-line-numbers: true; title: ; notranslate">
# Update the AzureCLI system on Windows
Write-Host "Installing/Updating the AzureCLI Components"
Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'

# Update the Powershell az Modules
Write-Host "Installing/Updating the Azure PowerShell Modules"
Install-Module -Name Az -AllowClobber -Force

# Gather the version information
# Get-InstalledModule -Name Az -AllVersions | select-object Name,Version

Write-Host "Updating the Azure Components Complete"
</pre>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://mykre.wordpress.com/2020/02/18/updating-azure-scripting-tools/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">194</post-id>
		<media:content url="https://0.gravatar.com/avatar/9469bc0595472ac75dde7ee8edda94a63ffc83ceeff496e2c1756f64d8f8fe8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mykre</media:title>
		</media:content>
	</item>
		<item>
		<title>RaspberryPi Finding the Hardware Version</title>
		<link>https://mykre.wordpress.com/2020/02/16/raspberrypi-finding-the-hardware-version/</link>
					<comments>https://mykre.wordpress.com/2020/02/16/raspberrypi-finding-the-hardware-version/#respond</comments>
		
		<dc:creator><![CDATA[Mykre]]></dc:creator>
		<pubDate>Sun, 16 Feb 2020 04:29:33 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[RaspberryPI]]></category>
		<guid isPermaLink="false">http://mykre.wordpress.com/?p=192</guid>

					<description><![CDATA[Finding the hardware version of you RaspberryPi is actually Quite easy. Once you have the system up and running, Connect to the terminal and run the following Commands. cat /proc/cpuinfo This will return a heap of information on the CPU, At the Bottom you will see two sections. Hardware and Revision. If you take the &#8230; <a href="https://mykre.wordpress.com/2020/02/16/raspberrypi-finding-the-hardware-version/" class="more-link">Continue reading<span class="screen-reader-text"> "RaspberryPi Finding the Hardware&#160;Version"</span></a>]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Finding the hardware version of you RaspberryPi is actually Quite easy. Once you have the system up and running, Connect to the terminal and run the following Commands.</p>



<p class="wp-block-paragraph">cat /proc/cpuinfo</p>



<p class="wp-block-paragraph">This will return a heap of information on the CPU, At the Bottom you will see two sections. Hardware and Revision. If you take the values returned here and look through the following Web Site you will find the hardware and model of the Pi unit you have. It will also detail the components installed on the boards.</p>



<p class="wp-block-paragraph"> <a href="https://elinux.org/RPi_HardwareHistory" rel="nofollow">https://elinux.org/RPi_HardwareHistory</a></p>



<p class="wp-block-paragraph">The Link Above also has several other ways to grab the information.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mykre.wordpress.com/2020/02/16/raspberrypi-finding-the-hardware-version/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">192</post-id>
		<media:content url="https://0.gravatar.com/avatar/9469bc0595472ac75dde7ee8edda94a63ffc83ceeff496e2c1756f64d8f8fe8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mykre</media:title>
		</media:content>
	</item>
		<item>
		<title>Python for Beginners</title>
		<link>https://mykre.wordpress.com/2019/12/20/python-for-beginners/</link>
					<comments>https://mykre.wordpress.com/2019/12/20/python-for-beginners/#respond</comments>
		
		<dc:creator><![CDATA[Mykre]]></dc:creator>
		<pubDate>Thu, 19 Dec 2019 20:50:32 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">http://mykre.wordpress.com/?p=189</guid>

					<description><![CDATA[Great video series produced my Microsoft to help get started with Python.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Great video series produced my Microsoft to help get started with Python.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-rich wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" width="840" height="473" src="https://www.youtube.com/embed?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent&#038;listType=playlist&#038;list=PLlrxD0HtieHhS8VzuMCfQD4uJ9yne1mE6" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
</div></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://mykre.wordpress.com/2019/12/20/python-for-beginners/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">189</post-id>
		<media:content url="https://0.gravatar.com/avatar/9469bc0595472ac75dde7ee8edda94a63ffc83ceeff496e2c1756f64d8f8fe8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mykre</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Server 2019 Learning Series</title>
		<link>https://mykre.wordpress.com/2019/12/19/sql-server-2019-learning-series/</link>
					<comments>https://mykre.wordpress.com/2019/12/19/sql-server-2019-learning-series/#respond</comments>
		
		<dc:creator><![CDATA[Mykre]]></dc:creator>
		<pubDate>Wed, 18 Dec 2019 20:36:23 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SQL Server]]></category>
		<guid isPermaLink="false">http://mykre.wordpress.com/?p=186</guid>

					<description><![CDATA[Here is a great set of videos for SQL Server 2019.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Here is a great set of videos for SQL Server 2019.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-rich wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" width="840" height="473" src="https://www.youtube.com/embed?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent&#038;listType=playlist&#038;list=PL-_k_UrAvrYugTB6GXpPSs_NMdTVX7XRD" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
</div></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://mykre.wordpress.com/2019/12/19/sql-server-2019-learning-series/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">186</post-id>
		<media:content url="https://0.gravatar.com/avatar/9469bc0595472ac75dde7ee8edda94a63ffc83ceeff496e2c1756f64d8f8fe8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mykre</media:title>
		</media:content>
	</item>
		<item>
		<title>Xbox Series X trailer</title>
		<link>https://mykre.wordpress.com/2019/12/17/xbox-series-x-trailer/</link>
					<comments>https://mykre.wordpress.com/2019/12/17/xbox-series-x-trailer/#respond</comments>
		
		<dc:creator><![CDATA[Mykre]]></dc:creator>
		<pubDate>Tue, 17 Dec 2019 06:20:11 +0000</pubDate>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Xbox]]></category>
		<guid isPermaLink="false">http://mykre.wordpress.com/?p=183</guid>

					<description><![CDATA[Introducing the new Xbox Series X, Looking forward to this. Specially with the Backwards compatibility support.]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Introducing the new Xbox Series X, Looking forward to this. Specially with the Backwards compatibility support.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-rich wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" width="840" height="473" src="https://www.youtube.com/embed/0tUqIHwHDEc?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe>
</div></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://mykre.wordpress.com/2019/12/17/xbox-series-x-trailer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">183</post-id>
		<media:content url="https://0.gravatar.com/avatar/9469bc0595472ac75dde7ee8edda94a63ffc83ceeff496e2c1756f64d8f8fe8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mykre</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Python in Blender</title>
		<link>https://mykre.wordpress.com/2019/08/23/using-python-in-blender/</link>
					<comments>https://mykre.wordpress.com/2019/08/23/using-python-in-blender/#respond</comments>
		
		<dc:creator><![CDATA[Mykre]]></dc:creator>
		<pubDate>Thu, 22 Aug 2019 22:54:05 +0000</pubDate>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Blender3D]]></category>
		<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">http://mykre.wordpress.com/?p=177</guid>

					<description><![CDATA[Found this really good intro to using Python inside the Blender 3d engine. Link]]></description>
										<content:encoded><![CDATA[<p></p>
<p class="wp-block-paragraph">Found this really good intro to using Python inside the <a href="https://www.blender.org/" target="_blank">Blender 3d</a> engine.</p>
<p></p>
<p></p>
<p class="wp-block-paragraph"><a href="https://youtu.be/dnlPidRHs1Q" target="_blank">Link</a></p>
<p></p>]]></content:encoded>
					
					<wfw:commentRss>https://mykre.wordpress.com/2019/08/23/using-python-in-blender/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">177</post-id>
		<media:content url="https://0.gravatar.com/avatar/9469bc0595472ac75dde7ee8edda94a63ffc83ceeff496e2c1756f64d8f8fe8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mykre</media:title>
		</media:content>
	</item>
		<item>
		<title>Back into Blender 2.8</title>
		<link>https://mykre.wordpress.com/2019/08/10/back-into-blender-2-8/</link>
					<comments>https://mykre.wordpress.com/2019/08/10/back-into-blender-2-8/#respond</comments>
		
		<dc:creator><![CDATA[Mykre]]></dc:creator>
		<pubDate>Sat, 10 Aug 2019 02:53:51 +0000</pubDate>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Blender3D]]></category>
		<guid isPermaLink="false">http://mykre.wordpress.com/?p=175</guid>

					<description><![CDATA[For a while I have been using the Blender 3D package for most of my work, But over the last few years work and life have taken me elsewhere. But it is about time I jumped back in. In one of the Facebook groups that I am in I came across the CG Fast Track &#8230; <a href="https://mykre.wordpress.com/2019/08/10/back-into-blender-2-8/" class="more-link">Continue reading<span class="screen-reader-text"> "Back into Blender&#160;2.8"</span></a>]]></description>
										<content:encoded><![CDATA[<p>For a while I have been using the <a href="https://www.blender.org/" target="_blank">Blender 3D</a> package for most of my work, But over the last few years work and life have taken me elsewhere. But it is about time I jumped back in. In one of the Facebook groups that I am in I came across the <a href="https://www.youtube.com/channel/UCsvgY1GWmJwvk3o6UeXVxAg" target="_blank">CG Fast Track</a> YouTube channel and a set of free tutorials, they looked simple and easy to follow so I thought I would give them a go. Hopefully I will post my progress…</p>
<p>Teaser Trailer for the Series.</p>
<p><a title="https://www.youtube.com/watch?v=gRMnvatcfLg" href="https://www.youtube.com/watch?v=gRMnvatcfLg">https://www.youtube.com/watch?v=gRMnvatcfLg</a></p>
<p>Link to Part 1.</p>
<p><a title="https://www.youtube.com/watch?v=KyjSnak3Yjo&amp;t=282s" href="https://www.youtube.com/watch?v=KyjSnak3Yjo&amp;t=282s">https://www.youtube.com/watch?v=KyjSnak3Yjo&amp;t=282s</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://mykre.wordpress.com/2019/08/10/back-into-blender-2-8/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">175</post-id>
		<media:content url="https://0.gravatar.com/avatar/9469bc0595472ac75dde7ee8edda94a63ffc83ceeff496e2c1756f64d8f8fe8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mykre</media:title>
		</media:content>
	</item>
		<item>
		<title>RaspberryPi Raspbian Buster Image Release</title>
		<link>https://mykre.wordpress.com/2019/07/03/raspberrypi-raspbian-buster-image-release/</link>
					<comments>https://mykre.wordpress.com/2019/07/03/raspberrypi-raspbian-buster-image-release/#respond</comments>
		
		<dc:creator><![CDATA[Mykre]]></dc:creator>
		<pubDate>Wed, 03 Jul 2019 01:36:03 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[RaspberryPI]]></category>
		<category><![CDATA[Raspbian]]></category>
		<guid isPermaLink="false">http://mykre.wordpress.com/?p=171</guid>

					<description><![CDATA[I am a little bit behind, but the RaspberryPi guys have released the Raspbian Buster images which includes support for the RaspberryPi 4 Devices. Download Link: https://www.raspberrypi.org/downloads/raspbian/ As usual you have the choice of, Full Image with recommended Apps, just the Desktop or a Lite version. Version release Notes 2019-06-20: &#160; Based on Debian Buster &#8230; <a href="https://mykre.wordpress.com/2019/07/03/raspberrypi-raspbian-buster-image-release/" class="more-link">Continue reading<span class="screen-reader-text"> "RaspberryPi Raspbian Buster Image&#160;Release"</span></a>]]></description>
										<content:encoded><![CDATA[<p>I am a little bit behind, but the <a href="https://www.raspberrypi.org/" target="_blank">RaspberryPi</a> guys have released the <a href="https://www.raspberrypi.org/downloads/raspbian/" target="_blank">Raspbian Buster</a> images which includes support for the RaspberryPi 4 Devices.</p>
<p>Download Link: <a title="https://www.raspberrypi.org/downloads/raspbian/" href="https://www.raspberrypi.org/downloads/raspbian/">https://www.raspberrypi.org/downloads/raspbian/</a></p>
<p>As usual you have the choice of, Full Image with recommended Apps, just the Desktop or a Lite version.</p>
<p>Version release Notes</p>
<p>2019-06-20:</p>
<ul>
<li>&nbsp; Based on Debian Buster</li>
<li>Support for Raspberry Pi 4 hardware</li>
<li>FKMS OpenGL desktop graphics driver and xcompmgr compositing window manager used when running on Raspberry Pi 4</li>
<li>Screen Configuration application added for use with FKMS driver</li>
<li>Raspberry Pi 4 video output options added to Raspberry Pi Configuration</li>
<li>Uses new PiXflat UI theme for GTK and Openbox</li>
<li>CPU activity gauge plugin no longer shown on taskbar by default</li>
<li>CPU temperature gauge plugin added (not shown by default)</li>
<li>USB ejecter and Bluetooth taskbar icons hidden when not appropriate</li>
<li>Version 74.0.3729.157 of Chromium web browser included</li>
<li>Version 32.0.0.207 of Flash player included</li>
<li>IDLE Python IDE removed</li>
<li>Wolfram Mathematica removed temporarily due to incompatibility with Buster</li>
<li>Display of package sizes removed from Recommended Software</li>
<li>Appearance Settings modified to support independent settings for two monitors</li>
<li>Oracle Java 7 and 8 replaced with OpenJDK 11</li>
<li>Miscellaneous small bug fixes</li>
<li>On-board 5GHz WiFi blocked by rfkill by default<br />The block is removed when taking one of the following actions:<br />&nbsp;&nbsp;&nbsp; &#8211; Selecting a locale in the first run wizard<br />&nbsp;&nbsp;&nbsp; &#8211; Setting the WiFi country in the Raspberry Pi Configuration tool or the Network Settings applet<br />&nbsp;&nbsp;&nbsp; &#8211; Setting the WiFi country in raspi-config<br />&nbsp;&nbsp;&nbsp; &#8211; Providing a wpa_supplicant.conf file through the boot partition<br />&nbsp;&nbsp;&nbsp; &#8211; Running &#8216;rfkill unblock wifi&#8217;</li>
<li>Boot partition size set to 256M</li>
<li>Linux kernel 4.19.50</li>
<li>Raspberry Pi firmware 88ca9081f5e51cdedd16d5dbc85ed12a25123201</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://mykre.wordpress.com/2019/07/03/raspberrypi-raspbian-buster-image-release/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">171</post-id>
		<media:content url="https://0.gravatar.com/avatar/9469bc0595472ac75dde7ee8edda94a63ffc83ceeff496e2c1756f64d8f8fe8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mykre</media:title>
		</media:content>
	</item>
	</channel>
</rss>
