aboutsummaryrefslogtreecommitdiff
path: root/build/jekyll/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'build/jekyll/index.html')
-rw-r--r--build/jekyll/index.html92
1 files changed, 92 insertions, 0 deletions
diff --git a/build/jekyll/index.html b/build/jekyll/index.html
new file mode 100644
index 0000000..6687d43
--- /dev/null
+++ b/build/jekyll/index.html
@@ -0,0 +1,92 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="color-scheme" content="dark light">
+ <link rel="icon" href="data:,">
+ <title>Setup Jekyll from Scratch on a New Linux System</title>
+ <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
+ <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
+<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}blockquote{background:rgba(0,0,0,0.1);border-left:4px solid;padding-left:5px;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
+</head>
+
+<nav>
+ <a href="#menu">Menu &darr;</a>
+</nav>
+
+<main>
+<h1 id="setup-jekyll-from-scratch-on-a-new-linux-system">Setup Jekyll from Scratch on a New Linux System</h1>
+<p>2022-09-19</p>
+<p><strong>Special Note:</strong> Credit needs to be given to user <a href="https://stackoverflow.com/users/4974784/achraf-jeday">Achraf JEDAY</a> for putting these instructions together on Stack Overflow (although his comments were targeting an older version of Ruby). This post is more for my own personal notes than anything else.</p>
+<p>I find myself constantly running into small issues when trying to setup existing Jekyll projects on new Linux systems. I <em>could</em> use something like Docker, but that just seems so beefy and slow to me. So here is a step-by-step way (and foolproof from my own testing) to get Jekyll running smoothly in no time!</p>
+<h2 id="figuring-out-ruby-first">Figuring out Ruby First</h2>
+<p>The first item of business is removing the default Ruby that ships with most Linux distros:</p>
+<pre><code>sudo apt-get remove ruby
+</code></pre>
+<p>Then we check for updates and install everything we need:</p>
+<pre><code>sudo apt update
+sudo apt install git curl libssl-dev libreadline-dev zlib1g-dev autoconf bison build-essential libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev
+</code></pre>
+<p>Now we can install <code>rbenv</code> and <code>ruby-build</code>:</p>
+<pre><code>curl -sL https:&#47;&#47;github.com&#47;rbenv&#47;rbenv-installer&#47;raw&#47;main&#47;bin&#47;rbenv-installer | bash -
+</code></pre>
+<p>After both of those install, you will want to add those to your system <strong>PATH</strong>:</p>
+<h3 id="bash">Bash</h3>
+<pre><code>echo &#39;export PATH="$HOME&#47;.rbenv&#47;bin:$PATH"&#39; &#62;&#62; ~&#47;.bashrc
+echo &#39;eval "$(rbenv init -)"&#39; &#62;&#62; ~&#47;.bashrc
+source ~&#47;.bashrc
+</code></pre>
+<h3 id="zsh">ZSH</h3>
+<pre><code>echo &#39;export PATH="$HOME&#47;.rbenv&#47;bin:$PATH"&#39; &#62;&#62; ~&#47;.zshrc
+echo &#39;eval "$(rbenv init -)"&#39; &#62;&#62; ~&#47;.zshrc
+source ~&#47;.zshrc
+</code></pre>
+<p>With that complete, we can now install the version of Ruby we wish to use and set it globally (at this time of writing it is <code>3.1.2</code>):</p>
+<pre><code>rbenv install 3.1.2
+rbenv global 3.1.2
+</code></pre>
+<p>And <code>rehash</code> so our changes take:</p>
+<pre><code>rbenv rehash
+</code></pre>
+<p>Now you should see the properly set Ruby version when you run the following:</p>
+<pre><code>ruby -v
+</code></pre>
+<h2 id="getting-ruby-gems">Getting Ruby Gems</h2>
+<p>In case you don&#8217;t have it installed already, be sure to grab <code>rubygems</code>:</p>
+<pre><code>sudo apt install rubygems
+</code></pre>
+<h2 id="running-jekyll">Running Jekyll</h2>
+<p>We are almost done! Navigate to your Jekyll project&#8217;s directory and run:</p>
+<pre><code>gem install jekyll bundler
+bundle install
+</code></pre>
+<p>That&#8217;s it! Now if you run <code>bundle exec jekyll serve</code> you&#8217;ll find your Jekyll project running locally! Hopefully this helps others when needing to port any Jekyll projects over to a new Linux system. I know it will save me time!</p>
+<h2 id="alpine-linux-on-wayland">Alpine Linux on Wayland</h2>
+<p>Save yourself a world of trouble: just use <code>docker</code>. The docker image below (jekyll-serve) works out-of-the-box:</p>
+<p><a href="https://github.com/BretFisher/jekyll-serve">https:&#47;&#47;github.com&#47;BretFisher&#47;jekyll-serve</a></p>
+<p>Then run the following inside your project:</p>
+<pre><code>docker run -p 4000:4000 -v $(pwd):&#47;site bretfisher&#47;jekyll-serve
+</code></pre>
+<footer role="contentinfo">
+ <h2>Menu Navigation</h2>
+ <ul id="menu">
+ <li><a href="/">Home</a></li>
+ <li><a href="/projects">Projects</a></li>
+ <li><a href="/uses">Uses</a></li>
+ <li><a href="/wiki">Wiki</a></li>
+ <li><a href="/resume">Resume</a></li>
+ <li><a href="/colophon">Colophon</a></li>
+ <li><a href="/now">Now</a></li>
+ <li><a href="/donate">Donate</a></li>
+ <li><a href="/atom.xml">RSS</a></li>
+ <li><a href="#top">&uarr; Top of the page</a></li>
+ </ul>
+ <small>
+ Built with <a href="https://barf.btxx.org">barf</a>. <br>
+ Feeds: <a href="/atom.xml">Atom</a> & <a href="/rss.xml">RSS</a><br>
+ Maintained with ♥ for the web. <br>
+ Proud supporter of <a href="https://usefathom.com/ref/DKHJVX">Fathom</a> &amp; <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a>. <br>
+ The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/bt.ht">code for this site</a> is <a href="https://git.sr.ht/~bt/bt.ht/tree/master/item/LICENSE">MIT</a>.
+ </small>
+</footer> \ No newline at end of file