Working to sniff Bluetooth Low Energy with the adafruit sniffer
For more information, see this blog post
Going the python route, as described here
before installing pySerial, did ...
| #!/bin/bash | |
| # Centos 7/8 John the Ripper Installation | |
| #release=(j 1.8.0) | |
| release=(k 1.9.0) | |
| # Check Centos version | |
| if [ -f /etc/redhat-release ] ; then | |
| source /etc/os-release | |
| if [ $VERSION_ID == "8" ] ; then | |
| packager=dnf | |
| elif [ $VERSION_ID == "7" ] ; then |
| #!/bin/bash | |
| yum -y install epel-release wget | |
| wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm | |
| rpm -Uvh rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm | |
| wget http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt | |
| rpm --import RPM-GPG-KEY.dag.txt |
Working to sniff Bluetooth Low Energy with the adafruit sniffer
For more information, see this blog post
Going the python route, as described here
before installing pySerial, did ...
| * LFCS Domains 2015.02 | |
| Note - the domains will change somewhat in March 2015. SW RAID | |
| with mdadm will be removed | |
| ** The Command Line | |
| *** Editing text files on the CLI | |
| Covers the use of the basic text editors nano and gedit as well | |
| as the advanced editors _vi_ and _emacs_ | |
| - nano | |
| simple CLI-based text editor |
| #### Contents of the preconfiguration file (for wheezy) | |
| ### Localization | |
| d-i debian-installer/locale string en_US.UTF-8 | |
| d-i debian-installer/keymap select us | |
| d-i keymap select us | |
| ### Network configuration | |
| d-i netcfg/choose_interface select auto | |
| ### Mirror settings |
| #!/bin/bash | |
| if [[ $# == 0 ]]; then | |
| echo Usage: | |
| echo "virt <command> <vm> args" | |
| echo Command is: ip, ssh, scp, sshfs | |
| exit 1 | |
| fi | |
| cmd="$1"; shift |
| #!/bin/bash | |
| #================================================================ | |
| # Let's Encrypt renewal script for Apache on Ubuntu/Debian | |
| # @author Erika Heidi<[email protected]> | |
| # Usage: ./le-renew.sh [base-domain-name] | |
| # More info: http://do.co/1mbVihI | |
| #================================================================ | |
| domain=$1 | |
| le_path='/opt/letsencrypt' | |
| le_conf='/etc/letsencrypt' |
| #!/bin/bash | |
| #================================================================ | |
| # Let's Encrypt renewal script for Apache on CentOS | |
| # @author Erika Heidi<[email protected]> | |
| # Usage: ./le-renew.sh [base-domain-name] | |
| # More info: http://do.co/1SHe4eL | |
| #================================================================ | |
| domain=$1 | |
| le_path='/opt/letsencrypt' | |
| le_conf='/etc/letsencrypt' |
mkfs -t <fs-type> /dev/<partition>ip address add <IP>/<CIDR> dev eth0ip route add default via <GW>| #!/bin/bash | |
| # | |
| # This version uses September 2016 rpi jessie image, please use this image | |
| # | |
| network="10.0.0" | |
| if [ "$EUID" -ne 0 ] | |
| then echo "Must be root" | |
| exit | |
| fi |