Skip to content

Instantly share code, notes, and snippets.

View kz6fittycent's full-sized avatar

kz6fittycent

  • Planet Earth
View GitHub Profile
@vkanevska
vkanevska / centos_bstick.sh
Last active July 17, 2023 11:57
Custom CentOS 7 bootable ISO / Support UEFI & Secure boot
#!/bin/bash
# create custom bootable iso for CentOS 7 with kickstart
if [ $# -lt 2 ]
then
echo "Usage1: $0 path2iso path2kickstart"
exit 1
else
if [ ! -f $1 ]
then