<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://en.wiki.guifi.net/w/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://en.wiki.guifi.net/w/index.php?action=history&amp;feed=atom&amp;title=Cloudy_Beaglebone</id>
		<title>Cloudy Beaglebone - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://en.wiki.guifi.net/w/index.php?action=history&amp;feed=atom&amp;title=Cloudy_Beaglebone"/>
		<link rel="alternate" type="text/html" href="http://en.wiki.guifi.net/w/index.php?title=Cloudy_Beaglebone&amp;action=history"/>
		<updated>2026-08-14T16:18:09Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.22.0</generator>

	<entry>
		<id>http://en.wiki.guifi.net/w/index.php?title=Cloudy_Beaglebone&amp;diff=297&amp;oldid=prev</id>
		<title>Conxuro: Created page with &quot;Beaglebone is a [https://en.wikipedia.org/wiki/Single-board_computer SBC] with an ARM processor and several input-output interfaces. For that reason is needed an operative sys...&quot;</title>
		<link rel="alternate" type="text/html" href="http://en.wiki.guifi.net/w/index.php?title=Cloudy_Beaglebone&amp;diff=297&amp;oldid=prev"/>
				<updated>2015-09-10T20:20:45Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;Beaglebone is a [https://en.wikipedia.org/wiki/Single-board_computer SBC] with an ARM processor and several input-output interfaces. For that reason is needed an operative sys...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Beaglebone is a [https://en.wikipedia.org/wiki/Single-board_computer SBC] with an ARM processor and several input-output interfaces. For that reason is needed an operative system prepared to run on an ARM architecture and with the corresponding drivers to make these interfaces work. &lt;br /&gt;
&lt;br /&gt;
''Note: this guide has been done with Ubuntu distribution, but it is possible that with the same steps it work with another Debian based distribution.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Install the base system  ==&lt;br /&gt;
&lt;br /&gt;
* Insert the microSD Card into your computer and observe which device it registers as by typing ls /dev/sd. If you are uncertain, remove the microSD Card and the entry should go away. Once you know which device your microSD Card is, follow the instructions below replacing /dev/sdX with the name of the microSD Card in your system.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Begin partitioning the microSD card by typing &amp;lt;code&amp;gt;fdisk /dev/sdX&amp;lt;/code&amp;gt;.&lt;br /&gt;
# Initialize a new partition table by selecting &amp;lt;code&amp;gt;o&amp;lt;/code&amp;gt;, then verify is empty by selecting &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt;.&lt;br /&gt;
# Create a boot partition by selecting &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt; ''(new)'', then &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; ''(primary)'', and &amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt; to specify the first partition. Press ''enter'' to accept the default first sector and specify &amp;lt;code&amp;gt;4095&amp;lt;/code&amp;gt; for the last sector.&lt;br /&gt;
# Change the partition type to FAT16 by selecting &amp;lt;code&amp;gt;t&amp;lt;/code&amp;gt; ''(type)'' and &amp;lt;code&amp;gt;e&amp;lt;/code&amp;gt; for ''‘W95 FAT16 (LBA)’''.&lt;br /&gt;
# Set the partition bootable by selecting &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt; then &amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt;.&lt;br /&gt;
# Next, create the data partition for the root filesystem by selecting &amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt; for ''(new)'', then &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; ''(primary)'', and &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; to specify the second partition. Accept the default values for the first and last sectors by pressing ''enter'' twice.&lt;br /&gt;
# Press &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; to ‘print’ the partition table.&lt;br /&gt;
# Finally, commit the changes by selecting &amp;lt;code&amp;gt;w&amp;lt;/code&amp;gt; to ''write'' the partition table and exit ''fdisk''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Continue to format the partitions and to install the boot system and the root system.&lt;br /&gt;
# Format partition 1 as FAT by typing &amp;lt;code&amp;gt;mkfs.vfat /dev/sdX1&amp;lt;/code&amp;gt;.&lt;br /&gt;
# Format partition 2 as ext4 by typing &amp;lt;code&amp;gt;mkfs.ext4 /dev/sdX2&amp;lt;/code&amp;gt;.&lt;br /&gt;
# Install ''u-boot'' to the microSD Card.&lt;br /&gt;
 wget http://s3.armhf.com/dist/bone/bone-uboot.tar.xz&lt;br /&gt;
 mkdir boot&lt;br /&gt;
 mount /dev/sdX1 boot&lt;br /&gt;
 tar xJvf bone-uboot.tar.xz -C boot&lt;br /&gt;
 umount boot&lt;br /&gt;
# Install the desired root filesystem to the microSD card (Ubuntu Trusty in this example).&lt;br /&gt;
 wget http://s3.armhf.com/dist/bone/ubuntu-trusty-14.04-rootfs-3.14.4.1-bone-armhf.com.tar.xz&lt;br /&gt;
 mkdir rootfs&lt;br /&gt;
 mount /dev/sdX2 rootfs&lt;br /&gt;
 tar xJvf ubuntu-trusty-14.04-rootfs-3.14.4.1-bone-armhf.com.tar.xz -C rootfs&lt;br /&gt;
 umount rootfs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The microSD Card is now ready to boot. Note that for ubuntu installations, the login userid is ''ubuntu'' and the password is ''ubuntu''.&lt;br /&gt;
&lt;br /&gt;
''Tip: the package cache has been flushed to reduce the size of the images. Run &amp;lt;code&amp;gt;apt-get update&amp;lt;/code&amp;gt; after boot to update the package cache, then run &amp;lt;code&amp;gt;apt-get upgrade&amp;lt;/code&amp;gt; to ensure the latest updates are installed.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Install Cloudy ==&lt;br /&gt;
&lt;br /&gt;
To install Cloudy you can follow the instructions to [[Cloudy_in_Debian|convert a plain Debian installation in Cloudy]] by adding the system the specific files and tools of the distribution.&lt;br /&gt;
&lt;br /&gt;
We call it &amp;quot;cloudynize&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
We recommend to use a script to automate the process. You can know how to in the [[cloudynize|wiki page that explains how to &amp;quot;cloudynize&amp;quot;]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Cloudy]]&lt;/div&gt;</summary>
		<author><name>Conxuro</name></author>	</entry>

	</feed>