aboutsummaryrefslogtreecommitdiff
path: root/src/docs/Chroot.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs/Chroot.html')
-rw-r--r--src/docs/Chroot.html188
1 files changed, 17 insertions, 171 deletions
diff --git a/src/docs/Chroot.html b/src/docs/Chroot.html
index 6cfa061..c648361 100644
--- a/src/docs/Chroot.html
+++ b/src/docs/Chroot.html
@@ -7,7 +7,8 @@ under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with no
Invariant Sections, with no Front-Cover Texts and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU Free
-Documentation License." -->
+Documentation License."
+ -->
<!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
@@ -21,8 +22,8 @@ Documentation License." -->
<link href="index.html" rel="start" title="Top">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Installation.html" rel="up" title="Installation">
-<link href="System-Configuration.html" rel="next" title="System Configuration">
-<link href="Preparing-Environment.html" rel="prev" title="Preparing Environment">
+<link href="Setting-up-repositories.html" rel="next" title="Setting up repositories">
+<link href="Obtain-the-chroot-helper.html" rel="prev" title="Obtain the chroot helper">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
@@ -56,178 +57,23 @@ Next: <a href="System-Configuration.html" accesskey="n" rel="next">System Config
<p>Chroot into Carbs Linux!
</p>
<div class="example">
-<pre class="example">$ ./cpt-chroot /mnt
+<pre class="example">./cpt-chroot /mnt
</pre></div>
+<table class="menu" border="0" cellspacing="0">
+<tr><td align="left" valign="top">&bull; <a href="Setting-up-repositories.html" accesskey="1">Setting up repositories</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">Basic setup for obtaining repositories
+</td></tr>
+<tr><td align="left" valign="top">&bull; <a href="Updating-packages.html" accesskey="2">Updating packages</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">Update your system
+</td></tr>
+<tr><td align="left" valign="top">&bull; <a href="Installing-packages.html" accesskey="3">Installing packages</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">Install new software on your system
+</td></tr>
+<tr><td align="left" valign="top">&bull; <a href="Essential-Software.html" accesskey="4">Essential Software</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">Software you might want to include on your system
+</td></tr>
+<tr><td align="left" valign="top">&bull; <a href="Obtaining-the-documentation.html" accesskey="5">Obtaining the documentation</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">Install documentation for offline use (optional)
+</td></tr>
+</table>
-<span id="Setting-up-repositories"></span><h4 class="subsection">1.2.1 Setting up repositories</h4>
-
-<p>Newest tarballs do not come with repositories, so you will need to manually
-obtain them, and set your <code>CPT_PATH</code> environment variable. Carbs Linux
-repositories can either be obtained by <code>git</code> or <code>rsync</code>.
-While rsync repositories are overall faster and smaller, git offers the whole
-history of the repository and a means to manipulate your repository as you like
-it. If you want to obtain the git repository, you will need to install
-<code>git</code> itself.
-</p>
-<p>The following guide will assume that you put the repositories into
-<samp>~/repos/</samp> directory, but you can put the repositories into any directory
-you want. So go ahead and create that directory:
-</p>
-<div class="example">
-<pre class="example">$ mkdir -p $HOME/repos
-</pre></div>
-
-
-
-<span id="Obtaining-from-rsync"></span><h4 class="subsubsection">1.2.1.1 Obtaining from rsync</h4>
-
-<p>Carbs Linux rsync repositories live in <a href="rsync://carbslinux.org/repo">rsync://carbslinux.org/repo</a>. In
-order to obtain it, run the following:
-</p>
-<div class="example">
-<pre class="example">$ rsync -avc rsync://carbslinux.org/repo $HOME/repos/carbs
-</pre></div>
-
-
-
-<span id="Obtaining-from-git"></span><h4 class="subsubsection">1.2.1.2 Obtaining from git</h4>
-
-<p>Carbs Linux git repositories can be found both from the main server and GitHub
-(mirror). Here are both their repository links. You can clone any of them.
-</p>
-<ul>
-<li> <a href="git://git.carbslinux.org/repository">git://git.carbslinux.org/repository</a>
-</li><li> <a href="https://github.com/carbslinux/repository">https://github.com/carbslinux/repository</a>
-</li></ul>
-
-<div class="example">
-<pre class="example">$ git clone git://git.carbslinux.org/repository $HOME/repos/carbs
-</pre></div>
-
-
-
-<span id="Making-the-package-manager-use-the-repositories"></span><h4 class="subsubsection">1.2.1.3 Making the package manager use the repositories</h4>
-
-<p>In your shell&rsquo;s configuration file, or in your <samp>~/.profile</samp> file, add the
-following lines:
-</p>
-<div class="example">
-<pre class="example">export CPT_PATH=''
-CPT_PATH=$CPT_PATH:$HOME/repos/carbs/core
-CPT_PATH=$CPT_PATH:$HOME/repos/carbs/extra
-CPT_PATH=$CPT_PATH:$HOME/repos/carbs/xorg
-CPT_PATH=$CPT_PATH:$HOME/repos/carbs/community
-export CPT_PATH
-</pre></div>
-
-
-
-<span id="Updating-packages"></span><h4 class="subsection">1.2.2 Updating packages</h4>
-
-<p>It is good practice to make sure your system is up to date, especially before
-building new packages. If there is an update for the package manager you will
-need to update twice.
-</p>
-<div class="example">
-<pre class="example">$ cpt update
-</pre></div>
-
-
-
-<span id="Installing-packages"></span><h4 class="subsection">1.2.3 Installing packages</h4>
-
-<p>Since you are operating on a really small base, you might need to build and
-install new programs to extend the functionality of your system. In order to
-build and install packages new packages in Carbs, you need to execute the
-following. &ldquo;Package&rdquo; is not actually a package and is given as an example.
-</p>
-<div class="example">
-<pre class="example">$ cpt build package
-$ cpt install package
-</pre></div>
-
-
-
-<span id="Essential-Software"></span><h4 class="subsection">1.2.4 Essential Software</h4>
-
-<p>Here is a list of software that you might want to have on your system.
-</p>
-<p>BOOTLOADERS
-</p><ul>
-<li> efibootmgr
-</li><li> grub
-</li></ul>
-<p>FILESYSTEMS
-</p><ul>
-<li> e2fsprogs
-</li><li> dosfstools
-</li><li> ntfs-3g
-</li></ul>
-<p>NETWORKING
-</p><ul>
-<li> dhcpcd
-</li><li> wpa_supplicant
-</li></ul>
-<p>TEXT EDITORS
-</p><ul>
-<li> nano
-</li><li> vim
-</li><li> neatvi
-</li><li> nvi
-</li><li> emacs
-</li><li> emacs-nox (terminal-only version of emacs)
-</li></ul>
-<p>USER SHELLS
-</p><ul>
-<li> bash
-</li><li> zsh
-</li><li> dash
-</li><li> oksh
-</li><li> rc
-</li></ul>
-<p>POSIX BASE UTILITIES
-</p><ul>
-<li> busybox
-</li><li> sbase
-</li><li> coreutils
-</li></ul>
-<p>DOCUMENTATION
-</p><ul>
-<li> carbs-docs
-</li><li> man-pages
-</li><li> man-pages-posix
-</li></ul>
-
-
-
-<span id="Obtaining-the-documentation-_0028optional_0029"></span><h4 class="subsection">1.2.5 Obtaining the documentation (optional)</h4>
-
-<p>All the documentation for Carbs Linux can be found on a single info manual to be
-viewed offline. You can obtain texinfo or the info (standalone) package in order
-to view the documentation.
-</p>
-<div class="example">
-<pre class="example">Install the documentation.
-$ cpt b carbs-docs &amp;&amp; cpt i carbs-docs
-
-Install either texinfo or the info package. We will be installing standalone info
-as it doesn't need perl.
-$ cpt b info &amp;&amp; cpt i info
-
-You can then run info and navigate through the documentation.
-$ info carbslinux
-</pre></div>
-
-
-
-<hr>
-<div class="header">
-<p>
-Next: <a href="System-Configuration.html" accesskey="n" rel="next">System Configuration</a>, Previous: <a href="Preparing-Environment.html" accesskey="p" rel="prev">Preparing Environment</a>, Up: <a href="Installation.html" accesskey="u" rel="up">Installation</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p>
-</div>
-
</body>