<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Install LAMP, FTP and PhpMyAdmin on your Onion Omega]]></title><description><![CDATA[<p dir="auto"><strong>DISCLAIMER:<br />
I'm not responsible if You brick Your Onion following this tutorial. I'm Linux newbie so follow this tutorial on Your own reponsibillity <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /></strong></p>
<p dir="auto">I tested it on 0.0.4 (b220) firmware.</p>
<p dir="auto">Hi,<br />
in this tutorial I'll show you how to install LAMP, FTP and PhpMyAdmin on your Onion Omega. In this tutorial I'll use nano for editing text (yes I'm newbie who deosen't use vi:) and you can install it with:</p>
<pre><code>opkg update
opkg install nano
</code></pre>
<p dir="auto"><strong>Make Your Onion to boot from USB storage</strong></p>
<p dir="auto">Apache as other packages requires a lot of space so first thing You will have to do is to extend your storage. I did this by following this <em><a href="https://samhobbs.co.uk/2013/11/more-space-for-packages-with-extroot-on-your-openwrt-router" rel="nofollow">tutorial</a></em>. To do that you will have to format your USB storage into ext4 filesystem. You can do this by following commands:</p>
<pre><code>opkg update
opkg install e2fsprogs
mkfs.ext4 /dev/&lt;your partition&gt;
</code></pre>
<p dir="auto">(your partition is the same You got from fdisk command in the tutorial above)</p>
<p dir="auto"><strong>Install SFTP</strong><br />
To install sftp use <code>opkg install openssh-sftp-server</code> command.</p>
<p dir="auto"><strong>Install Apache server</strong></p>
<pre><code>opkg update
opkg install apache
</code></pre>
<p dir="auto">Then edit <code>httpd.conf</code>:</p>
<pre><code>nano /etc/apache/httpd.conf
</code></pre>
<p dir="auto">Find Listen part in the file and change it into:</p>
<pre><code>Listen &lt;ip You use to connect to Your console&gt;:&lt;port number other than 80&gt;
</code></pre>
<p dir="auto">Also find ServerName and change it into:</p>
<pre><code>ServerName &lt;name for Your server&gt;:&lt;same port as in Listen&gt;
</code></pre>
<p dir="auto">Then you should find:</p>
<pre><code>LogLevel debug
</code></pre>
<p dir="auto">and change it into</p>
<pre><code>LogLevel error
</code></pre>
<p dir="auto">To start Apache server You hould execute:</p>
<pre><code>apachectl start
</code></pre>
<p dir="auto">Address of Your Apache server is : <code>&lt;Onion Console IP adress&gt;:&lt;Your chosen port&gt;</code></p>
<p dir="auto"><strong>Install PHP</strong><br />
Since I had some problems with PhpMyAdmin I installed all this packages for php (all of them are not required but those were that I installed)</p>
<pre><code>opkg install php5 php5-cgi php5-fastcgi php5-mod-json php5-mod-session php5-mod-zip libsqlite3 zoneinfo-core php5-mod-pdo php5-mod-pdo-sqlite php5-mod-ctype php5-mod-mbstring php5-mod-gd sqlite3-cli php5-mod-sqlite3 php5-mod-curl curl php5-mod-xml php5-mod-simplexml php5-mod-hash php5-mod-dom php5-mod-iconv
</code></pre>
<p dir="auto">Type:</p>
<pre><code>ln -s /usr/bin/php-cgi /usr/share/cgi-bin/
</code></pre>
<p dir="auto">and then add folowing lines into httpd.conf:</p>
<pre><code>&lt;Directory "/usr/share/cgi-bin"&gt;
    AllowOverride None
    Options FollowSymLinks
    Order allow,deny
    Allow from all
&lt;/Directory&gt;

&lt;Directory "/usr/bin"&gt;
    AllowOverride None
    Options none
    Order allow,deny
    Allow from all
&lt;/Directory&gt;
</code></pre>
<p dir="auto">Find  <code>ScriptAlias /cgi-bin/ "/usr/share/cgi-bin"</code> and affter that line add <code>ScriptAlias /php/ "/usr/bin"</code> so you should have:</p>
<pre><code>ScriptAlias /cgi-bin/ "/usr/share/cgi-bin"
ScriptAlias /php/ "/usr/bin"
</code></pre>
<p dir="auto">Find <code>&lt;IfModule mime_module&gt;</code> section and add <code>AddType application/x-httpd-php .php</code> and <code>Action application/x-httpd-php "/php/php-cgi"'</code> into that section (before <code>&lt;/IfModule&gt;</code>)so you should have:</p>
<pre><code>AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php-cgi"
&lt;/IfModule&gt; 
</code></pre>
<p dir="auto">To change Directory Index, change <code>DirectoryIndex index.html</code> to <code>DirectoryIndex index.php index.html</code>.</p>
<p dir="auto">Open php.ini:</p>
<pre><code>nano /etc/php.ini
</code></pre>
<p dir="auto">And uncomment (remove ; ) on lines:</p>
<pre><code>extension  = gd.so
extension = mbstring.so
extension = pdo-mysql.so
extension = pdo_sqlite.so
extension = socket.so
</code></pre>
<p dir="auto">Also do not specify <code>doc_root</code> so change <code>doc_root</code> into <code>doc_root =</code></p>
<p dir="auto">After that restart apache server: <code>apachectl restart</code></p>
<p dir="auto"><strong>Install mysql</strong></p>
<pre><code>opkg install mysql-server
</code></pre>
<p dir="auto">Create two folders:</p>
<pre><code>mkdir /mnt/data/mysql
mkdir /mnt/data/tmp
</code></pre>
<p dir="auto">Use command:</p>
<pre><code>mysql_install_db --force
</code></pre>
<p dir="auto">Ok, nex step is to create root user (when I installed mysql, table with users was empty, if that's also Your case use this steps). Execute:</p>
<pre><code>/usr/bin/mysqld --skip-grant-tables --skip-networking &amp;
mysql -u root
use mysql;
FLUSH PRIVILEGES;
INSERT into user (Host, User,Password) values ('localhost','root',' ');
UPDATE user SET Password=PASSWORD('password you want') WHERE User='root';

update user set Select_priv='Y',Insert_priv='Y',Update_priv='Y',Delete_priv='Y',Create_priv='Y',Drop_priv='Y',Reload_priv='Y',Shutdown_priv='Y',Process_priv='Y',File_priv='Y',Grant_priv='Y',References_priv='Y',Index_priv='Y',Alter_priv='Y',Show_db_priv='Y',Super_priv='Y',Create_tmp_table_priv='Y',Lock_tables_priv='Y',Execute_priv='Y',Repl_slave_priv='Y',Repl_client_priv='Y',Create_view_priv='Y',Show_view_priv='Y',Create_routine_priv='Y',Alter_routine_priv='Y',Create_user_priv='Y' where user='root';

FLUSH PRIVILEGES;
</code></pre>
<p dir="auto">To start mysql server you should type:</p>
<pre><code>/etc/init.d/mysqld start
</code></pre>
<p dir="auto"><strong>Install PhpMyAdmin</strong><br />
To install PhpMyAdmin you should download it from <a href="https://www.phpmyadmin.net/" rel="nofollow">link</a> and extract it to <em>/usr/share/htdocs</em> (Apache server root) and rename root folder of PhpMyAdmin (PhpMyAdmin-4.<em>.</em>-allLanguages) to <code>phpmyadmin</code>.<br />
You should copy the content of config.sample.inc.php to config.inc.php and edit it:</p>
<pre><code>cp usr/share/htdocs/phpmyadmin/config.sample.inc.php usr/share/htdocs/phpmyadmin/config.inc.php
nano usr/share/htdocs/phpmyadmin/config.inc.php
</code></pre>
<p dir="auto">Change Authentication type and Servers parameters into:</p>
<pre><code>$cfg['Servers'][$i]['auth_type'] = 'cookie';

$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
</code></pre>
<p dir="auto">After that open <code>/usr/share/htdocs/phpmyadmin/libraries/common.inc.php</code> with nano (or whatever You use) and comment following part:</p>
<pre><code> #if (PMA_MYSQL_INT_VERSION &lt; $cfg['MysqlMinVersion']['internal'] {
    #    PMA_fatalError(
    #        __('You should upgrade to %s %s or later.'),
    #        array('MySQL', $cfg['MysqlMinVersion']['human'])
    #    );
    #}
</code></pre>
<p dir="auto">And that's it:)<br />
You can access PhpMyAdmin on <em>&lt;Onion Console IP adress&gt;:&lt;Your chosen port&gt;/phpmyadmin</em></p>
<p dir="auto"><strong>UPDATE</strong> (ty to <a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/271">@Chris-MacKay</a>)<br />
If you get some permission errors change <code> ScriptAlias /php/ "/usr/bin"</code> to <code> ScriptAlias /php/ "/usr/bin/"</code> in httpd.conf .</p>
]]></description><link>http://community.onion.io/topic/159/install-lamp-ftp-and-phpmyadmin-on-your-onion-omega</link><generator>RSS for Node</generator><lastBuildDate>Thu, 11 Jun 2026 19:10:43 GMT</lastBuildDate><atom:link href="http://community.onion.io/topic/159.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 29 Nov 2015 00:21:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sat, 12 Dec 2015 23:58:35 GMT]]></title><description><![CDATA[<p dir="auto"><strong>DISCLAIMER:<br />
I'm not responsible if You brick Your Onion following this tutorial. I'm Linux newbie so follow this tutorial on Your own reponsibillity <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /></strong></p>
<p dir="auto">I tested it on 0.0.4 (b220) firmware.</p>
<p dir="auto">Hi,<br />
in this tutorial I'll show you how to install LAMP, FTP and PhpMyAdmin on your Onion Omega. In this tutorial I'll use nano for editing text (yes I'm newbie who deosen't use vi:) and you can install it with:</p>
<pre><code>opkg update
opkg install nano
</code></pre>
<p dir="auto"><strong>Make Your Onion to boot from USB storage</strong></p>
<p dir="auto">Apache as other packages requires a lot of space so first thing You will have to do is to extend your storage. I did this by following this <em><a href="https://samhobbs.co.uk/2013/11/more-space-for-packages-with-extroot-on-your-openwrt-router" rel="nofollow">tutorial</a></em>. To do that you will have to format your USB storage into ext4 filesystem. You can do this by following commands:</p>
<pre><code>opkg update
opkg install e2fsprogs
mkfs.ext4 /dev/&lt;your partition&gt;
</code></pre>
<p dir="auto">(your partition is the same You got from fdisk command in the tutorial above)</p>
<p dir="auto"><strong>Install SFTP</strong><br />
To install sftp use <code>opkg install openssh-sftp-server</code> command.</p>
<p dir="auto"><strong>Install Apache server</strong></p>
<pre><code>opkg update
opkg install apache
</code></pre>
<p dir="auto">Then edit <code>httpd.conf</code>:</p>
<pre><code>nano /etc/apache/httpd.conf
</code></pre>
<p dir="auto">Find Listen part in the file and change it into:</p>
<pre><code>Listen &lt;ip You use to connect to Your console&gt;:&lt;port number other than 80&gt;
</code></pre>
<p dir="auto">Also find ServerName and change it into:</p>
<pre><code>ServerName &lt;name for Your server&gt;:&lt;same port as in Listen&gt;
</code></pre>
<p dir="auto">Then you should find:</p>
<pre><code>LogLevel debug
</code></pre>
<p dir="auto">and change it into</p>
<pre><code>LogLevel error
</code></pre>
<p dir="auto">To start Apache server You hould execute:</p>
<pre><code>apachectl start
</code></pre>
<p dir="auto">Address of Your Apache server is : <code>&lt;Onion Console IP adress&gt;:&lt;Your chosen port&gt;</code></p>
<p dir="auto"><strong>Install PHP</strong><br />
Since I had some problems with PhpMyAdmin I installed all this packages for php (all of them are not required but those were that I installed)</p>
<pre><code>opkg install php5 php5-cgi php5-fastcgi php5-mod-json php5-mod-session php5-mod-zip libsqlite3 zoneinfo-core php5-mod-pdo php5-mod-pdo-sqlite php5-mod-ctype php5-mod-mbstring php5-mod-gd sqlite3-cli php5-mod-sqlite3 php5-mod-curl curl php5-mod-xml php5-mod-simplexml php5-mod-hash php5-mod-dom php5-mod-iconv
</code></pre>
<p dir="auto">Type:</p>
<pre><code>ln -s /usr/bin/php-cgi /usr/share/cgi-bin/
</code></pre>
<p dir="auto">and then add folowing lines into httpd.conf:</p>
<pre><code>&lt;Directory "/usr/share/cgi-bin"&gt;
    AllowOverride None
    Options FollowSymLinks
    Order allow,deny
    Allow from all
&lt;/Directory&gt;

&lt;Directory "/usr/bin"&gt;
    AllowOverride None
    Options none
    Order allow,deny
    Allow from all
&lt;/Directory&gt;
</code></pre>
<p dir="auto">Find  <code>ScriptAlias /cgi-bin/ "/usr/share/cgi-bin"</code> and affter that line add <code>ScriptAlias /php/ "/usr/bin"</code> so you should have:</p>
<pre><code>ScriptAlias /cgi-bin/ "/usr/share/cgi-bin"
ScriptAlias /php/ "/usr/bin"
</code></pre>
<p dir="auto">Find <code>&lt;IfModule mime_module&gt;</code> section and add <code>AddType application/x-httpd-php .php</code> and <code>Action application/x-httpd-php "/php/php-cgi"'</code> into that section (before <code>&lt;/IfModule&gt;</code>)so you should have:</p>
<pre><code>AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php-cgi"
&lt;/IfModule&gt; 
</code></pre>
<p dir="auto">To change Directory Index, change <code>DirectoryIndex index.html</code> to <code>DirectoryIndex index.php index.html</code>.</p>
<p dir="auto">Open php.ini:</p>
<pre><code>nano /etc/php.ini
</code></pre>
<p dir="auto">And uncomment (remove ; ) on lines:</p>
<pre><code>extension  = gd.so
extension = mbstring.so
extension = pdo-mysql.so
extension = pdo_sqlite.so
extension = socket.so
</code></pre>
<p dir="auto">Also do not specify <code>doc_root</code> so change <code>doc_root</code> into <code>doc_root =</code></p>
<p dir="auto">After that restart apache server: <code>apachectl restart</code></p>
<p dir="auto"><strong>Install mysql</strong></p>
<pre><code>opkg install mysql-server
</code></pre>
<p dir="auto">Create two folders:</p>
<pre><code>mkdir /mnt/data/mysql
mkdir /mnt/data/tmp
</code></pre>
<p dir="auto">Use command:</p>
<pre><code>mysql_install_db --force
</code></pre>
<p dir="auto">Ok, nex step is to create root user (when I installed mysql, table with users was empty, if that's also Your case use this steps). Execute:</p>
<pre><code>/usr/bin/mysqld --skip-grant-tables --skip-networking &amp;
mysql -u root
use mysql;
FLUSH PRIVILEGES;
INSERT into user (Host, User,Password) values ('localhost','root',' ');
UPDATE user SET Password=PASSWORD('password you want') WHERE User='root';

update user set Select_priv='Y',Insert_priv='Y',Update_priv='Y',Delete_priv='Y',Create_priv='Y',Drop_priv='Y',Reload_priv='Y',Shutdown_priv='Y',Process_priv='Y',File_priv='Y',Grant_priv='Y',References_priv='Y',Index_priv='Y',Alter_priv='Y',Show_db_priv='Y',Super_priv='Y',Create_tmp_table_priv='Y',Lock_tables_priv='Y',Execute_priv='Y',Repl_slave_priv='Y',Repl_client_priv='Y',Create_view_priv='Y',Show_view_priv='Y',Create_routine_priv='Y',Alter_routine_priv='Y',Create_user_priv='Y' where user='root';

FLUSH PRIVILEGES;
</code></pre>
<p dir="auto">To start mysql server you should type:</p>
<pre><code>/etc/init.d/mysqld start
</code></pre>
<p dir="auto"><strong>Install PhpMyAdmin</strong><br />
To install PhpMyAdmin you should download it from <a href="https://www.phpmyadmin.net/" rel="nofollow">link</a> and extract it to <em>/usr/share/htdocs</em> (Apache server root) and rename root folder of PhpMyAdmin (PhpMyAdmin-4.<em>.</em>-allLanguages) to <code>phpmyadmin</code>.<br />
You should copy the content of config.sample.inc.php to config.inc.php and edit it:</p>
<pre><code>cp usr/share/htdocs/phpmyadmin/config.sample.inc.php usr/share/htdocs/phpmyadmin/config.inc.php
nano usr/share/htdocs/phpmyadmin/config.inc.php
</code></pre>
<p dir="auto">Change Authentication type and Servers parameters into:</p>
<pre><code>$cfg['Servers'][$i]['auth_type'] = 'cookie';

$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
</code></pre>
<p dir="auto">After that open <code>/usr/share/htdocs/phpmyadmin/libraries/common.inc.php</code> with nano (or whatever You use) and comment following part:</p>
<pre><code> #if (PMA_MYSQL_INT_VERSION &lt; $cfg['MysqlMinVersion']['internal'] {
    #    PMA_fatalError(
    #        __('You should upgrade to %s %s or later.'),
    #        array('MySQL', $cfg['MysqlMinVersion']['human'])
    #    );
    #}
</code></pre>
<p dir="auto">And that's it:)<br />
You can access PhpMyAdmin on <em>&lt;Onion Console IP adress&gt;:&lt;Your chosen port&gt;/phpmyadmin</em></p>
<p dir="auto"><strong>UPDATE</strong> (ty to <a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/271">@Chris-MacKay</a>)<br />
If you get some permission errors change <code> ScriptAlias /php/ "/usr/bin"</code> to <code> ScriptAlias /php/ "/usr/bin/"</code> in httpd.conf .</p>
]]></description><link>http://community.onion.io/post/1198</link><guid isPermaLink="true">http://community.onion.io/post/1198</guid><dc:creator><![CDATA[Josip Mlakar]]></dc:creator><pubDate>Sat, 12 Dec 2015 23:58:35 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 01:30:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500">@Josip-Mlakar</a> Mind if I post this on our Wiki? <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f604.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--smile" title=":D" alt="😄" /></p>
]]></description><link>http://community.onion.io/post/1205</link><guid isPermaLink="true">http://community.onion.io/post/1205</guid><dc:creator><![CDATA[Boken Lin]]></dc:creator><pubDate>Sun, 29 Nov 2015 01:30:27 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 01:35:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/5">@Boken-Lin</a> of course I don't <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>http://community.onion.io/post/1206</link><guid isPermaLink="true">http://community.onion.io/post/1206</guid><dc:creator><![CDATA[Josip Mlakar]]></dc:creator><pubDate>Sun, 29 Nov 2015 01:35:15 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 01:59:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500">@Josip-Mlakar</a> Such a nice tutorial. I will modify it a bit to use the pivot-overlay method instead of pivot-root.</p>
]]></description><link>http://community.onion.io/post/1208</link><guid isPermaLink="true">http://community.onion.io/post/1208</guid><dc:creator><![CDATA[Boken Lin]]></dc:creator><pubDate>Sun, 29 Nov 2015 01:59:13 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 02:32:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500">@Josip-Mlakar</a> Fantastic <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":-)" alt="🙂" /><br />
I have been wanting to be able to use my 32GByte USB drive for some time in order to get more space.<br />
While I don't need LAMP etc. there were some packages that I wanted that I couldn't install for lack of space.</p>
<p dir="auto">However, following the instructions you referenced from <a href="https://samhobbs.co.uk/2013/11/more-space-for-packages-with-extroot-on-your-openwrt-router" rel="nofollow">https://samhobbs.co.uk/2013/11/more-space-for-packages-with-extroot-on-your-openwrt-router</a> I now have my Omega running entirely from USB without any problems.</p>
<p dir="auto">Consequently, I am now able to install <strong>jamvm</strong> (which I need for a compact Java VM on the Omega) though I did need to use the <strong>--force-depends</strong> option on <strong>opkg</strong> because of kernel/repo version mismatches - though it is in fact not causing any problems.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/5">@Boken-Lin</a> While I don't understand your reference to <strong>pivot-overlay</strong> vs <strong>pivot-root</strong>, if it makes an important difference, I will await your updates and re-do the loading on to USB</p>
]]></description><link>http://community.onion.io/post/1212</link><guid isPermaLink="true">http://community.onion.io/post/1212</guid><dc:creator><![CDATA[Kit Bishop]]></dc:creator><pubDate>Sun, 29 Nov 2015 02:32:14 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 03:14:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/19">@Kit-Bishop</a> Here's how you setup rootfs with the pivot-overlay method. <a href="https://wiki.onion.io/Tutorials/Using-USB-Storage-as-Rootfs" rel="nofollow">https://wiki.onion.io/Tutorials/Using-USB-Storage-as-Rootfs</a>. I'm still working on the pivot-root method.</p>
]]></description><link>http://community.onion.io/post/1215</link><guid isPermaLink="true">http://community.onion.io/post/1215</guid><dc:creator><![CDATA[Boken Lin]]></dc:creator><pubDate>Sun, 29 Nov 2015 03:14:55 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 04:12:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/5">@Boken-Lin</a> Thanks - looking at the instructions for <strong>pivot-overlay</strong> it looks like it would be preferable to <strong>pivot-root</strong> in that it only puts the /overlay directory on to the USB rather than the whole system.</p>
<p dir="auto">While the <strong>pivot-root</strong> method as referenced by <a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500">@Josip-Mlakar</a> in <a href="https://samhobbs.co.uk/2013/11/more-space-for-packages-with-extroot-on-your-openwrt-router" rel="nofollow">https://samhobbs.co.uk/2013/11/more-space-for-packages-with-extroot-on-your-openwrt-router</a> appears to work well, i think I will change to the <strong>overlay-root</strong> method.</p>
<p dir="auto">Will let you know if I hit any problems.  And again thanks for the info <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":-)" alt="🙂" /></p>
]]></description><link>http://community.onion.io/post/1218</link><guid isPermaLink="true">http://community.onion.io/post/1218</guid><dc:creator><![CDATA[Kit Bishop]]></dc:creator><pubDate>Sun, 29 Nov 2015 04:12:38 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 06:11:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/5">@Boken-Lin</a> I have tried following the instructions you give at  <a href="https://wiki.onion.io/Tutorials/Using-USB-Storage-as-Rootfs" rel="nofollow">https://wiki.onion.io/Tutorials/Using-USB-Storage-as-Rootfs</a> for <strong>pivot-overlay</strong> method.<br />
I am having a problem.<br />
When I try the command in <strong>Step 3</strong> :</p>
<ul>
<li><strong>mount /dev/sda1 /mnt ; tar -C /overlay -cvf - . | tar -C /mnt -xf - ; umount /mnt</strong></li>
</ul>
<p dir="auto">I get the messages</p>
<ul>
<li><strong>tar: empty archive<br />
tar: short read</strong></li>
</ul>
<p dir="auto">I think this may be related to the fact that <strong>Step 2</strong> said:</p>
<ul>
<li><strong>mount /dev/sda1 /mnt/sda1</strong></li>
</ul>
<p dir="auto">I think there is some issue as to where /dev/sda1 is mounted.<br />
I am confused - can you clarify please.  Thanks.</p>
]]></description><link>http://community.onion.io/post/1222</link><guid isPermaLink="true">http://community.onion.io/post/1222</guid><dc:creator><![CDATA[Kit Bishop]]></dc:creator><pubDate>Sun, 29 Nov 2015 06:11:40 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 20:13:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/19">@Kit-Bishop</a> That's quite strange. Can you try running the commands separately to see if it helps?</p>
<pre><code>mount /dev/sda1 /mnt
</code></pre>
<p dir="auto">then</p>
<pre><code>tar -C /overlay -cvf - . | tar -C /mnt -xf -
</code></pre>
<p dir="auto">Finally,</p>
<pre><code>umount /mnt
</code></pre>
]]></description><link>http://community.onion.io/post/1243</link><guid isPermaLink="true">http://community.onion.io/post/1243</guid><dc:creator><![CDATA[Boken Lin]]></dc:creator><pubDate>Sun, 29 Nov 2015 20:13:13 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 21:16:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/5">@Boken-Lin</a> I'm having one of those days when nothing seems to go right! <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f61e.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--disappointed" title=":-(" alt="😞" /><br />
I have managed to move on a bit.  Not sure why, but when I tried the</p>
<pre><code>mount /dev/sda1 /mnt ; tar -C /overlay -cvf - . | tar -C /mnt -xf - ; umount /mnt
</code></pre>
<p dir="auto">via PuTTY I continued to get the same error.  However using MobaXTerm it worked.<br />
Now, my <code>/mnt/sda1</code> directory has a copy of my <code>/overlay</code> directory.</p>
<p dir="auto">So I proceeded with the subsequent steps:</p>
<pre><code>block detect &gt; /etc/config/fstab
</code></pre>
<p dir="auto">Edited <code>/etc/config/fstab</code> to set enabled to <code>'1'</code></p>
<pre><code>reboot
</code></pre>
<p dir="auto">But nothing seems to have changed on my Omega.<br />
Sorry to swamp you with lots of information, but after the reboot, I have:</p>
<p dir="auto">Output from <code>df -h</code></p>
<pre><code>root@Omega-0A97:/# df -h
Filesystem                Size      Used Available Use% Mounted on
rootfs                    8.4M    376.0K      8.1M   4% /
/dev/root                 6.5M      6.5M         0 100% /rom
tmpfs                    29.9M    456.0K     29.4M   1% /tmp
/dev/mtdblock3            8.4M    376.0K      8.1M   4% /overlay
overlayfs:/overlay        8.4M    376.0K      8.1M   4% /
tmpfs                   512.0K         0    512.0K   0% /dev
/dev/sda1                29.2G     44.0M     27.7G   0% /mnt/sda1
root@Omega-0A97:/#
</code></pre>
<p dir="auto">Output from <code>mount</code></p>
<pre><code>root@Omega-0A97:/# mount
rootfs on / type rootfs (rw)
/dev/root on /rom type squashfs (ro,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,noatime)
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,noatime)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,noatime)
/dev/mtdblock3 on /overlay type jffs2 (rw,noatime)
overlayfs:/overlay on / type overlay (rw,noatime,lowerdir=/,upperdir=/overlay/upper,workdir=/overlay/work)
tmpfs on /dev type tmpfs (rw,nosuid,relatime,size=512k,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,mode=600)
/dev/sda1 on /mnt/sda1 type ext4 (rw,relatime,data=ordered)
debugfs on /sys/kernel/debug type debugfs (rw,noatime)
root@Omega-0A97:/#
</code></pre>
<p dir="auto">Contents of <code>/etc/config/fstab</code></p>
<pre><code>root@Omega-0A97:/# cat /etc/config/fstab
config 'global'
        option  anon_swap       '0'
        option  anon_mount      '0'
        option  auto_swap       '1'
        option  auto_mount      '1'
        option  delay_root      '5'
        option  check_fs        '0'

