nmcli d- this will list the attached network devices.nmtui- this is an interactive method to configire network.
- Generate keys for instance
ssh-keygen -t rsa -b 4096 -N "" -f ./server-key
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: AWS IAM account & policy CloudFormation template for Certbot Route53 plugin | |
| Parameters: | |
| CertbotServiceUserName: | |
| Type: String | |
| Description: Certbot service user name | |
| Default: service.certbot | |
| AllowedPattern: \S+ |
| # !/bin/bash -e | |
| # Make sure brew is installed | |
| if hash brew 2>/dev/null; then | |
| printf "Brew is already installed!\n" | |
| else | |
| printf "ERROR: Please install brew before running this script.\n" | |
| exit 1 | |
| fi |
| # !/bin/bash -ex | |
| OPENCV=3.3.0 | |
| OPENCV_CONTRIB=3.3.0 | |
| # Install Pre-requisites | |
| sudo apt-get -y update | |
| sudo apt-get -y upgrade | |
| sudo apt-get -y install build-essential cmake git pkg-config wget \ | |
| libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev \ |
| #!/bin/sh -ex | |
| # Chromium update script | |
| # - forked from Superbil/chromium_update.sh | |
| # - Updated by andrepearce | |
| OS=mac | |
| DL_URL=https://download-chromium.appspot.com/dl/${OS}?type=snapshots | |
| INSTALL_DIR=/Applications | |
| TMP_DIR="/tmp/update-chrome-$RANDOM" | |
| TMP_File=chromium.zip |