<?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>fedora on raspberry pi Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/fedora-on-raspberry-pi/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sun, 28 Jan 2018 20:29:13 +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 Fedora on Raspberry Pi</title>
		<link>https://www.osradar.com/how-to-install-fedora-on-raspberry-pi/</link>
					<comments>https://www.osradar.com/how-to-install-fedora-on-raspberry-pi/#respond</comments>
		
		<dc:creator><![CDATA[Mel K]]></dc:creator>
		<pubDate>Mon, 22 Jan 2018 10:51:34 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora on raspberry pi]]></category>
		<category><![CDATA[install fedora]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=1487</guid>

					<description><![CDATA[<p>Raspberry Pi, by far, is the most popular SBC (Single Board Computer) in the world. These computers are quite powerful despite their small size and low price. I personally love the Raspberry Pi 3 as it comes with built-in Wi-Fi + Bluetooth and a 64-bit processor. For Linux lovers, Fedora is a very popular choice. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-fedora-on-raspberry-pi/">How to install Fedora on Raspberry Pi</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Raspberry Pi, by far, is the most popular SBC (Single Board Computer) in the world. These computers are quite powerful despite their small size and low price. I personally love the Raspberry Pi 3 as it comes with built-in Wi-Fi + Bluetooth and a 64-bit processor.</p>
<p>For Linux lovers, Fedora is a very popular choice. It’s an upstream source of Red Hat Linux. Fedora is also a nice choice for servers. For my Raspberry Pi 3, I love using Fedora. Fedora officially supports the ARM architecture, making it an excellent choice. However, installing Fedora on Raspberry Pi is slightly different and requires patience.</p>
<p>If you want to have your favorite Fedora on your Pi, get started with the following tutorial. Take a note that I’m using Raspberry Pi 3 &amp; Fedora 27 (currently, the latest).</p>
<h3>1. Prerequisites</h3>
<p>Fedora supports Raspberry Pi Model B 2 and 3. There are a few other things you need to install Fedora on it.</p>
<ul>
<li>A good SD card</li>
<li>HDMI monitor/TV</li>
<li>USB keyboard &amp; mouse</li>
<li>A good power supply</li>
</ul>
<h3>2. Download Fedora for ARM</h3>
<p>From Fedora 25, Raspberry Pi is officially supported. Raspberry Pi uses ARM processor. There is official Fedora builds for the architecture.</p>
<p><a href="https://arm.fedoraproject.org/">Download your favorite Fedora image from Fedora</a>. <a href="https://fedoraproject.org/wiki/Architectures/ARM/Raspberry_Pi#Downloading_the_Fedora_ARM_image">Fedora also contains the image list</a>. If you’re looking for Aarch64 images, <a href="https://fedoraproject.org/wiki/Architectures/ARM/Raspberry_Pi#Raspberry_Pi_3_aarch64_support">click here</a>. Don’t forget to verify the downloaded image(s). It’s important, as any single bit corruption might change or break the system.</p>
<h3>3. Writing the image to SD card</h3>
<p>Depending on your PC’s operating system, there are several methods to write the image to the SD card. The easiest solution is using Windows PC. <a href="https://sourceforge.net/projects/win32diskimager/">Win32 Disk Image</a> is the best tool. Connect your SD card, open the tool, select your image and click “Write”.</p>
<p>If you’re planning to prepare the SD card under Linux, you have to follow the following steps</p>
<ul>
<li>Install “arm-image-installer”</li>
</ul>
<pre class="lang:default decode:true">dnf install –y fedora-arm-installer</pre>
<ul>
<li>Now, it’s time to write the image out.</li>
</ul>
<pre class="lang:default decode:true">$ sudo arm-image-installer

Usage: arm-image-installer &lt;options&gt;

   --image=IMAGE    - xz compressed image file name
   --target=TARGET  - target board
   --media=DEVICE   - media device file (/dev/[sdX|mmcblkX])
   --selinux=ON/OFF - Turn SELinux off/on as needed
   --norootpass     - Remove the root password
   -y		    - Assumes yes, will not wait for confirmation
   --version	    - Display version and exit
   --resizefs	    - Resize root filesystem to fill media device
   --addconsole     - Add system console to extlinux.conf
   --addkey=        - /path/to/ssh-public-key

Example: arm-image-installer --image=Fedora-Rawhide.xz --target=Bananapi --media=/dev/mmcblk0

For list of supported boards please check SUPPORTED-BOARDS file.</pre>
<p>For Raspberry Pi 2, use the following command:</p>
<pre class="lang:default decode:true">--target=rpi2</pre>
<p>If your device is Raspberry Pi 3, use the following command:</p>
<pre class="lang:default decode:true">--target=rpi3</pre>
<p>For the manual procedure, follow this command:</p>
<pre class="lang:default decode:true">xzcat Fedora-IMAGE-NAME.raw.xz | sudo dd status=progress bs=4M of=/dev/XXX # Location of your media (will be sdX or mmcblkX depending on hardware)</pre>
<p>If you’re a macOS user, follow this <a href="https://www.raspberrypi.org/documentation/installation/installing-images/mac.md">in-depth guide here</a>.</p>
<h3>4. Resize the root partition</h3>
<p>The root partition is shrunk to minimum size. If you need to resize it, you can do that easily. I recommend increasing the size, 8GB minimum. This is my personal opinion, allowing to perform every task more smoothly.</p>
<p>The easiest way is to resize before first boot. Run this command:</p>
<pre class="lang:default decode:true">gparted /dev/XXX</pre>
<p>Another way is to complete the initial setup and then, perform the resizing. Here’s how to do it.</p>
<pre class="lang:default decode:true"># enlarge the 4th partition (this example uses mmcblk0)
growpart /dev/mmcblk0 4
# grow the fileystem to fill the available space
resize2fs /dev/mmcblk0p4
# resize root partition for the server image (which uses xfs)
xfs_growfs -d /</pre>
<ol start="5">
<li>Booting Fedora</li>
</ol>
<p>Now, it’s time to boot Fedora on your Pi. Follow the following steps.</p>
<ul>
<li>Insert the SD card into Raspberry Pi.</li>
<li>Connect keyboard, mouse, network cable and monitor.</li>
<li>Power up the Raspberry Pi.</li>
<li>After the loading, Fedora will boot up and “Initial setup wizard” will appear. Follow the wizard to set your time zone, language and create users.</li>
</ul>
<p>Once complete, you’ll be prompted with a login screen or “getting started” guide.</p>
<h3>6. Use your PC</h3>
<p>Now, your Raspberry Pi is your perfect companion with the latest Fedora 27. Use everything as normal.</p>
<p>The entire step-by-step, in-depth guide is <a href="https://fedoraproject.org/wiki/Architectures/ARM/Raspberry_Pi">here</a>.</p>
<h3>Enable Wi-Fi &amp; Bluetooth</h3>
<p>If you’re using Raspberry Pi 3, Wi-Fi module is already present. Fedora supports the default module. To enable this, you need to run the following command and reboot. Then, Wi-Fi should work just fine.</p>
<pre class="lang:default decode:true">sudo curl https://raw.githubusercontent.com/RPi-Distro/firmware-nonfree/master/brcm80211/brcm/brcmfmac43430-sdio.txt -o /lib/firmware/brcm/brcmfmac43430-sdio.txt</pre>
<p>For Bluetooth, it’s currently untested. There’s a pretty big chance that the present software will crash the entire device. I don’t recommend to use it. However, if you’re interested anyway, use the following command.</p>
<pre class="lang:default decode:true ">hciattach /dev/ttyAMA0 bcm43xx 3000000 noflow -</pre>
<p>Alternatively, you can download FedBerry, a custom Fedora distribution that’s optimized and organized specially for Pi 2/3. The good news is, this one supports all the built-in hardware of your Raspberry Pi. It’s available on several desktop environments – LXQt, Xfce, minimal and Barebone. <a href="http://fedberry.org/">Check out FedBerry here</a>.</p>
<p>Enjoy your Raspberry Pi as your brand new PC.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-fedora-on-raspberry-pi/">How to install Fedora on Raspberry Pi</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-fedora-on-raspberry-pi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
