Use this guide from a Linux live USB with the computer powered off. This clones the entire disk byte-for-byte, keeping LUKS encryption intact.
- Power off the computer.
- Insert the live USB.
- Power on and open the boot menu (
F2,F10,F12, orEsc).
Use this guide from a Linux live USB with the computer powered off. This clones the entire disk byte-for-byte, keeping LUKS encryption intact.
F2, F10, F12, or Esc).Problema: Ao tentar emitir um novo bilhete de seguro, o sistema redireciona para a página de "Bilhetes Existentes" quando detecta um bilhete vencido, impedindo a emissão de um novo certificado.
Solução: Existe um fluxo alternativo escondido que permite emitir um novo certificado sem cair no loop de pesquisa de bilhetes vencidos.
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # This script uses an AI model to generate file content based on a prompt and context from other files. | |
| # It requires Ollama to be installed and accessible in the system's PATH. | |
| # | |
| # Usage: | |
| # ai-create.sh <output_file> "<prompt>" <context_file1> [context_file2 ...] | |
| # | |
| # Environment Variables: |
| function load-env() { | |
| if [ -e .env ] | |
| then | |
| export $(cat .env | xargs) | |
| echo ".env exported with success! 🥄" | |
| else | |
| echo "There's no spoon 🐲" | |
| fi | |
| } |
| touch ~/.ssh/authorized_keys | |
| curl https://github.com/ayr-ton.keys >> ~/.ssh/authorized_keys |
| #!/usr/bin/env python3 | |
| import os | |
| import subprocess | |
| import argparse | |
| SYNC_SERVER = "" | |
| SYNC_DIRS = { | |
| "~/workspace": "workspace", | |
| } |
| job "fabio" { | |
| datacenters = ["dc1"] | |
| type = "system" | |
| group "fabio" { | |
| task "fabio" { | |
| driver = "docker" | |
| config { | |
| image = "fabiolb/fabio" |