Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Sunshine And March Vibes (2025 Wallpapers Edition)

      June 2, 2025

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      June 2, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      June 2, 2025

      How To Prevent WordPress SQL Injection Attacks

      June 2, 2025

      The Alters: Release date, mechanics, and everything else you need to know

      June 2, 2025

      I’ve fallen hard for Starsand Island, a promising anime-style life sim bringing Ghibli vibes to Xbox and PC later this year

      June 2, 2025

      This new official Xbox 4TB storage card costs almost as much as the Xbox SeriesXitself

      June 2, 2025

      I may have found the ultimate monitor for conferencing and productivity, but it has a few weaknesses

      June 2, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      May report 2025

      June 2, 2025
      Recent

      May report 2025

      June 2, 2025

      Write more reliable JavaScript with optional chaining

      June 2, 2025

      Deploying a Scalable Next.js App on Vercel – A Step-by-Step Guide

      June 2, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      The Alters: Release date, mechanics, and everything else you need to know

      June 2, 2025
      Recent

      The Alters: Release date, mechanics, and everything else you need to know

      June 2, 2025

      I’ve fallen hard for Starsand Island, a promising anime-style life sim bringing Ghibli vibes to Xbox and PC later this year

      June 2, 2025

      This new official Xbox 4TB storage card costs almost as much as the Xbox SeriesXitself

      June 2, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Operating Systems»Linux»Il sondaggio della community Reddit di Arch Linux svela le tendenze ed i trend degli utenti GNU/Linux

    Il sondaggio della community Reddit di Arch Linux svela le tendenze ed i trend degli utenti GNU/Linux

    January 27, 2025
    Il sondaggio della community Reddit di Arch Linux svela le tendenze ed i trend degli utenti GNU/Linux

    Sul fatto che Arch Linux sia la distribuzione del momento ci sono pochi dubbi. Chi lo dice? Semplice, la sua base di utenti sempre in crescita con 286 mila utenti solo nella community Reddit, poi quella che è sicuramente la documentazione migliore tra le distribuzioni GNU/Linux, ed ultimamente anche il fatto di essere sulla bocca di tutti i giocatori GNU/Linux, dopo l’accordo con Valve come distribuzione per SteamOS.

    Proprio dalla community Reddit arrivano i risultati di un sondaggio condotto tra gli utenti che ci permette di osservare da vicino alcune tendenze del “mercato” GNU/Linux. I risultati sono pubblicati in un Google Doc accessibile pubblicamente e sono riassunti anche in questo articolo di Linuxiac (da cui linkiamo le immagini), andiamo a vederne alcuni.

    Prima sorpresa sui processori: AMD è al 57% contro il 41% di Intel, e lato GPU ovviamente c’è NVIDIA a farla da padrone con il suo 40%.

    Nel contesto desktop manager c’è una netta preferenza di KDE, seguito a ruota da Hyprland (che è un compositor basato su Wayland), solo terzo GNOME:

    L'ambiente grafico preferito dagli utenti di Arch Linux
    L’ambiente grafico preferito dagli utenti di Arch Linux

    In ambito browser Web, Firefox vince su tutti, seguito da Brave:

    Il browser web preferito dagli utenti Arch Linux
    Il browser web preferito dagli utenti Arch Linux

    Altra parte, almeno per chi scrive, estremamente interessante è quella del terminale, dove per logica vince Konsole, lo straordinario terminale di KDE e dove non vi è traccia ad esempio di Terminator (uno dei miei preferiti di tutti i tempi):

    Emulatore di terminale preferito dagli utenti Arch Linux
    Emulatore di terminale preferito dagli utenti Arch Linux

    Finiamo con i filesystem dove ext4 la fa da padrone, seguito da btrfs, in un elenco nel quale sorprende vedere XFS così basso, pur essendo ad esempio il filesystem scelto di default da Red Hat e derivate:

    File system di root preferito dagli utenti Arch Linux
    File system di root preferito dagli utenti Arch Linux

    Insomma, pur trattandosi di un campione limitato le indicazioni in qualche modo sono interessanti e molte altre sono presenti nel report.

    Riscontrano anche le vostre preferenze? Raccontatelo nei commenti!

    790f89849d535c46ddf9fb9b8fa033b4?s=150&d=mp&r=g
    Raoul Scarazzini

    Da sempre appassionato del mondo open-source e di Linux nel 2009 ho fondato il portale Mia Mamma Usa Linux! per condividere articoli, notizie ed in generale tutto quello che riguarda il mondo del pinguino, con particolare attenzione alle tematiche di interoperabilità, HA e cloud.
    E, sì, mia mamma usa Linux dal 2009.

    Fonte: https://www.miamammausalinux.org/2025/01/il-sondaggio-della-community-reddit-di-arch-svela-le-tendenze-ed-i-trend-degli-utenti-linux/

    Source: Read More

    Facebook Twitter Reddit Email Copy Link
    Previous Article10 Tips for Using Your LinkedIn Profile to the Best Advantage (Free Download)
    Next Article Qubes OS – security-oriented operating system

    Related Posts

    News & Updates

    The Alters: Release date, mechanics, and everything else you need to know

    June 2, 2025
    News & Updates

    I’ve fallen hard for Starsand Island, a promising anime-style life sim bringing Ghibli vibes to Xbox and PC later this year

    June 2, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    I’ve tested dozens of smartwatches, but the Oura Ring 4 was first to show me I’m sick

    News & Updates

    Laravel: How to Customize Verification Email Text

    Development

    E.U. Commission Fined for Transferring User Data to Meta in Violation of Privacy Laws

    Development

    NIST Releases a Machine Learning Tool for Testing AI Model Risks

    Development
    Hostinger

    Highlights

    How to resolve “Error: TypeScript compilation failed.” issue in Gitlab CI?

    June 17, 2024

    I’m trying to learn to create a pipeline in Gitlab. All my tests fail because of the compilation issue. My code is included below along with the error message.
    import loginPage from “../PageObjects/loginPage”;

    fixture(‘Login Tests’)
    .page(‘https://www.saucedemo.com/’);

    test(‘User Login to the website’, async (t) => {
    await loginPage.loginWebsite(‘performance_glitch_user’,’secret_sauce’);
    });

    import { Selector, t } from “testcafe”;

    class loginPage{
    userName: Selector;
    password: Selector;
    loginBtn: Selector;
    pageName: Selector;

    constructor(){
    this.userName = Selector(‘#user-name’);
    this.password = Selector(‘#password’);
    this.loginBtn = Selector(‘#login-button’);
    this.pageName = Selector(‘.title’);
    }

    async loginWebsite(username, password){
    await t
    .typeText(this.userName, username)
    .typeText(this.password, password)
    .click(this.loginBtn)
    .expect(Selector(this.pageName).innerText).eql(‘Products’);
    }
    }

    export default new loginPage;

    package.json
    {
    “name”: “testcafeproj”,
    “version”: “1.0.0”,
    “description”: “Assignment”,
    “main”: “index.js”,
    “scripts”: {
    “test”: “testcafe chrome tests/**/*”,
    “test2”: “testcafe edge tests/**/*”,
    “test:chrome:headless”: “testcafe chrome:headless tests/**/*”,
    “test:chrome:reports”: “testcafe chrome tests/* –reporter html:reports/report.html”,
    “test:chrome:reports:ss”: “testcafe chrome tests/*.ts -s takeOnFails=true –reporter html:reports/report.html”
    },
    “author”: “test”,
    “license”: “ISC”,
    “devDependencies”: {
    “faker”: “^5.5.3”,
    “faker-js”: “^1.0.0”,
    “testcafe”: “^2.4.0”,
    “typescript”: “^4.9.5”
    },
    “dependencies”: {
    “@faker-js/faker”: “^7.6.0”,
    “testcafe-reporter-html”: “^1.4.6”
    }
    }

    .gitlab-ci.yml
    stages:
    – test

    test_job:
    image: cypress/browsers:node18.12.0-chrome107
    stage: test
    script:
    – npm ci
    – npm run test:chrome:headless

    This is the error message in CI

    CVE-2025-47681 – Ability, Inc Web Accessibility with Max Access CSRF

    May 7, 2025

    Video security analysis for privileged access management using generative AI and Amazon Bedrock

    January 22, 2025

    I tested LG’s new QNED90T TV, and it made me miss my OLED a little less

    June 12, 2024
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.