Skip to content

Instantly share code, notes, and snippets.

View HoudayerPierre's full-sized avatar
🔭
Remote control and motorization of the telescope

PITDU53 HoudayerPierre

🔭
Remote control and motorization of the telescope
  • inetum
  • France
View GitHub Profile
@yhatt
yhatt / marp.md
Last active June 7, 2024 13:14
Marp Next example
marp

Marp

h:250

Markdown presentation ecosystem
@mddelfino
mddelfino / highsierra_bootable.sh
Last active February 27, 2019 23:38 — forked from agentsim/highsierra_bootable.sh
Create bootable ISO from HighSierra Installer
#!/bin/sh
### AUTHOR DOCUMENTATION ###
# HISTORY:
# Original script by agentsim on 2017.06.09
# Improvements provided by github users umetzu, halabibk, br0adband and pat-s,
# et al. throughout the remainder of 2017
# Spruced up by Matthew Delfino on 2018.07.04
@agentsim
agentsim / highsierra_bootable.sh
Created June 10, 2017 02:23
Create bootable ISO from HighSierra Installer
# Generate a BaseSystem.dmg with 10.13 Install Packages
hdiutil attach /Applications/Install\ macOS\ 10.13\ Beta.app/Contents/SharedSupport/InstallESD.dmg -noverify -mountpoint /Volumes/highsierra
hdiutil create -o /tmp/HighSierraBase.cdr -size 7316m -layout SPUD -fs HFS+J
hdiutil attach /tmp/HighSierraBase.cdr.dmg -noverify -mountpoint /Volumes/install_build
asr restore -source /Applications/Install\ macOS\ 10.13\ Beta.app/Contents/SharedSupport/BaseSystem.dmg -target /Volumes/install_build -noprompt -noverify -erase
cp -R /Volumes/highsierra/Packages /Volumes/OS\ X\ Base\ System/System/Installation
hdiutil detach /Volumes/OS\ X\ Base\ System/
hdiutil detach /Volumes/highsierra/
mv /tmp/HighSierraBase.cdr.dmg /tmp/BaseSystem.dmg
@julianxhokaxhiu
julianxhokaxhiu / create-iso.sh
Created September 24, 2016 21:46
Simple bash script to create a Bootable ISO from macOS Sierra Install Image from Mac App Store
#!/bin/bash
#
# Credits to fuckbecauseican5 from https://www.reddit.com/r/hackintosh/comments/4s561a/macos_sierra_16a238m_install_success_and_guide/
# Adapted to work with the official image available into Mac App Store
#
# Enjoy!
hdiutil attach /Applications/Install\ macOS\ Sierra.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app
hdiutil create -o /tmp/Sierra.cdr -size 7316m -layout SPUD -fs HFS+J
hdiutil attach /tmp/Sierra.cdr.dmg -noverify -nobrowse -mountpoint /Volumes/install_build