<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://dev1galaxy.org/extern.php?action=feed&amp;tid=2178&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / mini HowTo install ascii on a RaspBerry pi 3 B+]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=2178</link>
		<description><![CDATA[The most recent posts in mini HowTo install ascii on a RaspBerry pi 3 B+.]]></description>
		<lastBuildDate>Wed, 07 Aug 2019 11:55:12 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: mini HowTo install ascii on a RaspBerry pi 3 B+]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=17358#p17358</link>
			<description><![CDATA[<p>Thanks. It was very helpful. <br />I don&#039;t understand why we can&#039;t see these steps in a README file or on a wiki...</p>]]></description>
			<author><![CDATA[dummy@example.com (ukemi)]]></author>
			<pubDate>Wed, 07 Aug 2019 11:55:12 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=17358#p17358</guid>
		</item>
		<item>
			<title><![CDATA[Re: mini HowTo install ascii on a RaspBerry pi 3 B+]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=10856#p10856</link>
			<description><![CDATA[<p>resize2fs</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Fri, 20 Jul 2018 22:00:33 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=10856#p10856</guid>
		</item>
		<item>
			<title><![CDATA[Re: mini HowTo install ascii on a RaspBerry pi 3 B+]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=10850#p10850</link>
			<description><![CDATA[<p>I think this is missing a part.</p><p>While parted does show the new size:</p><div class="codebox"><pre><code>(parted) print                                                            
Model: SD SC16G (sd/mmc)
Disk /dev/mmcblk0: 15.9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags: 

Number  Start   End     Size    Type     File system  Flags
 1      1049kB  135MB   134MB   primary  fat16        lba
 2      135MB   15.9GB  15.8GB  primary  ext4

# lsblk
NAME        MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
mmcblk0     179:0    0 14.9G  0 disk 
|-mmcblk0p1 179:1    0  128M  0 part /boot
`-mmcblk0p2 179:2    0 14.7G  0 part /</code></pre></div><p>however ... the filesystem doesn&#039;t seem quite right:</p><div class="codebox"><pre><code># df
Filesystem     1K-blocks   Used Available Use% Mounted on
/dev/root        1743136 777240    859300  48% /
devtmpfs          438328      0    438328   0% /dev
tmpfs              88764   1200     87564   2% /run
tmpfs               5120      4      5116   1% /run/lock
tmpfs             177520      0    177520   0% /run/shm
/dev/mmcblk0p1    130798  35754     95044  28% /boot</code></pre></div><p>/dev/root size should be much larger, it is only reporting 1,743,136 KB (~1.7 GB).</p>]]></description>
			<author><![CDATA[dummy@example.com (rbit)]]></author>
			<pubDate>Fri, 20 Jul 2018 17:32:16 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=10850#p10850</guid>
		</item>
		<item>
			<title><![CDATA[mini HowTo install ascii on a RaspBerry pi 3 B+]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=10314#p10314</link>
			<description><![CDATA[<p>Installation Devuan Ascii on a Rasperry pi 3 B+</p><p>download the image of ascii from embedded for the Rasperry</p><p># wget <a href="https://mirror.leaseweb.com/devuan/devuan_ascii/embedded/devuan_ascii_2.0.0_arm64_raspi3.img.xz" rel="nofollow">https://mirror.leaseweb.com/devuan/devu … pi3.img.xz</a></p><p>uncompress&#160; the xz file</p><p># xz -d devuan_ascii_2.0.0_arm64_raspi3.img.xz</p><p>copy the image to the microSD card</p><p># dd if=devuan_ascii_2.0.0_arm64_raspi3.img of=/dev/sde bs=2M</p><p>Put microSD card into the RaspBerry</p><p>Turn On</p><p><strong>You can work locally by connecting a keyboard and screen to the Raspberrry</strong></p><p><strong>But the most comfortable thing to do is to do it for ssh.</strong></p><p><strong>ssh root@192.168.1.x</strong></p><p>user: root<br />pass: toor</p><p>Change root password</p><p># passwd</p><p>Change the language to your own. (default us_US)</p><p>edit /etc/locale.gen</p><p># nano /etc/locale.gen</p><p>Select the decomposed locale you want, comment on the locale us</p><p>And then......</p><p># locale-gen</p><p>Install keyboard-configuration</p><p># apt-get install keyboard-configuration</p><p>dpkg-reconfigure keyboard-configuration</p><p>install console-data</p><p># apt-get install console-data</p><p>dpkg-reconfigure console-data (choose keyboard language)</p><p>Install parted</p><p># apt-get install parted</p><p>Resize the ext4 partition to the maximum of the card.</p><p># parted /dev/sde </p><p>(parted) print<br />Model: Generic STORAGE DEVICE (scsi)<br />Disk /dev/sde: 16,4GB<br />Sector size (logical/physical): 512B/512B<br />Partition Table: msdos<br />Disk Flags: </p><p>Number Start End Size Type File system Flags<br /> 1 1049kB 135MB 134MB primary fat16 lba<br /> 2 135MB 1983MB 1848MB primary ext4</p><p>(parted) resizepart 2 -1s</p><p>(parted) print&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; <br />Model: Generic STORAGE DEVICE (scsi)<br />Disk /dev/sde: 16,4GB<br />Sector size (logical/physical): 512B/512B<br />Partition Table: msdos<br />Disk Flags: </p><p>Number Start End Size Type File system Flags<br /> 1 1049kB 135MB 134MB primary fat16 lba<br /> 2 135MB 16.4GB 16.2GB primary ext4</p><p>There is now room to install programs, for example based on ncurses.</p><p>I hope it will be useful</p><p>Basati</p>]]></description>
			<author><![CDATA[dummy@example.com (basati)]]></author>
			<pubDate>Fri, 22 Jun 2018 15:21:57 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=10314#p10314</guid>
		</item>
	</channel>
</rss>
