- install lm-sensors with your package manager
sensors
If it won't show any fan/speed, continue
sensor-detect
Download the appropriate Kali Linux .iso
I used a 64 bit .iso
image, downloaded via HTTP. I downloaded the amd64 weekly version, as the pool
linux headers (needed below for installation of wireless drivers) were ahead of the stable release kernel.
Download the SHA256SUMS
and SHA256SUMS.gpg
files from the same location.
# Add this snippet to the top of your playbook. | |
# It will install python2 if missing (but checks first so no expensive repeated apt updates) | |
# [email protected] | |
- hosts: all | |
gather_facts: False | |
tasks: | |
- name: install python 2 | |
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal) |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
#!ipxe | |
set sysrcd-version 4.7.1 | |
echo Booting SystemRescueCD ${sysrcd-version} x86 for ${initiator-iqn} | |
# Kernel command-line options are documented here: | |
# http://www.system-rescue-cd.org/Sysresccd-manual-en_Booting_the_CD-ROM#Network_boot_using_PXE | |
set base-url sysrcd-${sysrcd-version}-x86/ | |
kernel ${base-url}isolinux/altker${archs} setkmap=no net.ifnames=0 backstore=off | |
initrd ${base-url}isolinux/initram.igz | |
initrd ${base-url}sysrcd.dat /sysrcd.dat | |
# Load the ramdisk again as a file inside the ramdisk, so our custom init script |
# Defaults / Configuration options for homebridge | |
# The following settings tells homebridge where to find the config.json file and where to persist the data (i.e. pairing and others) | |
HOMEBRIDGE_OPTS=-U /var/lib/homebridge | |
# If you uncomment the following line, homebridge will log more | |
# You can display this via systemd's journalctl: journalctl -f -u homebridge | |
# DEBUG=* |
#!/bin/bash | |
TEMP_DIR="/run/shm" | |
FONT_DIR="/usr/local/share/fonts" | |
# generate a 12 character password comprised of lower case letters | |
NEW_PASS=`\ | |
dd if=/dev/urandom bs=1 count=32 2>/dev/null | \ | |
tr '\200-\377' '\0-\177' | \ | |
tr '\0-\77' '\100-\177' | \ |
#!/usr/bin/env bash | |
## | |
# @author Jay Taylor [@jtaylor] | |
# @date 2013-08-15 | |
# | |
# @description CloudFlare management script. | |
# | |
# Path ENV VAR override. |