blob: 0b27ffe98d1c217649e496fe0f8651563e6f4bc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
[[!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. `rel/trunk` is a
rolling release that receives updates free of known new bugs; it is recommended
for regular users. `dev/trunk` receives direct package uploads and should be
used by ProteanOS developers. Replace `$suite` below with your chosen suite.
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 $suite $root
Otherwise, from your prokit build directory, run:
$ sudo ./prokit install $suite $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 `./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]]!
|