diff options
author | Patrick McDermott <pehjota> | 2019-04-28 17:48:14 (EDT) |
---|---|---|
committer | Patrick McDermott <pehjota> | 2019-04-28 17:48:14 (EDT) |
commit | 666e8b44d64bba5c81fd86f24752df447a3f7642 (patch) | |
tree | 12c2367300b0fbc6456b07e758b8c2f46d11a6b4 /doc | |
parent | f1cf3da4fd692746a9664b4b03adb9c821e3468e (diff) |
doc/install/jail: Rename to doc/install/chroot
Diffstat (limited to 'doc')
-rw-r--r-- | doc/install.mdwn | 2 | ||||
-rw-r--r-- | doc/install/chroot.mdwn | 45 | ||||
-rw-r--r-- | doc/install/jail.mdwn | 44 |
3 files changed, 47 insertions, 44 deletions
diff --git a/doc/install.mdwn b/doc/install.mdwn index 45b9c8d..533040b 100644 --- a/doc/install.mdwn +++ b/doc/install.mdwn @@ -8,7 +8,7 @@ install and manage ProteanOS systems. [[Get_started!_→|doc/install/prokit]] Then, choose how and where to install ProteanOS: - * [[In_an_isolated_file_system_environment_→|doc/install/jail]] + * [[In_an_isolated_file_system_environment_→|doc/install/chroot]] * [[On_a_supported_PC_→|doc/install/pc]] See the [[legal_and_technical_notices|doc/legal]] to learn how to find copyright diff --git a/doc/install/chroot.mdwn b/doc/install/chroot.mdwn new file mode 100644 index 0000000..35020b0 --- /dev/null +++ b/doc/install/chroot.mdwn @@ -0,0 +1,45 @@ +[[!meta title="Isolated File System Environment Installation"]] + +[[←_Back_to_Installing_ProteanOS|doc/install]] + +These instructions explain how to install ProteanOS into a directory on an +existing host system to run under an isolated file system environment, or +"jail", using prokit, the ProteanOS Development Kit. prokit will run ProteanOS +using the **chroot**(2) system call via the **chroot**(8) wrapper program. + +It is assumed that you have already +[[built_and_optionally_installed_prokit|doc/install/prokit]]. + + +Installing ProteanOS +==================== + +First decide which "suite" of ProteanOS you wish to install. Currently only one +suite is available: `dev/trunk`. + +Next decide where to install ProteanOS. Replace `$root` below with the path to +which you want ProteanOS installed. + +If you installed prokit to your system, simply run: + + $ sudo prokit install dev/trunk $root + +Otherwise, from your prokit build directory, run: + + $ sudo src/prokit install dev/trunk $root + +Next Steps +========== + +Familiarize yourself with the ProteanOS Development Kit Manual, if you haven't +already. The **prokit-shell**(8) and **prokit-opkg**(8) commands are used to +manage installed ProteanOS systems. + +If you'd like to develop packages for ProteanOS, you need to install the +`build-essential` package (again replacing `prokit` with `src/prokit` if you +haven't installed prokit): + + $ sudo prokit opkg $root install build-essential + +This may take a while, depending on your network connection. Then you can start +[[learning_how_to_prepare_packages|doc/pkg]]! diff --git a/doc/install/jail.mdwn b/doc/install/jail.mdwn index 35020b0..1a07fd1 100644 --- a/doc/install/jail.mdwn +++ b/doc/install/jail.mdwn @@ -1,45 +1,3 @@ [[!meta title="Isolated File System Environment Installation"]] -[[←_Back_to_Installing_ProteanOS|doc/install]] - -These instructions explain how to install ProteanOS into a directory on an -existing host system to run under an isolated file system environment, or -"jail", using prokit, the ProteanOS Development Kit. prokit will run ProteanOS -using the **chroot**(2) system call via the **chroot**(8) wrapper program. - -It is assumed that you have already -[[built_and_optionally_installed_prokit|doc/install/prokit]]. - - -Installing ProteanOS -==================== - -First decide which "suite" of ProteanOS you wish to install. Currently only one -suite is available: `dev/trunk`. - -Next decide where to install ProteanOS. Replace `$root` below with the path to -which you want ProteanOS installed. - -If you installed prokit to your system, simply run: - - $ sudo prokit install dev/trunk $root - -Otherwise, from your prokit build directory, run: - - $ sudo src/prokit install dev/trunk $root - -Next Steps -========== - -Familiarize yourself with the ProteanOS Development Kit Manual, if you haven't -already. The **prokit-shell**(8) and **prokit-opkg**(8) commands are used to -manage installed ProteanOS systems. - -If you'd like to develop packages for ProteanOS, you need to install the -`build-essential` package (again replacing `prokit` with `src/prokit` if you -haven't installed prokit): - - $ sudo prokit opkg $root install build-essential - -This may take a while, depending on your network connection. Then you can start -[[learning_how_to_prepare_packages|doc/pkg]]! +Moved to [[doc/install/chroot]]. |