#!/bin/bash
DISTRO="buster"
# download the GPG key of the repository:
wget -q0 - http://downloads.linux.hpe.com/SDR/repo/mcp/GPG-KEY-mcp | apt-key add -
# create apt sources file for HP/Proliant repo
echo -e "deb http://downloads.linux.hpe.com/SDR/repo/mcp/ $DISTRO/current non-free" > /etc/apt/sources.list.d/proliant.sources.list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-refresh 60 -heapsize 33554432 -high -noforcemaccel -noforcemparms -novid -nojoy -nosteamcontroller -softparticlesdefaultoff -reuse -nohltv -noipx -nod3d9ex -threads 4 |
Les cuento como lo hice:
Creé una vm con wheezy i386 para poder compilar en limpio, luego se instala lo siguiente:
apt-get install devscripts libpam0g-dev libldap2-dev libsasl2-dev libselinux1-dev autoconf autotools-dev bison flex libaudit-dev
Descargar desde https://packages.debian.org/sid/sudo y descomprimir
gcloud auth activate-service-account --key-file /tmp/backup-account.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM: https://serverfault.com/questions/592793/mysql-crashed-and-wont-start-up | |
Ouch. | |
InnoDB: immediately after the mysqld startup, there may be | |
InnoDB: corruption in the InnoDB tablespace. Please refer to | |
InnoDB: http://dev.mysql.com/doc/refman/5.1/en/forcing-recovery.html | |
InnoDB: about forcing recovery. | |
Check the suggested webpage: http://dev.mysql.com/doc/refman/5.1/en/forcing-recovery.html. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://opensource.com/article/19/4/gpg-subkeys-ssh | |
How to enable SSH access using a GPG key for authentication | |
Learn how to eliminate SSH keys and use a GNU Privacy Guard (GPG) subkey instead. | |
24 Apr 2019 Brian "bex" Exelbierd (Red Hat) Feed 197 | |
up | |
Team checklist and to dos | |
x | |
Subscribe now |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function showswap() { | |
find /proc -maxdepth 2 -path "/proc/[0-9]*/status" -readable -exec awk -v FS=":" '{process[$1]=$2;sub(/^[ \t]+/,"",process[$1]);} END {if(process["VmSwap"] && process["VmSwap"] != "0 kB") printf "%10s %-30s %20s\n",process["Pid"],process["Name"],process["VmSwap"]}' '{}' \; | awk '{print $(NF-1),$0}' | sort -h | cut -d " " -f2- | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
From: http://www.be-n.com/spw/you-can-list-a-million-files-in-a-directory-but-not-with-ls.html | |
*/ | |
#define _GNU_SOURCE | |
#include <dirent.h> /* Defines DT_* constants */ | |
#include <fcntl.h> | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <stdlib.h> |