The following guide describes how to setup Raspberry Pi to connect to Wifi. It was tested on the following environment:
- Raspberry Pi Model B
- Edimax EW-7811Un USB Wifi dongle
- OS: Raspbian Jessie
Here are the overview of the steps:
| #!/usr/bin/python | |
| """ | |
| Print out the apps and clients that are inhibiting session actions like log out, user switching, suspending or idle. | |
| %InsertOptionParserUsage% | |
| Example: | |
| track_session_inhibitors & | |
| Todo: |
| update wp_posts set | |
| post_content = replace(post_content, CONVERT(CAST(CONVERT('¡' USING utf8) AS BINARY) USING latin1), '¡'), | |
| post_content = replace(post_content, CONVERT(CAST(CONVERT('¢' USING utf8) AS BINARY) USING latin1), '¢'), | |
| post_content = replace(post_content, CONVERT(CAST(CONVERT('£' USING utf8) AS BINARY) USING latin1), '£'), | |
| post_content = replace(post_content, CONVERT(CAST(CONVERT('¤' USING utf8) AS BINARY) USING latin1), '¤'), | |
| post_content = replace(post_content, CONVERT(CAST(CONVERT('¥' USING utf8) AS BINARY) USING latin1), '¥'), | |
| post_content = replace(post_content, CONVERT(CAST(CONVERT('¦' USING utf8) AS BINARY) USING latin1), '¦'), | |
| post_content = replace(post_content, CONVERT(CAST(CONVERT('§' USING utf8) AS BINARY) USING latin1), '§'), | |
| post_content = replace(post_content, CONVERT(CAST(CONVERT('¨' USING utf8) AS BINARY) USING latin1), '¨'), | |
| post_content = replace(post_content, CONVERT(CAST(CONVERT('©' USING utf8) AS BINARY) USING latin1), '©'), |
| .... | |
| Parameters: | |
| .... | |
| CidrBlock: | |
| Default: 172.21.0.0/16 | |
| Description: VPC Cidr Block | |
| Type: String | |
| AllowedPattern: "\\d+.\\d+.\\d+.\\d+/\\d+" | |
| ConstraintDescription: Must be CIDR | |
| Subnets: |
| StaticAssetsS3Bucket: | |
| Type: AWS::S3::Bucket | |
| Properties: | |
| BucketName: my-encrypted-bucket | |
| BucketEncryption: | |
| ServerSideEncryptionConfiguration: | |
| - ServerSideEncryptionByDefault: | |
| SSEAlgorithm: AES256 | |
| VersioningConfiguration: | |
| Status: Enabled |
| Imports System | |
| Imports System.Drawing | |
| Module Program | |
| Sub Main(args As String()) | |
| Dim sourcePath As String = args(0) | |
| Dim outputPath As String = args(1) | |
| IO.Directory.CreateDirectory(outputPath) |
| #!/bin/bash | |
| # -*- ENCODING: UTF-8 -*- | |
| #Requiere de permisos de ejecución:$chmod -x prepros_install.sh | |
| #Ejecutar como Root: $bash prepros_install.sh | |
| #Validando Acceso Root | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "Tienes que ejecutar este script como Root" 1>&2 | |
| exit 1 | |
| fi |
| #XLarge DBInstanceClassMemory = 15892177440 = 14.8GB | |
| #/32 = 496630545 = 473MB | |
| #/64 = 248315272 = 236MB | |
| #/128 = 124157636 = 118MB | |
| #/256 = 62078818 = 59MB | |
| #/512 = 31039409 = 29MB | |
| #/12582880 = 1263 #default same divisor as max_connections = 4041.6MB = 4237924762 | |
| #/25165760 = 623 # half of max_connections = 1993.6MB | |
| #/50331520 = 315 # quarter of max_connections = 1008MB = 1056964608 | |
| #*(3/4) #default innodb pool size = 11922309120 |
| import ldap | |
| def check_credentials(username, password): | |
| """Verifies credentials for username and password. | |
| Returns None on success or a string describing the error on failure | |
| # Adapt to your needs | |
| """ | |
| LDAP_SERVER = 'ldap://xxx' | |
| # fully qualified AD user name | |
| LDAP_USERNAME = '%s@xxx.xx' % username |