Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

💚 Ci sono persone che riparano computer, e poi c’è chi ripara le possibilità


Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    17 Posts
    49 Views
    @snap2grid Also, thank you! <3
  • 0 Votes
    1 Posts
    7 Views
    Running out of disk space on your Linux, macOS, BSD, or Unix-like OS? Or perhaps you're hitting the classic disk quota limits set by your sysadmin? Fear not. Run `du -sh * | sort -h` command to get a sorted list of your directory sizes so you can remove or compress unwanted files. Here is another useful shell alias:```alias ducks='du -cks -- * | sort -rn | head'ducks```See https://www.cyberciti.biz/faq/how-do-i-find-the-largest-filesdirectories-on-a-linuxunixbsd-filesystem/ for more info.#unix #linux #macos
  • 1 Votes
    1 Posts
    7 Views
    Docker Engine 29: containerd diventa default, arriva il supporto a nftablesLa nuova release di Docker segna un cambio di passo significativo:containerd è ora il runtime predefinito, consolidando l’integrazione con l’ecosistema CNCF.Introdotto il supporto sperimentale a nftables, che apre la strada a una gestione del networking più flessibile e sicura.https://linuxiac.com/docker-engine-29-containerd-becomes-default-experimental-nftables-support/@opensource #Docker #Nftables #Linux #DevOps #CloudNative #OpenSource
  • 0 Votes
    1 Posts
    19 Views
    Namjae Jeon from exFAT and KSMBD fame published a new #NTFS #Linux #kernel driver called #NTFSPLUShttps://lore.kernel.org/lkml/20251020020749.5522-1-linkinjeon@kernel.org/""Currently, ntfs support in Linux was the long-neglected NTFS Classic (read-only), which has been removed from the Linux kernel, leaving the poorly maintained ntfs3. ntfs3 still has many problems and is poorly maintained, so users and distributions are still using the old legacy ntfs-3g.What is ntfsplus? The remade ntfs called ntfsplus is an implementation that supports write and the essential requirements(iomap, no buffer-head, utilities, xfstests test result) based on read-only classic NTFS. The old read-only ntfs code is much cleaner, with extensive comments, offers readability that makes understanding NTFS easier. This is why ntfsplus was developed on old read-only NTFS base. The target is to provide current trends(iomap, no buffer head, folio), enhanced performance, stable maintenance, utility support including fsck.""#LinuxKernel