config 'mount'
        option  target  '/mnt/sda1'
        option  uuid    'cad99fb9-c045-467a-b629-3acd4c170ae3'
        option  enabled '1'

root@Omega-0A97:/#
</code></pre>
<p dir="auto">It looks like my USB is not getting mounted on <code>/overlay</code>.</p>
<p dir="auto">Do you see anything wrong?  Is there some step I have missed?  Is there any other info I can supply that might help?</p>
]]></description><link>http://community.onion.io/post/1245</link><guid isPermaLink="true">http://community.onion.io/post/1245</guid><dc:creator><![CDATA[Kit Bishop]]></dc:creator><pubDate>Sun, 29 Nov 2015 21:16:13 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 21:09:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500">@Josip-Mlakar</a> Wiki article is online: <a href="https://wiki.onion.io/Tutorials/How-To-Install-LAMP-Stack-on-the-Omega" rel="nofollow">https://wiki.onion.io/Tutorials/How-To-Install-LAMP-Stack-on-the-Omega</a> <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /> I will put up a separate article for PHPMyAdmin.</p>
]]></description><link>http://community.onion.io/post/1246</link><guid isPermaLink="true">http://community.onion.io/post/1246</guid><dc:creator><![CDATA[Boken Lin]]></dc:creator><pubDate>Sun, 29 Nov 2015 21:09:13 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 21:17:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/19">@Kit-Bishop</a> I think you should change:</p>
<pre><code>config 'mount'
        option  target  '/mnt/sda1'
        option  uuid    'cad99fb9-c045-467a-b629-3acd4c170ae3'
        option  enabled '1'
