added trick about increasing the swap size on raspberry
[www.git] / www / tricks / raspberry_pi3_increase_swap_size.html
diff --git a/www/tricks/raspberry_pi3_increase_swap_size.html b/www/tricks/raspberry_pi3_increase_swap_size.html
new file mode 100644 (file)
index 0000000..e140845
--- /dev/null
@@ -0,0 +1,69 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<meta name="generator" content="Asciidoctor 0.1.4">
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
+<title>Raspberry PI increase swap size</title>
+<link rel="stylesheet" href="./../style.css">
+<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.2.1/css/font-awesome.min.css">
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
+<script src="../nav.js"></script>
+</head>
+<body class="article">
+<div id="header">
+<h1>Raspberry PI increase swap size</h1>
+</div>
+<div id="content">
+<div id="preamble">
+<div class="sectionbody">
+<div class="olist arabic">
+<ol class="arabic">
+<li>
+<p>Stop the swap</p>
+</li>
+</ol>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>dphys-swapfile swapoff</pre>
+</div>
+</div>
+<div class="olist arabic">
+<ol class="arabic">
+<li>
+<p>Modify the size of the swap</p>
+</li>
+</ol>
+</div>
+<div class="paragraph">
+<p>As <code>root</code>, edit the file <code>/etc/dphys-swapfile</code> and modify
+the variable <code>dphys-swapfile</code>:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>CONF_SWAPSIZE=1024</pre>
+</div>
+</div>
+<div class="olist arabic">
+<ol class="arabic">
+<li>
+<p>Start the swap</p>
+</li>
+</ol>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>dphys-swapfile swapon</pre>
+</div>
+</div>
+</div>
+</div>
+</div>
+<div id="footer">
+<div id="footer-text">
+Last updated 2016-12-21 23:53:00 UTC
+</div>
+</div>
+</body>
+</html>
\ No newline at end of file