├── LICENSE ├── Makefile ├── README.md ├── TODO ├── chrootx ├── chrootx.conf ├── fstab.chrootx └── templates ├── bash ├── busybox ├── centos ├── debian ├── fedora ├── minimal ├── nano ├── opensuse ├── redhat └── ubuntu /LICENSE: -------------------------------------------------------------------------------- 1 | GPLv3 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/TODO -------------------------------------------------------------------------------- /chrootx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/chrootx -------------------------------------------------------------------------------- /chrootx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/chrootx.conf -------------------------------------------------------------------------------- /fstab.chrootx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/fstab.chrootx -------------------------------------------------------------------------------- /templates/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/templates/bash -------------------------------------------------------------------------------- /templates/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/templates/busybox -------------------------------------------------------------------------------- /templates/centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/templates/centos -------------------------------------------------------------------------------- /templates/debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/templates/debian -------------------------------------------------------------------------------- /templates/fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/templates/fedora -------------------------------------------------------------------------------- /templates/minimal: -------------------------------------------------------------------------------- 1 | bash -------------------------------------------------------------------------------- /templates/nano: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/templates/nano -------------------------------------------------------------------------------- /templates/opensuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/templates/opensuse -------------------------------------------------------------------------------- /templates/redhat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/templates/redhat -------------------------------------------------------------------------------- /templates/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spiritdude/ChrootX/HEAD/templates/ubuntu --------------------------------------------------------------------------------