openpgp4fpr:1F0289DA953E3C65A0F8C1E94892F93AEFDCE4C8
#!/bin/sh | |
# | |
# script to find broken package for Slackware Linux | |
# | |
SEARCH_DIRS="/bin /usr/bin /sbin /usr/sbin /lib /usr/lib /lib64 /usr/lib64 /usr/libexec" | |
TMPFILE=$(mktemp) | |
trap 'rm -f $TMPFILE; printf "\033[0K"; exit 1' 1 2 3 15 |
PART ONE | |
Download Firefox 64-bit | |
cd Downloads | |
wget -o firefox.tar.bz2 'https://download.mozilla.org/?product=firefox-nightly-latest-ssl&os=linux64&lang=en-US' | |
tar xvjf firefox.tar.gz | |
mv firefox firefox-nightly | |
sudo mv firefox-nightly /opt |
Slackware is a Linux distribution known for its simplicity, stability, and adherence to Unix principles. Its philosophy can be summarized by several key principles:
-
Simplicity: Slackware aims to maintain simplicity in its design and operation. It follows the Unix philosophy of doing one thing and doing it well. This means avoiding unnecessary complexity and keeping the system as streamlined as possible.
-
Stability: Stability is a primary focus of Slackware. The distribution prioritizes reliability and robustness, favoring proven, stable software packages over bleeding-edge releases. This ensures that the system remains dependable and suitable for production environments.
-
Minimalism: Slackware provides users with a minimal base system upon installation. It encourages users to customize their setups according to their specific needs, rather than including a plethora of pre-installed software packages. This minimalistic approach allows for greater flexibility and encourages users to learn
#!/bin/bash | |
readonly INTERFACE="wg0" | |
# Generate peer keys | |
readonly PRIVATE_KEY=$(wg genkey) | |
readonly PUBLIC_KEY=$(echo ${PRIVATE_KEY} | wg pubkey) | |
readonly PRESHARED_KEY=$(wg genpsk) | |
# Read server key from interface |
Some Jenkinsfile examples |
Métricas e Monitoramento | Planejamento e Capacidade | Gestão de Mudanças | Resposta a Incidentes | Cultura |
---|---|---|---|---|
Dashboard | Previsão | Consultoria no Desenho | Plantão | Trabalho Manual |
SLOs | Baseada em Demanda | Processo de Lançamento | Analises | Engenharia Alinhada |
Ánalises | Performance | Automação | Postmortems | Blamelessness |
FROM php:5.6-apache | |
RUN apt-get update && apt-get install -y libpq-dev && docker-php-ext-install pdo pdo_pgsql | |
COPY src/ /var/www/html |