- Operating System: Debian GNU/Linux 12 (bookworm)
- Kernel: Linux 6.1.64-09049-g010fe86d9eae
- Architecture: x86-64
- Podman: v1.7.1
1. Install Podman:
sudo apt install podman
A word of warning. This will be slow and buggy. Do not attempt to use this as a daily driver.
XRES=1366 | |
YRES=768 | |
RAM=8G | |
qemu-system-x86_64 \ | |
-drive format=raw,file=chromeos_15437.42.0_reven_recovery_stable-channel_mp-v2.bin \ | |
-enable-kvm \ | |
-m $RAM \ | |
-machine q35,accel=kvm,dump-guest-core=off,vmport=off \ | |
-cpu host \ | |
-smp cores=8 \ |
brew install fontforge | |
brew install woff2 | |
curl -L http://mirrors.ctan.org/fonts/mlmodern.zip > mlmodern.zip | |
unzip mlmodern.zip | |
cd mlmodern/type1/ | |
fontforge -lang=ff -c 'Open($1); Generate($1:r + ".otf")' mlmr12.pfb |
#!/bin/bash | |
# chromeos_docker.sh | |
# Usage: | |
# REPOSITORY=YOUR_DOCKER_HUB_REPOSITORY_NAME chromeos_docker.sh recovery_file_url container_name chromeos_milestone arch | |
# or if image.bin already exists this works too: | |
# chromeos_docker.sh dummy name milestone arch | |
# (Default is not to delete the image after download.) | |
# e.g. | |
# Example for x86_64: | |
# chromeos_docker.sh https://dl.google.com/dl/edgedl/chromeos/recovery/chromeos_13816.82.0_nocturne_recovery_stable-channel_mp.bin.zip nocturne 90 x86_64 |
You're on linux, the Chrome OS Recovery Utility isn't supported, but you'd still want to try Chrome OS Flex? Worry no more!
(NOTE: I'm aware of Googles offical Linux script, but that one is "in maintaince mode" and also doesn't have flex)
Install the following packages: jq, curl, wget, unzip (most, if not all, should be preinstalled)
Written by Greenman#0001
The Roblox Wiki is one of the best ways to learn how to script but unfortunately, all of the tutorials on there have been scrambled due to the redesign so this guide is just sorting out the tutorials again so you can read them in the correct order. This guide should cover everything you need to become competent or at least confident with Roblox Lua.
This will not guarantee that you will learn Lua quickly or even at all. It's your responsibility to use the resources here effectively by taking your time, taking notes, practicing, etc. This list will be updated as I find articles on important concepts that I overlooked so make sure you check back frequently.
name: Deploy to cPanel | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
FTP-Deploy-Action: | |
name: FTP-Deploy-Action | |
runs-on: ubuntu-latest | |
steps: |