I hereby claim:
- I am timjdfletcher on github.
- I am timjdfletcher (https://keybase.io/timjdfletcher) on keybase.
- I have a public key ASDBi_hcNLfIsNlQGMUvA0ScSR9WKd38IJcww3j5sCvUOAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Via @srynearson tweet https://twitter.com/Srynearson/status/534421250261942272 #kudos Bill Mullady | |
| # Re: http://community.arubanetworks.com/t5/Unified-Wired-Wireless-Access/Mac-OS-X-Lion-MacBook-Air-issue/m-p/113885#M24396 | |
| sudo defaults read /Library/Preferences/com.apple.airport.opproam | |
| Password: | |
| { | |
| deltaRSSI = 10; | |
| disabled = 0; | |
| useBonjour = 0; | |
| useBroadcastBSSID = 1; |
You might want to read this to get an introduction to armel vs armhf.
If the below is too much, you can try Ubuntu-ARMv7-Qemu but note it contains non-free blobs.
First, cross-compile user programs with GCC-ARM toolchain. Then install qemu-arm-static so that you can run ARM executables directly on linux
| #!/usr/bin/env bash | |
| VERSION=4.0.1 | |
| SCRIPT=`basename "$0"` | |
| APPNAME="My App" | |
| APPICONS="/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/GenericApplicationIcon.icns" | |
| OSX_VERSION=`sw_vers -productVersion` | |
| PWD=`pwd` | |
| function usage { |
| #!/bin/bash | |
| set -e | |
| maxloop=100 | |
| loop=0 | |
| file="$1" | |
| while file "${file}" | grep -q "gzip compressed data" ; do | |
| temp=$(mktemp) | |
| gzip -dc "${file}" > ${temp} | |
| mv ${temp} "${file}" | |
| loop=$((loop+1)) |
| --- | |
| - hosts: all | |
| gather_facts: false | |
| tasks: | |
| - name: Get information from ds.testmyipv6.com | |
| raw: curl http://ds.testmyipv6.com/ | |
| changed_when: false | |
| register: connection_test | |
| - debug: |
| #!/bin/bash | |
| set -eux -o pipefail | |
| # Bug fixes | |
| sudo rm -f /etc/apt/apt.conf.d/99rpimonitor | |
| # Replace stretch with buster in all source lists | |
| sudo sed -i 's/stretch/buster/g' /etc/apt/sources.list.d/* /etc/apt/sources.list | |
| # Run the upgrade |
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Sid": "NonResourceBasedReadOnlyPermissions", | |
| "Action": [ | |
| "ec2:DescribeSubnets", | |
| "ec2:DescribeSecurityGroups", | |
| "ec2:DescribeSnapshots", | |
| "ec2:DescribeImages", |
| #!/bin/bash | |
| set -eux -o pipefail | |
| # Remove old pi packages list | |
| sudo rm -f /etc/apt/apt.conf.d/99rpimonitor /etc/apt/sources.list.d/rpi-monitor.list | |
| # Replace version name in all source lists and fix up naming | |
| sudo sed -i 's/buster/bullseye/g' /etc/apt/sources.list.d/* /etc/apt/sources.list | |
| sudo sed -i '/debian-security\//b; s/\/debian-security/\/debian-security\//g' /etc/apt/sources.list.d/* /etc/apt/sources.list | |
| sudo sed -i '/security/ s,bullseye/updates,bullseye-security,g' /etc/apt/sources.list.d/* /etc/apt/sources.list |
| #!/bin/bash | |
| set -eux -o pipefail | |
| # Remove old pi packages list | |
| sudo rm -f /etc/apt/apt.conf.d/99rpimonitor /etc/apt/sources.list.d/rpi-monitor.list | |
| # Replace version name in all source lists and fix up naming | |
| sudo sed -i 's/bullseye/bookworm/g' /etc/apt/sources.list.d/* /etc/apt/sources.list | |
| sudo sed -i '/debian-security\//b; s/\/debian-security/\/debian-security\//g' /etc/apt/sources.list.d/* /etc/apt/sources.list | |
| sudo sed -i '/security/ s,bookworm/updates,bookworm-security,g' /etc/apt/sources.list.d/* /etc/apt/sources.list |