</code></pre>
<p dir="auto">from <code>/etc/config/fstab</code> to:</p>
<pre><code>config 'mount'
        option  target  '/overlay'
        option  uuid    'cad99fb9-c045-467a-b629-3acd4c170ae3'
        option  enabled '1'
</code></pre>
]]></description><link>http://community.onion.io/post/1247</link><guid isPermaLink="true">http://community.onion.io/post/1247</guid><dc:creator><![CDATA[Boken Lin]]></dc:creator><pubDate>Sun, 29 Nov 2015 21:17:47 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 21:19:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/5">@Boken-Lin</a> cool <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f604.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--smile" title=":D" alt="😄" /></p>
]]></description><link>http://community.onion.io/post/1248</link><guid isPermaLink="true">http://community.onion.io/post/1248</guid><dc:creator><![CDATA[Josip Mlakar]]></dc:creator><pubDate>Sun, 29 Nov 2015 21:19:15 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 21:27:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/5">@Boken-Lin</a> Thanks - had just figured out that something like that was needed - having a slow brain day today <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":-)" alt="🙂" /><br />
That works!<br />
Perhaps this should be made clearer on the bit on editing <strong>/etc/config/fstab</strong> in the WiKi page at <a href="https://wiki.onion.io/Tutorials/Using-USB-Storage-as-Rootfs" rel="nofollow">https://wiki.onion.io/Tutorials/Using-USB-Storage-as-Rootfs</a></p>
]]></description><link>http://community.onion.io/post/1249</link><guid isPermaLink="true">http://community.onion.io/post/1249</guid><dc:creator><![CDATA[Kit Bishop]]></dc:creator><pubDate>Sun, 29 Nov 2015 21:27:35 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 21:37:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/19">@Kit-Bishop</a> Done!</p>
]]></description><link>http://community.onion.io/post/1250</link><guid isPermaLink="true">http://community.onion.io/post/1250</guid><dc:creator><![CDATA[Boken Lin]]></dc:creator><pubDate>Sun, 29 Nov 2015 21:37:35 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 21:39:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/5">@Boken-Lin</a> Cool <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":-)" alt="🙂" /> That was quick.  Thanks for your help</p>
]]></description><link>http://community.onion.io/post/1251</link><guid isPermaLink="true">http://community.onion.io/post/1251</guid><dc:creator><![CDATA[Kit Bishop]]></dc:creator><pubDate>Sun, 29 Nov 2015 21:39:41 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 22:50:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/5">@Boken-Lin</a> ,</p>
<p dir="auto">While adapting <a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500">@Josip-Mlakar</a></a> 's guide to the Wiki, this step was missed.</p>
<p dir="auto">Seems simple enough of a step, but it is assumed the drive is formatted as ext4 in further steps.</p>
<p dir="auto">Thanks for both of yours' work!</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500">@Josip-Mlakar</a></a> said:</p>
<blockquote>
<p dir="auto">To do that you will have to format your USB storage into ext4 filesystem. You can do this by following commands:</p>
<p dir="auto">opkg update<br />
opkg install e2fsprogs<br />
mkfs.ext4 /dev/&lt;your partition&gt;</p>
</blockquote>
]]></description><link>http://community.onion.io/post/1255</link><guid isPermaLink="true">http://community.onion.io/post/1255</guid><dc:creator><![CDATA[Chris MacKay]]></dc:creator><pubDate>Sun, 29 Nov 2015 22:50:58 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Sun, 29 Nov 2015 22:54:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/271">@Chris-MacKay</a> I think I mentioned that somewhere in the prerequisite section.</p>
]]></description><link>http://community.onion.io/post/1256</link><guid isPermaLink="true">http://community.onion.io/post/1256</guid><dc:creator><![CDATA[Boken Lin]]></dc:creator><pubDate>Sun, 29 Nov 2015 22:54:22 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Wed, 02 Dec 2015 19:08:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500">@Josip-Mlakar</a> Great tutorial works like a charm. It only seems that apache isn't autostarting after a boot. Any ways you have solved that one?</p>
]]></description><link>http://community.onion.io/post/1429</link><guid isPermaLink="true">http://community.onion.io/post/1429</guid><dc:creator><![CDATA[Danny van der Sluijs]]></dc:creator><pubDate>Wed, 02 Dec 2015 19:08:36 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Wed, 02 Dec 2015 22:20:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/607">@Danny-van-der-Sluijs</a> well I tried to make file named <code>apache</code> in <code>/etc/init.d</code> with content:</p>
<pre><code>#!/bin/sh /etc/rc.common
START=95
start() {
	apachectl start
}
restart() {
	apachectl restart
}
stop() {
	apachectl stop
}
</code></pre>
<p dir="auto">made it executable with <code>chmod +x /etc/init.d/apache</code><br />
and then executed <code>/etc/init.d/apache enable</code>. It gets enabled and I can start it with <code>/etc/init.d/apache start</code>but script doesen't start on boot <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f61e.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--disappointed" title=":(" alt="😞" /> I'll keep You updated if I find the solution:)</p>
]]></description><link>http://community.onion.io/post/1454</link><guid isPermaLink="true">http://community.onion.io/post/1454</guid><dc:creator><![CDATA[Josip Mlakar]]></dc:creator><pubDate>Wed, 02 Dec 2015 22:20:36 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Wed, 02 Dec 2015 23:07:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500">@Josip-Mlakar</a> Unless I am much mistaken (I'm sure others will correct me if I am :-)) what you need is:</p>
<ul>
<li>A symlink in <strong>/etc/rc.d</strong> named <strong>S95apache</strong> that references your <strong>/etc/init.d/apache</strong> file<br />
Files named like <strong>S&lt;nn&gt;Xxxx</strong> in <strong>/etc/rc.d</strong> are executed in order of the <strong>&lt;nn&gt;</strong> at system boot time as <strong>S&lt;nn&gt;Xxxx start</strong> thus starting the referenced file<br />
Files named like <strong>K&lt;nn&gt;Xxxx</strong> in <strong>/etc/rc.d</strong> are executed in order of the <strong>&lt;nn&gt;</strong> at system shutdown time as <strong>K&lt;nn&gt;Xxxx stop</strong> thus stopping the referenced file</li>
</ul>
<p dir="auto">One small thing I would check though is your use of <strong>START=95</strong> (and corresponding usage of <strong>95</strong> in <strong>S95apache</strong> and <strong>K95apache</strong>) - as far as I can see <strong>95</strong> is currently being used by <strong>/etc/init.d/done</strong> and <strong>/etc/rc.d/S95done</strong> and I am unsure about the effects of resuing the same number.</p>
]]></description><link>http://community.onion.io/post/1456</link><guid isPermaLink="true">http://community.onion.io/post/1456</guid><dc:creator><![CDATA[Kit Bishop]]></dc:creator><pubDate>Wed, 02 Dec 2015 23:07:15 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Wed, 02 Dec 2015 23:46:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/19">@Kit-Bishop</a> Thank You for Your help, but <code>/etc/init.d/apache enable</code> creates symlink automatically. I also tried manual as you stated, but still no luck. Also tried to change START=95 into all kinds of numbers, but nothing works <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f61e.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--disappointed" title=":(" alt="😞" /></p>
]]></description><link>http://community.onion.io/post/1460</link><guid isPermaLink="true">http://community.onion.io/post/1460</guid><dc:creator><![CDATA[Josip Mlakar]]></dc:creator><pubDate>Wed, 02 Dec 2015 23:46:40 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Thu, 03 Dec 2015 00:01:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/500">@Josip-Mlakar</a> Sorry that didn't help - though I didn't see anything in the <strong>/etc/init.d/apache</strong> file you posted for handling <strong>enable</strong> or setting up any symlinks.</p>
<p dir="auto">Just for the record, after some quick testing, i can confirm that the symlinks in <strong>/etc/rc.d</strong> do work as I expected and also that the <strong>START</strong> value (and the <strong>&lt;nn&gt;</strong> values) can be reused - I created a test file in <strong>/etc/init.d</strong> with <strong>START=95</strong> and set up the <strong>S95</strong> and <strong>K95</strong> links which duplicate the <strong>95</strong> used by <strong>/etc/init.d/done</strong> and all worked fine,</p>
]]></description><link>http://community.onion.io/post/1463</link><guid isPermaLink="true">http://community.onion.io/post/1463</guid><dc:creator><![CDATA[Kit Bishop]]></dc:creator><pubDate>Thu, 03 Dec 2015 00:01:53 GMT</pubDate></item><item><title><![CDATA[Reply to Install LAMP, FTP and PhpMyAdmin on your Onion Omega on Thu, 03 Dec 2015 00:27:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://community.onion.io/uid/607">@Danny-van-der-Sluijs</a> I think that's because you have not set Apache server to start automatically on boot. Can you try this:</p>
<p dir="auto">Create a file <code>/etc/init.d/apache</code>, add the following content:</p>
<pre><code>#!/bin/sh /etc/rc.common

START=12

USE_PROCD=1
NAME=apache
PROG=/usr/sbin/apachectl

start_service() {
        procd_open_instance
        procd_set_param command "$PROG" start
        procd_close_instance
}

stop() {
        /usr/sbin/apachectl stop
}

reload() {
        /usr/sbin/apachectl reload
}
</code></pre>
<p dir="auto">Make the file executable:</p>
<pre><code>chmod +x /etc/init.d/apache
</code></pre>
<p dir="auto">Reboot again.</p>
<p dir="auto">Please let me know if this works <img src="http://community.onion.io/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=ic093v0mjao" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>http://community.onion.io/post/1466</link><guid isPermaLink="true">http://community.onion.io/post/1466</guid><dc:creator><![CDATA[Boken Lin]]></dc:creator><pubDate>Thu, 03 Dec 2015 00:27:08 GMT</pubDate></item></channel></rss>