Site updates for the 07-Feb-2015 release.

This commit is contained in:
Ivan Davidov 2015-02-07 21:37:30 +02:00
parent b0abfba526
commit 1dff16fb77

View File

@ -1,298 +1,317 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Minimal Linux Live" /> <meta name="description" content="Minimal Linux Live" />
<meta name="keywords" content="minimal linux live tutorial kernel busybox cd usb iso image" /> <meta name="keywords" content="minimal minimalistic tiny linux live tutorial howto kernel busybox cd usb iso image" />
<meta name="author" content="Ivan Davidov - davidov (dot) i [at] gmail {dot} com" /> <meta name="author" content="Ivan Davidov - davidov (dot) i [at] gmail {dot} com" />
<title>Minimal Linux Live</title> <title>Minimal Linux Live</title>
<link rel="stylesheet" type="text/css" href="style.css"/> <link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="icon" type="image/x-icon" href="/favicon.ico" /> <link rel="icon" type="image/x-icon" href="/favicon.ico" />
<script language="JavaScript" type="text/javascript"> <script language="JavaScript" type="text/javascript">
function menuSwap(itemIndex) { function menuSwap(itemIndex) {
for(var i = 1; i <= 5; i++) { for(var i = 1; i <= 5; i++) {
var strItem = "item" + i; var strItem = "item" + i;
var objItem = document.getElementById(strItem); var objItem = document.getElementById(strItem);
objItem.style.display = (i == itemIndex) ? "block" : "none"; objItem.style.display = (i == itemIndex) ? "block" : "none";
} }
} }
function logSwap(itemIndex, show) { function logSwap(itemIndex, show) {
for(var i = 1; i <= 2; i++) { for(var i = 1; i <= 3; i++) {
var showObj = document.getElementById("show" + i); var showObj = document.getElementById("show" + i);
var hideObj = document.getElementById("hide" + i); var hideObj = document.getElementById("hide" + i);
var textObj = document.getElementById("text" + i); var textObj = document.getElementById("text" + i);
if(i == itemIndex) { if(i == itemIndex) {
if(show == true) { if(show == true) {
showObj.style.display = "none"; showObj.style.display = "none";
hideObj.style.display = "block"; hideObj.style.display = "block";
textObj.style.display = "block"; textObj.style.display = "block";
} else { } else {
showObj.style.display = "block"; showObj.style.display = "block";
hideObj.style.display = "none"; hideObj.style.display = "none";
textObj.style.display = "none"; textObj.style.display = "none";
} }
} else if(show == true) { } else if(show == true) {
showObj.style.display = "block"; showObj.style.display = "block";
hideObj.style.display = "none"; hideObj.style.display = "none";
textObj.style.display = "none"; textObj.style.display = "none";
} }
} }
} }
</script> </script>
</head> </head>
<body> <body>
<div id="container"> <div id="container">
<div id="header"> <div id="header">
<a href="/">Minimal Linux Live</a> <a href="/">Minimal Linux Live</a>
</div> </div>
<div id="menu"> <div id="menu">
<a href="#" onclick="javascript:menuSwap(1); return false;">Home</a> &nbsp;&nbsp;&nbsp; <a href="#" onclick="javascript:menuSwap(1); return false;">Home</a> &nbsp;&nbsp;&nbsp;
<a href="#" onclick="javascript:menuSwap(2); return false;">Changes</a> &nbsp;&nbsp;&nbsp; <a href="#" onclick="javascript:menuSwap(2); return false;">Changes</a> &nbsp;&nbsp;&nbsp;
<a href="#" onclick="javascript:menuSwap(3); return false;">About</a> &nbsp;&nbsp;&nbsp; <a href="#" onclick="javascript:menuSwap(3); return false;">About</a> &nbsp;&nbsp;&nbsp;
<a href="#" onclick="javascript:menuSwap(4); return false;">Tutorial</a> &nbsp;&nbsp;&nbsp; <a href="#" onclick="javascript:menuSwap(4); return false;">Tutorial</a> &nbsp;&nbsp;&nbsp;
<a href="#" onclick="javascript:menuSwap(5); return false;">Download</a> <a href="#" onclick="javascript:menuSwap(5); return false;">Download</a>
</div> </div>
<div id="main"> <div id="main">
<div id="item1" style="display:block;"> <div id="item1" style="display:block;">
<div id="text"> <div id="text">
<h2>Home Page</h2> <h2>Home Page</h2>
<p> <p>
<b>Minimal Linux Live</b> is a set of Linux shell scripts which automatically build minimal Live <b>Minimal Linux Live</b> is a set of Linux shell scripts which automatically build minimal Live
Linux OS based on <a target="_blank" href="http://kernel.org">Linux kernel</a> Linux OS based on <a target="_blank" href="http://kernel.org">Linux kernel</a>
and <a target="_blank" href="http://busybox.net">BusyBox</a>. All necessary source codes are automatically and <a target="_blank" href="http://busybox.net">BusyBox</a>. All necessary source codes are automatically
downloaded and all build operations are fully encapsulated in the scripts. downloaded and all build operations are fully encapsulated in the scripts.
</p> </p>
<p> <p>
If you want to build your own Minimal Linux Live ISO image file, all you need to do is the following: If you want to build your own Minimal Linux Live ISO image file, all you need to do is the following:
</p> </p>
<p> <p>
<ul> <ul>
<li> <li>
Get the latest scripts from the <a href="#" onclick="javascript:menuSwap(5); return false;">download</a> section. Get the latest scripts from the <a href="#" onclick="javascript:menuSwap(5); return false;">download</a> section.
</li> </li>
<li> <li>
Extract the scripts to some folder. Extract the scripts to some folder.
</li> </li>
<li> <li>
Just for convenience, make sure that all scripts are executable (chmod +x *.sh). If you decide to skip this step you Just for convenience, make sure that all scripts are executable (chmod +x *.sh). If you decide to skip this step you
can still run the scripts like this (example): <i>sh build_minimal_linux_live.sh</i> can still run the scripts like this (example): <i>sh build_minimal_linux_live.sh</i>
</li> </li>
<li> <li>
Depending on which Linux OS you are using, there might be one or more (or none, or even more) build dependencies that you Depending on which Linux OS you are using, there might be one or more (or none, or even more) build dependencies that you
need to resolve before you start the build process. If you work with <a target="_blank" href="http://ubuntu.com">Ubuntu</a>, need to resolve before you start the build process. If you work with <a target="_blank" href="http://ubuntu.com">Ubuntu</a>,
the following commands should resolve all necessary build dependencies: the following commands should resolve all necessary build dependencies:
<ul> <ul>
<li> <li>
sudo apt-get install wget sudo apt-get install wget
</li> </li>
<li> <li>
sudo apt-get install make sudo apt-get install make
</li> </li>
<li> <li>
sudo apt-get install gcc sudo apt-get install gcc
</li> </li>
<li> <li>
sudo apt-get install bc sudo apt-get install bc
</li> </li>
<li> <li>
sudo apt-get install syslinux sudo apt-get install syslinux
</li> </li>
<li> <li>
sudo apt-get install genisoimage sudo apt-get install genisoimage
</li> </li>
</ul> </ul>
<br /> <br />
</li> </li>
<li> <li>
Execute the script <b>build_minimal_linux_live.sh</b> and wait. If you have resolved all build dependencies, the whole Execute the script <b>build_minimal_linux_live.sh</b> and wait. If you have resolved all build dependencies, the whole
process should take less than 30 minutes on a modern computer. If the build fails for some reason, most probably there process should take less than 30 minutes on a modern computer. If the build fails for some reason, most probably there
are unresolved build dependencies. Several users reported that the <i>build-essential</i> package resolves all unexpected are unresolved build dependencies. Several users reported that the <i>build-essential</i> package resolves all unexpected
build dependencies for Ubuntu. If you are using <a target="_blank" href="http://linuxmint.com">Linux Mint</a> try to build dependencies for Ubuntu. If you are using <a target="_blank" href="http://linuxmint.com">Linux Mint</a> try to
install the package <i>g++</i> and if you still have troubles then try the <i>build-essential</i> package. On install the package <i>g++</i> and if you still have troubles then try the <i>build-essential</i> package. On
<a target="_blank" href="http://fedoraproject.org">Fedora</a> you might need the static 'glibc' package <i>glibc-static</i>. <a target="_blank" href="http://fedoraproject.org">Fedora</a> you might need the static 'glibc' package <i>glibc-static</i>.
<p /> On <a target="_blank" href="http://www.archlinux.org/">Arch Linux</a> you might need to locate <i>isolinux.bin</i> and copy
Please have in mind that the build dependencies can vary a lot depending on the Linux OS which you use and the software it to <i>/usr/lib/syslinux/syslinux.bin</i>.
which you have already installed. <p />
<p /> Please have in mind that the build dependencies can vary a lot depending on the Linux OS which you use and the software
If you still have troubles then examine the failure message and google it. If you are unable to find solution, then you which you have already installed.
can ask someone more experienced Linux guru (if you know any) or as alternative you can contact me. Please, make sure that <p />
you have researched your problem in advance before you send me your question. If you still have troubles then examine the failure message and google it. If you are unable to find solution, then you
</li> can ask someone more experienced Linux guru (if you know any) or as alternative you can contact me. Please, make sure that
<li> you have researched your problem in advance before you send me your question.
When the scripts finish their job you will find newly created <b>minimal_linux_live.iso</b> in the same folder where you </li>
executed the scripts. You can burn the ISO image file on CD/DVD, install it on USB flash drive via <li>
<a target="_blank" href="http://www.pendrivelinux.com">Universal USB Installer</a>, When the scripts finish their job you will find newly created <b>minimal_linux_live.iso</b> in the same folder where you
or run it directly via PC emulator like <a target="_blank" href="http://virtualbox.org">VirtualBox</a>. executed the scripts. You can burn the ISO image file on CD/DVD, install it on USB flash drive via
</li> <a target="_blank" href="http://www.pendrivelinux.com">Universal USB Installer</a>,
</ul> or run it directly via PC emulator like <a target="_blank" href="http://virtualbox.org">VirtualBox</a>.
</p> </li>
<p> </ul>
The produced ISO image file contains Linux kernel compiled with default options, BusyBox compiled with default options and very simple </p>
initramfs. This means that you don't get Windows support out of the box, nor you get any fancy desktop environment. All you <p>
get is a simple shell console which supports all BusyBox applets and... well, that's all. This is why it's called "minimal". The produced ISO image file contains Linux kernel compiled with default options, BusyBox compiled with default options and very simple
</p> initramfs. This means that you don't get Windows support out of the box, nor you get any fancy desktop environment. All you
<p> get is a simple shell console which supports all BusyBox applets and... well, that's all. This is why it's called "minimal".
The good news is that even though the OS is small and simple, the build scripts are also very small and very simple. You can </p>
quite easily learn from the scripts and later modify them to include more stuff (I encourage you to do so). After you learn <p>
the basics you will have all the necessary tools and skills to create your own fully functional Linux based operating system! The good news is that even though the OS is small and simple, the build scripts are also very small and very simple. You can
Entirely from scratch! Isn't it great?! :) quite easily learn from the scripts and later modify them to include more stuff (I encourage you to do so). After you learn
</p> the basics you will have all the necessary tools and skills to create your own fully functional Linux based operating system!
<p> Entirely from scratch! Isn't it great?! :)
The <a href="#" onclick="javascript:menuSwap(4); return false;">tutorial</a> provides more details about the inner structure </p>
of the scripts and the overall build process. I encourage you to go through this document when you have the time. <p>
</p> The <a href="#" onclick="javascript:menuSwap(4); return false;">tutorial</a> provides more details about the inner structure
<p> of the scripts and the overall build process. I encourage you to go through this document when you have the time.
Below you can find several screenshots which show what the environment looks like when you boot your newly generated </p>
Minimal Linux Live OS. <p>
</p> Below you can find several screenshots which show what the environment looks like when you boot your newly generated
<p> Minimal Linux Live OS.
<img alt="Minimal Linux Live" id="screenshot1" width="100%" height="100%" border="0" src="./images/screen1.png" /> </p>
</p> <p>
<p> <img alt="Minimal Linux Live" id="screenshot1" width="100%" height="100%" border="0" src="./images/screen1.png" />
<img alt="Minimal Linux Live" id="screenshot2" width="100%" height="100%" border="0" src="./images/screen2.png" /> </p>
</p> <p>
<p> <img alt="Minimal Linux Live" id="screenshot2" width="100%" height="100%" border="0" src="./images/screen2.png" />
<img alt="Minimal Linux Live" id="screenshot3" width="100%" height="100%" border="0" src="./images/screen3.png" /> </p>
</p> <p>
</div> <img alt="Minimal Linux Live" id="screenshot3" width="100%" height="100%" border="0" src="./images/screen3.png" />
</div> </p>
<div id="item2" style="display:none;"> </div>
<div id="text"> </div>
<h2>Change Log</h2> <div id="item2" style="display:none;">
<p> <div id="text">
<div id="show2" style="display:none;"> <h2>Change Log</h2>
<b>25-Aug-2014</b> <p>
<a href="#" onclick="javascript:logSwap(2, true); return false;">show</a> <div id="show3" style="display:none;">
</div> <b>07-Feb-2015</b>
<div id="hide2" style="display:block;"> <a href="#" onclick="javascript:logSwap(3, true); return false;">show</a>
<b>25-Aug-2014</b> </div>
<a href="#" onclick="javascript:logSwap(2, false); return false;">hide</a> <div id="hide3" style="display:block;">
</div> <b>07-Feb-2015</b>
<div id="text2" style="display:block;"> <a href="#" onclick="javascript:logSwap(3, false); return false;">hide</a>
<ul> </div>
<li> <div id="text3" style="display:block;">
<b>Minimal Linux Live</b> is now based on <b>Linux kernel 3.16.1</b> and <b>BusyBox 1.22.1</b>. <ul>
</li> <li>
<li> <b>Minimal Linux Live</b> is now based on <b>Linux kernel 3.18.6</b> and <b>BusyBox 1.23.1</b>.
The boot process is now based on <b>/sbin/init</b> and <b>/etc/inittab</b>. There are four </li>
available consoles which can be switched with <b>Alt + F1</b> up to <b>Alt + F4</b>. </ul>
</li> </div>
<li> </p>
Shell scripts have been updated. Now the downloaded source bundles are stored in separate folder. <p>
If the download process is interrupted, it will continue the next time the scripts are executed. <div id="show2" style="display:block;">
The most notable change is in <b>5_generate_rootfs.sh</b> which now generates root file system with <b>25-Aug-2014</b>
structure compatible with <b>/sbin/init</b> and <b>/etc/inittab</b>. <a href="#" onclick="javascript:logSwap(2, true); return false;">show</a>
</li> </div>
</ul> <div id="hide2" style="display:none;">
</div> <b>25-Aug-2014</b>
</p> <a href="#" onclick="javascript:logSwap(2, false); return false;">hide</a>
<p> </div>
<div id="show1" style="display:block;"> <div id="text2" style="display:none;">
<b>28-Jul-2014</b> <ul>
<a href="#" onclick="javascript:logSwap(1, true); return false;">show</a> <li>
</div> <b>Minimal Linux Live</b> is now based on <b>Linux kernel 3.16.1</b> and <b>BusyBox 1.22.1</b>.
<div id="hide1" style="display:none;"> </li>
<b>28-Jul-2014</b> <li>
<a href="#" onclick="javascript:logSwap(1, false); return false;">hide</a> The boot process is now based on <b>/sbin/init</b> and <b>/etc/inittab</b>. There are four
</div> available consoles which can be switched with <b>Alt + F1</b> up to <b>Alt + F4</b>.
<div id="text1" style="display:none;"> </li>
<ul> <li>
<li> Shell scripts have been updated. Now the downloaded source bundles are stored in separate folder.
<b>Minimal Linux Live</b> is now based on <b>Linux kernel 3.15.6</b> and <b>BusyBox 1.22.1</b>. If the download process is interrupted, it will continue the next time the scripts are executed.
</li> The most notable change is in <b>5_generate_rootfs.sh</b> which now generates root file system with
<li> structure compatible with <b>/sbin/init</b> and <b>/etc/inittab</b>.
The boot process is based on simple <b>/init</b> script. </li>
</li> </ul>
</ul> </div>
</div> </p>
</p> <p>
</div> <div id="show1" style="display:block;">
</div> <b>28-Jul-2014</b>
<div id="item3" style="display:none;"> <a href="#" onclick="javascript:logSwap(1, true); return false;">show</a>
<div id="text"> </div>
<h2>About This Project</h2> <div id="hide1" style="display:none;">
<p> <b>28-Jul-2014</b>
My name is <a target="_blank" href="http://linkedin.com/in/ivandavidov">Ivan Davidov</a> and I currently <a href="#" onclick="javascript:logSwap(1, false); return false;">hide</a>
live and work in </div>
<a target="_blank" href="http://en.wikipedia.org/wiki/Sofia">Sofia</a>, <div id="text1" style="display:none;">
<a target="_blank" href="http://en.wikipedia.org/wiki/Bulgaria">Bulgaria</a>. <ul>
</p> <li>
<p> <b>Minimal Linux Live</b> is now based on <b>Linux kernel 3.15.6</b> and <b>BusyBox 1.22.1</b>.
I am professional Java software engineer (yes, Java developers tend to know some Linux stuff) and I've </li>
been trying to create my own Linux OS for a very long time. There are some good tutorials which you <li>
can find online but almost none of them are simple to follow and almost none of them explain in details The boot process is based on simple <b>/init</b> script.
what has been done and why it's done in this particular way. In most cases the tutorials are incomplete and </li>
there is high chance that you end up with something broken. </ul>
</p> </div>
<p> </p>
Don't get me wrong, you can learn a lot from these tutorials, as I did. In fact the scripts which I created </div>
(did you take a look at them?) are based on the same information resources which you might have already found. </div>
The difference is that this site provides you not only with detailed tutorial, but also with fully functional <div id="item3" style="display:none;">
set of shell scripts which automatically build fully functional live Linux OS. And the tutorial explains it <div id="text">
all for you! <h2>About This Project</h2>
</p> <p>
<p> My name is <a target="_blank" href="http://linkedin.com/in/ivandavidov">Ivan Davidov</a> and I currently
If you'd like to contact me, my e-mail is: <b>davidov [dot] i (at) gmail {dot} com</b> live and work in
</p> <a target="_blank" href="http://en.wikipedia.org/wiki/Sofia">Sofia</a>,
<p> <a target="_blank" href="http://en.wikipedia.org/wiki/Bulgaria">Bulgaria</a>.
My LinkedIn profile is here: <a target="_blank" href="http://linkedin.com/in/ivandavidov">http://linkedin.com/in/ivandavidov</a> </p>
</p> <p>
</div> I am professional Java software engineer (yes, Java developers tend to know some Linux stuff) and I've
</div> been trying to create my own Linux OS for a very long time. There are some good tutorials which you
<div id="item4" style="display:none;"> can find online but almost none of them are simple to follow and almost none of them explain in details
<div id="text"> what has been done and why it's done in this particular way. In most cases the tutorials are incomplete and
<h2>Minimal Linux Live Tutorial</h2> there is high chance that you end up with something broken.
<p> </p>
Would you like to learn how to build your own minimal live Linux OS? <p>
</p> Don't get me wrong, you can learn a lot from these tutorials, as I did. In fact the scripts which I created
<p> (did you take a look at them?) are based on the same information resources which you might have already found.
<a target="_blank" href="./the_dao_of_minimal_linux_live.txt">The Dao of Minimal Linux Live</a> explains in details The difference is that this site provides you not only with detailed tutorial, but also with fully functional
what steps are involved in creating simple live Linux OS entirely from scratch, the inner structure of the set of shell scripts which automatically build fully functional live Linux OS. And the tutorial explains it
build scripts (I assume you have already downloaded them) and provides you with more information on how to all for you!
improve/upgrade the generated OS with other generic stuff (e.g. users &amp; groups, /etc/inittab). </p>
</p> <p>
</div> If you'd like to contact me, my e-mail is: <b>davidov [dot] i (at) gmail {dot} com</b>
</div> </p>
<div id="item5" style="display:none;"> <p>
<div id="text"> My LinkedIn profile is here: <a target="_blank" href="http://linkedin.com/in/ivandavidov">http://linkedin.com/in/ivandavidov</a>
<h2>Download Section</h2> </p>
<p> </div>
The latest stable scripts (25-Aug-2014) can be downloaded as ZIP archive </div>
<a href="./download/minimal_linux_live_25-Aug-2014_src.zip" title="Minimal Linux Live - shell scripts">here</a>. <div id="item4" style="display:none;">
</p> <div id="text">
<p> <h2>Minimal Linux Live Tutorial</h2>
Pre-built ISO image files generated with the latest stable scripts are available for <p>
<a href="./download/minimal_linux_live_25-Aug-2014_32-bit.iso" title="Minimal Linux Live - ISO image file for 32-bit CPUs">32-bit</a> Would you like to learn how to build your own minimal live Linux OS?
and </p>
<a href="./download/minimal_linux_live_25-Aug-2014_64-bit.iso" title="Minimal Linux Live - ISO image file for 64-bit CPUs">64-bit</a> <p>
CPUs. <a target="_blank" href="./the_dao_of_minimal_linux_live.txt">The Dao of Minimal Linux Live</a> explains in details
</p> what steps are involved in creating simple live Linux OS entirely from scratch, the inner structure of the
<p> build scripts (I assume you have already downloaded them) and provides you with more information on how to
You can also <a target="_blank" href="./download">browse the download directory</a>. improve/upgrade the generated OS with other generic stuff (e.g. users &amp; groups, /etc/inittab).
</p> </p>
<p> </div>
You can take a look at the latest development sources in </div>
<a target="_blank" href="http://github.com/ivandavidov/minimal">GitHub</a>. <div id="item5" style="display:none;">
</p> <div id="text">
</div> <h2>Download Section</h2>
</div> <p>
<div class="clear"></div> The latest stable scripts (07-Feb-2015) can be downloaded as ZIP archive
</div> <a href="./download/minimal_linux_live_07-Feb-2015_src.zip" title="Minimal Linux Live - shell scripts">here</a>.
<div id="footer"> </p>
Copyright &copy;2014 <p>
<span class="separator">|</span> Pre-built ISO image files generated with the latest stable scripts are available for
<a href="/" title="Minimal Linux Live">Minimal Linux Live</a> <a href="./download/minimal_linux_live_07-Feb-2015_32-bit.iso" title="Minimal Linux Live - ISO image file for 32-bit CPUs">32-bit</a>
</div> and
</div> <a href="./download/minimal_linux_live_07-Feb-2015_64-bit.iso" title="Minimal Linux Live - ISO image file for 64-bit CPUs">64-bit</a>
<script> CPUs.
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ </p>
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), <p>
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) You can also <a target="_blank" href="./download">browse the download directory</a>.
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); </p>
ga('create', 'UA-53254151-1', 'auto'); <p>
ga('send', 'pageview'); You can take a look at the latest development sources in
</script> <a target="_blank" href="http://github.com/ivandavidov/minimal">GitHub</a>.
</body> </p>
</html> </div>
</div>
<div class="clear"></div>
</div>
<div id="footer">
Copyright &copy;2015
<span class="separator">|</span>
<a href="/" title="Minimal Linux Live">Minimal Linux Live</a>
</div>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-53254151-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>