This article demonstrates how to install Fedora Linux on MacOS.
Specifically we will use
- a macbook with m1 (arm/apple silicon) processor & 32GB ram
- macOS Sonoma 14.0
- Fedora Linux beta
- UTM as the virtualization tool
This article demonstrates how to install Fedora Linux on MacOS.
Specifically we will use
| --- | |
| apiVersion: batch/v1beta1 | |
| kind: CronJob | |
| metadata: | |
| name: etcd-backup | |
| spec: | |
| schedule: "0 0 * * *" | |
| jobTemplate: | |
| spec: | |
| template: |
| #!/bin/bash | |
| # | |
| # This extremely rough nonsense is an attempt to automate the disaster recovery | |
| # expired certs documentation published at | |
| # https://docs.openshift.com/container-platform/4.1/disaster_recovery/scenario-3-expired-certs.html | |
| # ... Which was last reviewed on 2019/06/10 | |
| # | |
| # Please contact rsaw@redhat.com with suggestions or corrections | |
| # CUSTOMIZE THESE: |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>ssh-add-a</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/usr/bin/ssh-add</string> | |
| <string>-A</string> | |
| </array> | |
| <key>StandardOutPath</key> |
| from uuid import UUID | |
| def validate_uuid4(uuid_string): | |
| """ | |
| Validate that a UUID string is in | |
| fact a valid uuid4. | |
| Happily, the uuid module does the actual | |
| checking for us. |
| /*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
| /* ========================================================================== | |
| HTML5 display definitions | |
| ========================================================================== */ | |
| /** | |
| * Correct `block` display not defined in IE 8/9. | |
| */ |
| ######################################## | |
| ##### upstart_virtualenv_test.conf ##### | |
| ##### install in /etc/init ##### | |
| ######################################## | |
| description "Testing virtualenv and upstart setup" | |
| env PYTHON_HOME=/home/steve/.virtualenvs/upstart-test | |
| start on runlevel [2345] |