Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laspavel/autoinstalleros
Silent installation RPM (Oracle Linux 8) and DEB (Debian 12) OS
https://github.com/laspavel/autoinstalleros
debian debian-linux kickstart kickstart-install oracle-linux preseed preseed-files preseed-install
Last synced: about 1 month ago
JSON representation
Silent installation RPM (Oracle Linux 8) and DEB (Debian 12) OS
- Host: GitHub
- URL: https://github.com/laspavel/autoinstalleros
- Owner: laspavel
- License: mit
- Created: 2024-06-05T18:10:20.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-10-20T17:52:57.000Z (2 months ago)
- Last Synced: 2024-10-20T21:41:17.752Z (2 months ago)
- Topics: debian, debian-linux, kickstart, kickstart-install, oracle-linux, preseed, preseed-files, preseed-install
- Language: Shell
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AutoInstallerOS
Silent installation RPM (Oracle Linux 8) and DEB (Debian 12) OS.
## Installation
1) Clone this repository.
2) Install the necessary dependencies:For Deb:
```
sudo apt -y install rsync sysutils sysutils-tools isomd5sum mkisofs
```For RPM:
```
sudo dnf -y install rsync syslinux isomd5sum mkisofs
```For scripts to work correctly, the user must have mount (or sudo) execution rights.
## Usage
Usage examples:
```
# For Oracle Linux
./create_custom_iso.sh OracleLinux-R8-U10-x86_64-dvd.iso OL8.iso# For Debian
./create_custom_iso.sh debian-12.5.0-amd64-DVD-1.iso Deb12.iso```
Here:
* OracleLinux-R8-U10-x86_64-dvd.iso,debian-12.5.0-amd64-DVD-1.iso - the source image from which the build is carried out* OL8.iso, Deb12.iso - the name of the resulting image
Additional files that participate in the assembly (grub.cfg, isolinux.cfg etc.) of the required version are located in the target folders.
## License ##
MIT / BSD
---
* [https://pykickstart.readthedocs.io/en/latest/kickstart-docs.html](https://pykickstart.readthedocs.io/en/latest/kickstart-docs.html)
* [https://anaconda-installer.readthedocs.io/en/latest/boot-options.html](https://anaconda-installer.readthedocs.io/en/latest/boot-options.html)
* [https://www.debian.org/releases/stable/amd64/apbs04.ru.html](https://www.debian.org/releases/stable/amd64/apbs04.ru.html)
* [https://unix.stackexchange.com/questions/640232/verified-good-mkisofs-for-centos-8](https://unix.stackexchange.com/questions/640232/verified-good-mkisofs-for-centos-8)
* [https://github.com/dafydd2277/systemAdmin/tree/main/kickstart/centos8](https://github.com/dafydd2277/systemAdmin/tree/main/kickstart/centos8)
* [https://access.redhat.com/discussions/6161602](https://access.redhat.com/discussions/6161602)
* [https://github.com/iwDevOps/RockyLinux8-Kickstart-iso](https://github.com/iwDevOps/RockyLinux8-Kickstart-iso)