Month: February 2026

Securing Your Communications: GNU/Linux and Encryption

Securing Your Communications: GNU/Linux and Encryption

Securing Your Communications: GNU/Linux and Encryption

Encryption on GNU/Linux keeps your messages and files private. You can start with tools already in most distros and add a couple more when needed.

Generate your GPG key

Most people use GnuPG for email and file signing. Run this in a terminal:

gpg --full-generate-key
  1. Choose RSA and RSA (default).
  2. Set key size to 4096.
  3. Pick an expiration date you can manage, such as two years.
  4. Enter your real name and email exactly as you use them.
  5. Set a strong passphrase and store it in a password manager.

Encrypt email with Thunderbird

Thunderbird handles GPG out of the box once you install the Enigmail extension or use the built-in OpenPGP support in recent versions.

  • Import your key: Account Settings → End-to-End Encryption → Add Key.
  • Send an encrypted test message to yourself first.
  • Ask a contact for their public key and add it to your keyring with gpg --import.

Replies stay encrypted only if both sides have each other’s keys.

Encrypt files before sending

Use age for simple file encryption when you do not need the full GPG feature set.

age -r [email protected] -o file.txt.age file.txt

The recipient decrypts with their private key:

age -d -i ~/.ssh/id_ed25519 -o file.txt file.txt.age

age works well for sharing documents over email or cloud storage that you do not fully trust.

Choose chat apps with real encryption

Signal Desktop runs cleanly on GNU/Linux and uses the same protocol as the phone app.

App Protocol Notes
Signal Signal Protocol Default E2E, works on most distros
Element Matrix Self-host option, good for teams
Session Oxen No phone number required

Install from your package manager or Flatpak to keep the app updated automatically.

Back up and protect your keys

Copy your private key to an offline USB drive you keep in a safe place:

gpg --export-secret-keys --armor [email protected] > backup.asc

Never store the backup on any machine connected to the internet. Test restore once a year so you know the passphrase still works.

Posted by admin in Guides & Tutorials, 0 comments
How to Start Using Linux in Brazil: A Beginner’s Guide

How to Start Using Linux in Brazil: A Beginner’s Guide

How to Start Using Linux in Brazil: A Beginner’s Guide

Start by running Linux inside your current Windows setup. This avoids any risk to your files while you test the waters.

Pick a distro that works well here

Most people in Brazil do fine with Ubuntu or Linux Mint. Both come with Portuguese language support out of the box and have local download servers that keep updates fast.

  • Ubuntu: good if you want the most community help in Portuguese forums.
  • Linux Mint: feels closer to Windows and runs lighter on older machines common in Brazilian homes.

Install it without touching your hard drive

Download VirtualBox from the official site, then grab an Ubuntu ISO from ubuntu.com. Follow these steps:

  1. Open VirtualBox and create a new machine with 4 GB RAM and 25 GB virtual disk.
  2. Attach the ISO and start the machine.
  3. Choose “Try Ubuntu” first so nothing installs yet.
  4. Once inside, open the browser and test if your Wi-Fi and mouse work.

After an hour of use you can decide whether to install it for real later.

Adjust settings for Brazilian daily life

After the first boot, open Settings and set these items right away:

Setting What to do
Language Switch to Português (Brasil)
Keyboard Choose ABNT2 layout
Time zone America/Sao_Paulo
Updates Pick the nearest mirror in Software & Updates

This makes LibreOffice show dates in dd/mm/yyyy and lets you type accents without extra work.

Handle real tasks right away

Open the terminal and run these commands to get common tools:

  • sudo apt update && sudo apt install vlc gimp libreoffice
  • sudo apt install steam for games

If your bank app refuses to run, install it through the browser first. Most Brazilian banks now work fine in Firefox after you enable the “Use hardware acceleration” option.

Join the Ubuntu Brasil group on Telegram or the local subreddit for quick answers when something breaks. People answer in Portuguese within minutes during the day.

Posted by admin in Guides & Tutorials, 0 comments