Skip to content
View UnconventionalMindset's full-sized avatar
👋
Ciao! :3
👋
Ciao! :3
Block or Report

Block or report UnconventionalMindset

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Welcome 🤗

Home to my personal projects, home server provisioning, automation and more...

📈 Repo score :

Jac's GitHub stats

🛠️ Tools :

Proxmox  Fedora Core OS  Kubernetes  Ansible  Terraform  Docker  Portainer  Scala  Java  Ruby  Javascript  Play  Rails  Apache Flink  HackerRank  Spring 

📊 Repo stats :

GitHub Streak

Top Langs

Pinned Loading

  1. Embed Core OS installation to iPXE Embed Core OS installation to iPXE
    1
    #!/bin/bash
    2
    
                  
    3
    download_folder="ipxe"
    4
    install_script_url="https://gist.githubusercontent.com/UnconventionalMindset/f4ca2d66b943f916b5fecfad698b47ea/raw"
    5
    
                  
  2. Installation of Arch Linux on my Del... Installation of Arch Linux on my Dell XPS laptop
    1
    # Installation of Arch Linux on my Dell XPS 17 laptop
    2
    ## Pre-installation
    3
    - Make sure EFI partition is of 550 MB
    4
    - Microsoft Reserved Partition can be deleted
    5
    - Turn encryption off when moving windows main partition
  3. coreos-provisioning coreos-provisioning Public archive

    Custom ignition generation and hosting to provision my system.

    Shell 1

  4. Script to embed to iPXE to run Fedor... Script to embed to iPXE to run Fedora core OS from RAM
    1
    #!ipxe
    2
    
                  
    3
    set STREAM stable
    4
    set VERSION 36.20221001.3.0
    5
    set CONFIGURL https://raw.githubusercontent.com/UnconventionalMindset/coreos-setup/main/coreos.ign
  5. Script to embed an ignite (.ign) to ... Script to embed an ignite (.ign) to a Fedora Core OS iso.
    1
    $latest = "https://builds.coreos.fedoraproject.org/prod/streams/next/builds/36.20220906.1.0/x86_64/fedora-coreos-36.20220906.1.0-live.x86_64.iso"
    2
    $path = "C:\coreos-setup\"
    3
    $iso = "coreos-latest.iso"
    4
    $ign = "install.ign"
    5
    curl -o ${path}${iso} ${latest}