Changeset 1718
- Timestamp:
- 09/05/06 21:41:57 (2 years ago)
- Files:
-
- 1 added
- 1 removed
- 3 modified
-
branches/6.2/doc/README (modified) (2 diffs)
-
branches/6.2/doc/lfscd-remastering-howto.txt (added)
-
branches/6.2/packages/livecd-bootscripts/Makefile (modified) (2 diffs)
-
branches/6.2/packages/livecd-bootscripts/customize (deleted)
-
trunk/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/6.2/doc/README
r1706 r1718 142 142 It is possible to burn a customized version of the official Linux From 143 143 Scratch LiveCD, with your own files added. To do that, follow the 144 instructions below. 145 146 * Burn the official CD in multi session mode: 147 cdrecord dev=/dev/cdrom -v -multi -tao lfslivecd-[version].iso 148 149 * Prepare a directory with the files you want to add, delete or change: 150 mkdir second-session && cd second-session 151 vim path/to/new-file 152 vim path/to/file-to-be-changed 153 echo path/to/file1-to-be-deleted >.delete 154 echo path/to/file2-to-be-deleted >>.delete 155 cd .. 156 157 * Make an image contatining those files: 158 mkisofs -l -M lfslivecd-[version].iso \ 159 -C `cdrecord -msinfo dev=/dev/cdrom` \ 160 -R -o second-session.iso second-session 161 162 * Append the image you just created to the official Linux From Scratch 163 LiveCD: 164 cdrecord dev=/dev/cdrom -v -multi -tao second-session.iso 144 instructions in the /root/lfscd-remastering-howto.txt file. 165 145 166 146 AUTOSSHD 167 147 ============================ 168 148 It is possible to start the sshd daemon automatically upon boot. To do that, 169 you have to customize the CD as described above. Addthe following files:149 you have to customize the CD. Modify the following files: 170 150 171 151 * /.autosshd … … 192 172 193 173 * /etc/udev/rules.d/50-network.rules 194 Create an emptyfile in order to prevent udev from running dhcpcd.174 Remove this file in order to prevent udev from running dhcpcd. 195 175 196 176 INTERNATIONALIZATION -
branches/6.2/packages/livecd-bootscripts/Makefile
r1580 r1718 4 4 # Targets 5 5 6 SCRIPTS= c ustomize clkconf langconf brltty brltty-restart6 SCRIPTS= clkconf langconf brltty brltty-restart 7 7 DATA= font.dat font-errors.dat lang.dat 8 8 … … 22 22 install -m754 $(SCRIPTS) /etc/rc.d/init.d 23 23 install -m644 $(DATA) /etc/langconf 24 ln -sf ../init.d/customize /etc/rc.d/rcsysinit.d/S09customize25 24 ln -sf ../init.d/brltty /etc/rc.d/rcsysinit.d/S11brltty 26 25 ln -sf ../init.d/clkconf /etc/rc.d/rcsysinit.d/S59clkconf -
trunk/Makefile
r1707 r1718 397 397 endif 398 398 @sed -i "s/Version:/Version: $(VERSION)/" $(MP)/etc/issue 399 @install -m644 doc/README $(MP)/root/README399 @install -m644 doc/README doc/lfscd-remastering-howto.txt $(MP)/root/README 400 400 @sed -i "s/\[version\]/$(VERSION)/" $(MP)/root/README 401 401 @install -m600 root/.bashrc $(MP)/root/.bashrc
