1
2
3
4
5
6
7
8
9
10
11
12
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
+
+
+
|
Rather than having the entire operating system here, we just use kickstarts with livecd-creator to make livecds.
This is a guide on how it works.
http://fedoraproject.org/wiki/FedoraLiveCD/LiveCDHowTo
Here is a guide on editing kickstarts:
http://fedoraproject.org/wiki/Anaconda/Kickstart
<h2>What you need</h2>
A Fedora installation (Either on disk or in a virtual machine)
livecd-tools
Basic knowledge of using the Linux command-line
First, open up a terminal and become root.
|
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
48
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
-
+
-
+
-
+
-
+
|
Change to the directory that you’ve downloaded this archive to, and then change to the “anonos” directory.
# cd anonos
Make a cache directory (/var/cache/live writes to RAM and swap, so the space will be used up quick.)
# mkdir ~/cache
# mkdir cache
Copy and paste one of the below to start making your chosen liveCD.
Make sure you have enough space for twice the liveCD’s size. (usually 2GBs)
For Annonaceae:
livecd-creator \
--config=annonaceae.ks \
--fslabel=Annonaceae V.0.0.6 --cache=~/cache
--fslabel=Annonaceae V.0.0.6 --cache=cache
For Cherimoya:
livecd-creator \
--config=cherimoya.ks \
--fslabel=Cherimoya V.0.0.6 --cache=~/cache
--fslabel=Cherimoya V.0.0.6 --cache=cache
Once you are done, free up space by deleting ~/cache.
# rm -r ~/cache
# rm -r cache
|