Unfortunately, I don't see any extra Noto fonts in Aurora's packages.json. But, at least, I can communicate via Github issues?
Do you recommend Aurora or Bazzite or something else?
Maybe Sparky Linux ...
Normally, I use Debian. However, Debian 12 installer didn't work on my Acer Extensa 💻. So I installed Sparky Linux, and it works.
People claiming Linux isn’t a viable alternative cause you can’t run it without using the command line.
Even in 2024, many people begin using GNU/Linux with Arch Linux or Ubuntu with apt-get, then later they complain that Linux is not for average users. Maybe the community needs more GUI only tutorials.
I'm using Lenovo ThinkBook, which is cheaper than Thinkpad, and the keyboard layout is different. It supports upto 40GB of RAM.
RK3588 is used in many Linux devices, but I'm not sure if Rockchip is in the BDS list. I don't know which factory was RK3588 from.
Yes, it is stable.
#[allow(unused_assignments)]
Thank you. This works!
Clippy didn't tell anything about the macro.
warning: dereferencing a tuple pattern where every element takes a reference
--> src/lib.rs:13:9
|
13 | &Some(ref cons_rc) => {
| ^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference
= note: `#[warn(clippy::needless_borrowed_reference)]` on by default
help: try removing the `&` and `ref` parts
|
13 - &Some(ref cons_rc) => {
13 + Some(cons_rc) => {
|
To put #[allow(this_linting_rule)] like this:
[ $x:expr, $( $y:expr ),* ] => {
#[allow(unused_assignments)]
{
I got error[E0658]: attributes on expressions are experimental.
To put it like this:
#[macro_export]
#[allow(unused_assignments)]
macro_rules! list {
() => {
None
It doesn't work.
Because of the Redhat incident, I started to see people asking for community-based distros without a corporate that dominates the community. And, Mageia is one of them. So, I hope it will be more popular.
- KDE is the default. So, for KDE users, Mageia with KDE was tested.
- Mageia comes with Drake tools for configuring almost everything. IMO *drakes look quite friendly. Since they have been around for 20+ years, they must be stable.
- Each release will be supported for 18 months, which is longer than Fedora.
veer66
0 post score0 comment score
Thank you. This is very helpful.