From b1af7eb7ebc1a1f587e32441598739eddee52177 Mon Sep 17 00:00:00 2001
From: Ribbon <ribbon_45@proton.me>
Date: Tue, 2 Jul 2024 03:39:25 +0000
Subject: [PATCH] Improve and rename a section of the FAQ

---
 content/faq.en.md | 12 ++++++------
 content/faq.pt.md | 12 ++++++------
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/content/faq.en.md b/content/faq.en.md
index f59ff318..60a8e431 100644
--- a/content/faq.en.md
+++ b/content/faq.en.md
@@ -13,7 +13,7 @@ This page covers questions and answers for newcomers and end-users.
 - [What is the purpose of Redox?](#what-is-the-purpose-of-redox)
 - [What I can do with Redox?](#what-i-can-do-with-redox)
 - [What is an Unix-like OS?](#what-is-an-unix-like-os)
-- [How Redox is inspired by other systems?](#how-redox-is-inspired-by-other-systems)
+- [How Redox was influenced by other systems?](#how-redox-was-influenced-by-other-systems)
 - [What is a microkernel?](#what-is-a-microkernel)
 - [What programs can Redox run?](#what-programs-can-redox-run)
 - [How to install programs on Redox?](#how-to-install-programs-on-redox)
@@ -142,7 +142,7 @@ Any OS compatible with the [Single Unix Specification](https://en.wikipedia.org/
 
 - [Wikipedia article](https://en.wikipedia.org/wiki/Unix-like)
 
-## How Redox is inspired by other systems?
+## How Redox was influenced by other systems?
 
 ### [Plan 9](http://9p.io/plan9/index.html)
 
@@ -155,7 +155,7 @@ This Bell Labs OS brings the concept of "Everything is a File" to the highest le
 
 The most influential Unix-like system with a microkernel. It has advanced features such as system modularity, [kernel panic](https://en.wikipedia.org/wiki/Kernel_panic) resistence, driver reincarnation, protection against bad drivers and secure interfaces for [process comunication](https://en.wikipedia.org/wiki/Inter-process_communication).
 
-Redox is largely inspired by Minix - it has a similar architecture but with a feature set written in Rust.
+Redox is largely influenced by Minix - it has a similar architecture but with a feature set written in Rust.
 
 - [How Minix influenced the Redox design](https://doc.redox-os.org/book/ch04-01-microkernels.html)
 
@@ -165,13 +165,13 @@ The most performant and simplest microkernel of the world.
 
 Redox follow the same principle, trying to make the kernel-space small as possible (moving components to user-space and reducing the number of system calls, passing the complexity to user-space) and keeping the overall performance good (reducing the context switch cost).
 
-### [BSD](https://www.bsd.org/)
+### [BSD](https://en.wikipedia.org/wiki/Berkeley_Software_Distribution)
 
 This Unix [family](https://en.wikipedia.org/wiki/Research_Unix) included several improvements on Unix systems and the open-source variants of BSD added many improvements to the original system (like Linux did).
 
-- [FreeBSD](https://www.freebsd.org/) - Redox took inspiration from [Capsicum](https://man.freebsd.org/cgi/man.cgi?capsicum(4)) (a capability-based system) and [jails](https://en.wikipedia.org/wiki/Freebsd_jail) (a sandbox technology) for the namespaces implementation.
+- [FreeBSD](https://www.freebsd.org/) - The [Capsicum](https://man.freebsd.org/cgi/man.cgi?capsicum(4)) (a capability-based system) and [jails](https://en.wikipedia.org/wiki/Freebsd_jail) (a sandbox technology) influenced the Redox namespaces implementation.
 
-- [OpenBSD](https://www.openbsd.org/) - Redox took inspiration from the [system call](https://man.openbsd.org/pledge.2), [filesystem](https://man.openbsd.org/unveil.2), [display server](https://www.xenocara.org/) and [audio server](https://man.openbsd.org/sndiod.8) sandbox and [others](https://www.openbsd.org/innovations.html).
+- [OpenBSD](https://www.openbsd.org/) - The [system call](https://man.openbsd.org/pledge.2), [filesystem](https://man.openbsd.org/unveil.2), [display server](https://www.xenocara.org/) and [audio server](https://man.openbsd.org/sndiod.8) sandbox and [others](https://www.openbsd.org/innovations.html) influenced the Redox security.
 
 ### [Linux](https://www.kernel.org/)
 
diff --git a/content/faq.pt.md b/content/faq.pt.md
index 0b8ec4ed..e3c9e835 100644
--- a/content/faq.pt.md
+++ b/content/faq.pt.md
@@ -13,7 +13,7 @@ Essa página contém perguntas e respostas para iniciantes e usuários comuns.
 - [Qual o propósito do Redox?](#qual-o-prop%C3%B3sito-do-redox)
 - [O que posso fazer com o Redox?](#o-que-posso-fazer-com-o-redox)
 - [O que é um sistema Unix-like?](#o-que-%C3%A9-um-sistema-unix-like)
-- [Como o Redox é inspirado em outros sistemas?](#como-o-redox-%C3%A9-inspirado-em-outros-sistemas)
+- [Como o Redox foi influenciado por outros sistemas?](#como-o-redox-foi-influenciado-por-outros-sistemas)
 - [O que é um microkernel?](#o-que-%C3%A9-um-microkernel)
 - [Quais programas o Redox executa?](#quais-programas-o-redox-executa)
 - [Como instalar programas no Redox?](#como-instalar-programas-no-redox)
@@ -140,7 +140,7 @@ Qualquer sistema compátivel com a [Especificação Única do Unix](https://en.w
 
 - [Artigo da Wikipedia](https://pt.wikipedia.org/wiki/Sistema_operacional_tipo_Unix)
 
-## Como o Redox é inspirado em outros sistemas?
+## Como o Redox foi influenciado por outros sistemas?
 
 ### [Plan 9](http://9p.io/plan9/index.html)
 
@@ -155,7 +155,7 @@ Você apenas precisa montar o software em algum local para obter a função dese
 
 O sistema Unix-like com microkernel mais influente, ele possuí funções avançadas tais como modularidade do sistema, resistência a [quebra do kernel](https://en.wikipedia.org/wiki/Kernel_panic), reincarnação de driver, proteção contra drivers ruins e interfaces seguras para a [comunicação dos processos](https://en.wikipedia.org/wiki/Inter-process_communication).
 
-O Redox é largamente inspirado pelo Minix, ele tem funções e arquitetura similar escrita em Rust.
+O Redox foi muito influenciado pelo Minix, ele tem funções e arquitetura similar escrita em Rust.
 
 - [Como o Redox foi influenciado pelo Minix](https://doc.redox-os.org/book/ch04-01-microkernels.html)
 
@@ -165,13 +165,13 @@ O mais veloz e simples microkernel do mundo, focado em desempenho e simplicidade
 
 O Redox segue o mesmo princípio, tentando deixar o espaço do kernel o menor possível (movendo componentes para o espaço do usuário e reduzindo a quantidade de chamadas do sistema, passando a complexidade para o espaço do usuário) e mantendo o desempenho geral bom (reduzindo o custo da troca de contexto).
 
-### [BSD](https://www.bsd.org/)
+### [BSD](https://en.wikipedia.org/wiki/Berkeley_Software_Distribution)
 
 Essa [família](https://en.wikipedia.org/wiki/Research_Unix) de sistemas Unix implementou diversas melhorias para os sistemas Unix, as variantes de código-aberto dos sistemas BSD adicionaram muitas melhorias no sistema original (assim como o Linux fez).
 
-- [FreeBSD](https://www.freebsd.org/) - O Redox se inspirou no [Capsicum](https://man.freebsd.org/cgi/man.cgi?capsicum(4)) (um sistema baseado em capacidades) e [jails](https://en.wikipedia.org/wiki/Freebsd_jail) (uma tecnologia de isolamento)) para a implementação de namespaces.
+- [FreeBSD](https://www.freebsd.org/) - O [Capsicum](https://man.freebsd.org/cgi/man.cgi?capsicum(4)) (um sistema baseado em capacidades) e [jails](https://en.wikipedia.org/wiki/Freebsd_jail) (uma tecnologia de isolamento)) influenciaram a implementação de namespaces do Redox.
 
-- [OpenBSD](https://www.openbsd.org/) - O Redox se inspirou no isolamento de [chamadas do sistema](https://man.openbsd.org/pledge.2), [sistema de arquivos](https://man.openbsd.org/unveil.2), [servidor gráfico](https://www.xenocara.org/) e [servidor de áudio](https://man.openbsd.org/sndiod.8) e [outros](https://www.openbsd.org/innovations.html).
+- [OpenBSD](https://www.openbsd.org/) - O isolamento de [chamadas do sistema](https://man.openbsd.org/pledge.2), [sistema de arquivos](https://man.openbsd.org/unveil.2), [servidor gráfico](https://www.xenocara.org/), [servidor de áudio](https://man.openbsd.org/sndiod.8) e [outros](https://www.openbsd.org/innovations.html) influenciaram a segurança do Redox.
 
 ### [Linux](https://www.kernel.org/)
 
-- 
GitLab