├── .gitignore ├── Makefile ├── cover.xcf.gz ├── data ├── boot.html └── rightarrow.png ├── docinfo.xml ├── ending ├── fop.xsl ├── heading ├── images ├── icons │ ├── note.png │ ├── tip.png │ └── warning.png ├── part1 │ ├── appbrowser.png │ ├── apps_browsing.png │ ├── apps_installed.png │ ├── apps_selected.png │ ├── apps_update_menu.png │ ├── apps_updates.png │ ├── booting.png │ ├── core2usb.png │ ├── freecell.png │ ├── installer_done.png │ ├── installer_pg1.png │ ├── installer_pg2.png │ ├── installer_pg3.png │ ├── installer_pg4.png │ ├── installer_pg5.png │ ├── scattered.png │ └── tcedir.png ├── part2 │ ├── gfxboot-color.png │ └── gfxboot.png ├── part3 │ ├── bootprocess.png │ └── bootprocess_gui.png └── part4 │ └── ff.png ├── part1 ├── ch00 │ └── text ├── ch01 │ └── text ├── ch02 │ └── text ├── ch03 │ └── text ├── ch04 │ └── text ├── ch05 │ └── text ├── ch06 │ └── text ├── ch07 │ └── text ├── ch08 │ └── text ├── ch09 │ └── text └── ch10 │ └── text ├── part2 ├── ch00 │ └── text ├── ch01 │ └── text ├── ch02 │ └── text ├── ch03 │ └── text ├── ch04 │ └── text ├── ch05 │ └── text ├── ch06 │ └── text └── ch07 │ └── text ├── part3 ├── ch00 │ └── text ├── ch01 │ └── text ├── ch02 │ └── text ├── ch03 │ └── text └── ch04 │ └── text ├── part4 ├── ch00 │ └── text ├── ch01 │ └── text ├── ch02 │ └── text ├── ch03 │ └── text ├── ch04 │ └── text ├── ch05 │ └── text ├── ch06 │ └── text ├── ch07 │ └── text └── ch08 │ └── text └── plan /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/Makefile -------------------------------------------------------------------------------- /cover.xcf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/cover.xcf.gz -------------------------------------------------------------------------------- /data/boot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/data/boot.html -------------------------------------------------------------------------------- /data/rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/data/rightarrow.png -------------------------------------------------------------------------------- /docinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/docinfo.xml -------------------------------------------------------------------------------- /ending: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/ending -------------------------------------------------------------------------------- /fop.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/fop.xsl -------------------------------------------------------------------------------- /heading: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/heading -------------------------------------------------------------------------------- /images/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/icons/note.png -------------------------------------------------------------------------------- /images/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/icons/tip.png -------------------------------------------------------------------------------- /images/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/icons/warning.png -------------------------------------------------------------------------------- /images/part1/appbrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/appbrowser.png -------------------------------------------------------------------------------- /images/part1/apps_browsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/apps_browsing.png -------------------------------------------------------------------------------- /images/part1/apps_installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/apps_installed.png -------------------------------------------------------------------------------- /images/part1/apps_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/apps_selected.png -------------------------------------------------------------------------------- /images/part1/apps_update_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/apps_update_menu.png -------------------------------------------------------------------------------- /images/part1/apps_updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/apps_updates.png -------------------------------------------------------------------------------- /images/part1/booting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/booting.png -------------------------------------------------------------------------------- /images/part1/core2usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/core2usb.png -------------------------------------------------------------------------------- /images/part1/freecell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/freecell.png -------------------------------------------------------------------------------- /images/part1/installer_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/installer_done.png -------------------------------------------------------------------------------- /images/part1/installer_pg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/installer_pg1.png -------------------------------------------------------------------------------- /images/part1/installer_pg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/installer_pg2.png -------------------------------------------------------------------------------- /images/part1/installer_pg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/installer_pg3.png -------------------------------------------------------------------------------- /images/part1/installer_pg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/installer_pg4.png -------------------------------------------------------------------------------- /images/part1/installer_pg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/installer_pg5.png -------------------------------------------------------------------------------- /images/part1/scattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/scattered.png -------------------------------------------------------------------------------- /images/part1/tcedir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part1/tcedir.png -------------------------------------------------------------------------------- /images/part2/gfxboot-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part2/gfxboot-color.png -------------------------------------------------------------------------------- /images/part2/gfxboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part2/gfxboot.png -------------------------------------------------------------------------------- /images/part3/bootprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part3/bootprocess.png -------------------------------------------------------------------------------- /images/part3/bootprocess_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part3/bootprocess_gui.png -------------------------------------------------------------------------------- /images/part4/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/images/part4/ff.png -------------------------------------------------------------------------------- /part1/ch00/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch00/text -------------------------------------------------------------------------------- /part1/ch01/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch01/text -------------------------------------------------------------------------------- /part1/ch02/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch02/text -------------------------------------------------------------------------------- /part1/ch03/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch03/text -------------------------------------------------------------------------------- /part1/ch04/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch04/text -------------------------------------------------------------------------------- /part1/ch05/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch05/text -------------------------------------------------------------------------------- /part1/ch06/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch06/text -------------------------------------------------------------------------------- /part1/ch07/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch07/text -------------------------------------------------------------------------------- /part1/ch08/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch08/text -------------------------------------------------------------------------------- /part1/ch09/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch09/text -------------------------------------------------------------------------------- /part1/ch10/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part1/ch10/text -------------------------------------------------------------------------------- /part2/ch00/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part2/ch00/text -------------------------------------------------------------------------------- /part2/ch01/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part2/ch01/text -------------------------------------------------------------------------------- /part2/ch02/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part2/ch02/text -------------------------------------------------------------------------------- /part2/ch03/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part2/ch03/text -------------------------------------------------------------------------------- /part2/ch04/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part2/ch04/text -------------------------------------------------------------------------------- /part2/ch05/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part2/ch05/text -------------------------------------------------------------------------------- /part2/ch06/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part2/ch06/text -------------------------------------------------------------------------------- /part2/ch07/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part2/ch07/text -------------------------------------------------------------------------------- /part3/ch00/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part3/ch00/text -------------------------------------------------------------------------------- /part3/ch01/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part3/ch01/text -------------------------------------------------------------------------------- /part3/ch02/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part3/ch02/text -------------------------------------------------------------------------------- /part3/ch03/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part3/ch03/text -------------------------------------------------------------------------------- /part3/ch04/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part3/ch04/text -------------------------------------------------------------------------------- /part4/ch00/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part4/ch00/text -------------------------------------------------------------------------------- /part4/ch01/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part4/ch01/text -------------------------------------------------------------------------------- /part4/ch02/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part4/ch02/text -------------------------------------------------------------------------------- /part4/ch03/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part4/ch03/text -------------------------------------------------------------------------------- /part4/ch04/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part4/ch04/text -------------------------------------------------------------------------------- /part4/ch05/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part4/ch05/text -------------------------------------------------------------------------------- /part4/ch06/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part4/ch06/text -------------------------------------------------------------------------------- /part4/ch07/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part4/ch07/text -------------------------------------------------------------------------------- /part4/ch08/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/part4/ch08/text -------------------------------------------------------------------------------- /plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinycorelinux/corebook/HEAD/plan --------------------------------------------------------------------------------