Skip to content
Snippets Groups Projects
Commit ea727f09 authored by Ribbon's avatar Ribbon :speech_balloon:
Browse files

Improve FAQ explanation.

parent 05bff194
No related branches found
No related tags found
1 merge request!286Declutter of menu and many improvements.
...@@ -31,37 +31,47 @@ Wherever possible, the system components are written in Rust and run in user-spa ...@@ -31,37 +31,47 @@ Wherever possible, the system components are written in Rust and run in user-spa
## What features does Redox have? ## What features does Redox have?
### True modularity ### Microkernel benefits
You can change every system component without a system restart, similar to [livepatching]). #### True modularity
You can modify/change many system components without a system restart, similar to [livepatching]).
[livepatching]: https://en.wikipedia.org/wiki/Kpatch [livepatching]: https://en.wikipedia.org/wiki/Kpatch
### Bug isolation #### Bug isolation
Most system components run in user-space on a microkernel system, a bug in a system component out of the kernel can't [crash the system/kernel]. Most system components run in user-space on a microkernel system, a bug in a non-kernel component won't [crash the system/kernel].
[crash the system/kernel]: https://en.wikipedia.org/wiki/Kernel_panic [crash the system/kernel]: https://en.wikipedia.org/wiki/Kernel_panic
### No-reboot design #### No-reboot design
The kernel change very little (bug fixing), then you don't need to restart your system with frequency to update the system, since most of the system components are on user-space, they can be replaced on-the-fly (it helps a lot server administrators).
Expect less kernel updates too (less chance to more bugs). The kernel changes very little (bug fixing), so you won't need to restart your system very often to update the system.
### No need for exploit mitigations Since most of the system components are in user-space, they can be replaced on-the-fly (reducing downtime for server administrators).
The microkernel design written in Rust makes most C/C++ security bugs irrelevant/useless, with this design the attacker can't use these bugs to exploit the system. #### ZFS-inspired filesystem
### ZFS-inspired filesystem Redox uses RedoxFS as the default filesystem, it supports similar features as [ZFS] with a written-in-Rust implementation.
Redox uses RedoxFS as the default filesystem, it support the same features of [ZFS] with changes on implementation.
Expect high performance and data safety (copy-on-write, data integrity, volumes, snapshots, hardened against data loss). Expect high performance and data safety (copy-on-write, data integrity, volumes, snapshots, hardened against data loss).
[ZFS]: https://docs.freebsd.org/en/books/handbook/zfs/ [ZFS]: https://docs.freebsd.org/en/books/handbook/zfs/
### Better system performance and less memory usage #### Easy to develop and debug
Most of the system components run on user-space, you don't need virtualization to test/debug them, more quick to develop.
### Rust benefits
#### No need for exploit mitigations
The microkernel design written in Rust protects against C/C++ memory defects, by isolating the system components from the kernel, the [attack surface] is very limited..
[attack surface]: https://en.wikipedia.org/wiki/Attack_surface
#### Improved security and reliability without significant performance impact
As the kernel is small, it uses less memory to do his work and close to bug-free status ([KISS] goal). As the kernel is small, it uses less memory to do his work and close to bug-free status ([KISS] goal).
...@@ -71,17 +81,12 @@ Rust implement performance optimization with safety by default. ...@@ -71,17 +81,12 @@ Rust implement performance optimization with safety by default.
[KISS]: https://en.wikipedia.org/wiki/KISS_principle [KISS]: https://en.wikipedia.org/wiki/KISS_principle
### Rust-written drivers #### Rust-written drivers
Drivers written in Rust have less bugs, more security and performance (less bugs can bring more performance of the device). Drivers written in Rust have less bugs, more security and performance (less bugs can bring more performance of the device).
- [Currently supported devices](/faq/#which-devices-redox-support) - [Currently supported devices](/faq/#which-devices-redox-support)
### Easy to develop and debug
Most of the system components run on user-space, you don't need virtualization to test/debug them, more quick to develop.
## What is the purpose of Redox? ## What is the purpose of Redox?
The main goal of Redox is to be a general-purpose OS for any kind of task/computer, while maintaining security, reliability and correctness. The main goal of Redox is to be a general-purpose OS for any kind of task/computer, while maintaining security, reliability and correctness.
......
...@@ -33,7 +33,7 @@ Onde for possível, os componentes do sistema serão escritos em Rust e executam ...@@ -33,7 +33,7 @@ Onde for possível, os componentes do sistema serão escritos em Rust e executam
### Modularidade real ### Modularidade real
Você pode mudar cada componente do sistema sem reiniciar o sistema, similar ao [livepatching]). Você pode modificar/trocar a maioria dos componentes do sistema sem reiniciar o sistema, similar ao [livepatching]).
[livepatching]: https://en.wikipedia.org/wiki/Kpatch [livepatching]: https://en.wikipedia.org/wiki/Kpatch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment