DistroWatch Weekly |
Tip Jar |
If you've enjoyed this week's issue of DistroWatch Weekly, please consider sending us a tip. (Tips this week: 3, value: US$64.85) |
|
|
|
bc1qxes3k2wq3uqzr074tkwwjmwfe63z70gwzfu4lx lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhhxarpw3jkc7tzw4ex6cfexyfua2nr 86fA3qPTeQtNb2k1vLwEQaAp3XxkvvvXt69gSG5LGunXXikK9koPWZaRQgfFPBPWhMgXjPjccy9LA9xRFchPWQAnPvxh5Le paypal.me/distrowatchweekly • patreon.com/distrowatch |
|
Extended Lifecycle Support by TuxCare |
|
Reader Comments • Jump to last comment |
1 • Decade celebration (by biopsin on 2022-11-28 02:17:25 GMT from Norway)
I switched from crunchbang to void when it was announced debian adopting systemd and I have never looked at any other system since. Deployed on many different hw configs without much fuzz. I feel I found my second love for life.
2 • Create aliases, but using same name (override the original command) (by LiuYan on 2022-11-28 02:23:51 GMT from China)
I do create aliases, but the alias name is same as the original command.
Aliases were created to fit my hobby: * Ignore cases (grep less ...) * Colorful output (ls ip grep less ...) * Disable IPv6 (wget curl host ...) * Continuous downloading (wget aria2c rsync ...)
3 • Alieses (by penguinx86 on 2022-11-28 02:45:47 GMT from United States)
I used to use aliases all the time back in the day when I was a Unix sysadmin. Stuff like #alias la="ls -al" is very useful in a production environment. But recently, I studied for the LPIC-1 exams in my home computer environment. I had to learn all the commands and options from the man pages to study for the exams. Aliases will not help you pass the exams! That's why I stopped using aliases. But if I ever did find a Linux job in a production environment, sure, I'd use aliases again.
After getting the LPIC-1 certification, it seems like nobody in the USA even knows what it is. Maybe it's more well know in Canada? CompTIA Linux+ is much more well recognized in California where I live. So I recommend the Linux+ certification over LPIC-1 to anyone who wants to get certified in the USA.
4 • November Void (by mnrv-ovrf-year-c on 2022-11-28 04:12:36 GMT from Puerto Rico)
I had Void for three months but just got sick and tired of it because inflexible XFCE resisted all my attempts to change it visually. In customization it was the complete opposite of Fedora XFCE. If only Void had the good looks of default Gnuinos. Turned off by "musl" branch too because I depend on Wine 32-bit much more than 64-bit. It was my fault becoming adventurous about "musl" but it's pretty much worthless for what I'm usually interested in doing, and discovered this as well with Static Linux (Russian distro) as well.
5 • Audio support by Void, RedCore Linux et al (by Ben Myers on 2022-11-28 04:51:37 GMT from United States)
Void apparently does not support the audio in Jesse's laptop. Which is the audio chip present in the laptop. So Void, RedCore Linux and others can deal better with this problem, how about identifying the audio chip in the laptop? That way, developers of the distro might be able to correct the problem, which can often be specific to a particular chipset, and may simply be the absence of a specific audio driver. Or maybe not. Without specifics, it is difficult to know. .
6 • Void (by Bert on 2022-11-28 05:25:19 GMT from Belgium)
Beleave it or not: I had Void sceduled for testing (installing) today, so the review could not have been published at a better time and I thank Jesse for the link to the cheatsheet, I'm sure that'll make things a litlle easier for me. I'm looking forward of testing the Void myself.
7 • void linux (by user on 2022-11-28 06:15:07 GMT from Bulgaria)
Void is a true systemd deliverance to me and runit is great. Void setup with zfsbootmenu is superior over any other zfs-centric Linux distro setup. The fun of Linux is back.
8 • Void, and Aliases (by Andy Prough on 2022-11-28 06:15:56 GMT from United States)
I used Void last year, really liked it. I can attest to the crazy boot times. The main things I liked was that it can be so minimal, and that it's a rolling release yet at the same time the packages were not bleeding edge like with Arch and Tumbleweed. So the system never experienced any breakage or instability.
One thing I did not like about it is that Void uses a combination of reddit and various github issue trackers instead of a normal user forum, so searching for answers to complex issues is a big mess. Also the fact that most 3rd party programs are not created in a format that can be easily used on Void.
===========================================================
Regarding aliases, one thing you can do is combine aliases with &&: alias combo1="alias1 && alias2 && alias3"
With aliases you can use a lot of your regular commands. For example, you can add a pause of a few seconds between commands by inserting a sleep command: alias combo2="alias1 && sleep 4 && alias2 && sleep 4 && alias3"
You can pipe the output of one alias into another alias, or pipe the output of any normal command into an alias. They can get pretty exotic.
9 • aliases (by Dr.J on 2022-11-28 07:45:59 GMT from Germany)
I can't imagine handling my system without aliases. I use them since I switched to Arch and work much more with the console than before (Linux Mint). I use them for everyday things (like pacman and trizen, journal evaluations, dmesg etc.; as an example: just three letters "tri" and the system is upgrading Arch and AUR) as well as and especially for very long command chains that I need from time to time (like "compact" for the very long command to virtualbox to edit a virtual machine or various rsync commands that are not automated). There would be many more, but I have integrated several aliases into the filemanager and buttons or toolbars do the job.
10 • this should be default aliases (by always curious about FOSS on 2022-11-28 08:32:04 GMT from Germany)
alias update='sudo apt update && sudo apt upgrade --with-new-pkgs' alias install='sudo apt install' alias delete='sudo apt purge $1 && sudo apt autoremove'
With these aliases as as predefined defaults in the distro would be made using the commandline for package management very easy for newbies.
Also possible for the other package managements like dnf or pacman and so on.
11 • easiest way to write an alias (by always curious about FOSS on 2022-11-28 08:50:19 GMT from Germany)
In a former edition of "Questions and Answers" Jesse gave an example for writing an alias in the .bashrc file.
If I remember correctly, he did the commandline this way:
echo "update='sudo apt update && sudo apt upgrade --with-new-pkgs'" >> ~/.bashrc
I used this way for a longer time, but today I do an other way:
cat >> .bashrc (the terminal go to a new line ) 'sudo apt update && sudo apt upgrade --with-new-pkgs' STRG + d
12 • @11 (meself) a mistake (by always curious about FOSS on 2022-11-28 08:58:15 GMT from Germany)
"Da hat der Fehlerteufel zugeschlagen" as we say in German. I was too hasty and the error was already in. The command line does not forgive inaccuracies.
correctly:
cat >> .bashrc (the terminal go to a new line ) alias update='sudo apt update && sudo apt upgrade --with-new-pkgs' STRG + d
13 • @4 - XFCE is not the only option (by Uncle Slacky on 2022-11-28 09:47:43 GMT from France)
Other DEs are available on Void if you don't like XFCE. The Void website used to offer several downloads with different DEs, and even now you can find nightly builds of many of them at https://www.voidbuilds.xyz if you don't want to install them yourself.
14 • No sound in the Void (by Appalachian on 2022-11-28 09:48:21 GMT from United States)
As it turns out I tried out Void a couple of weeks ago, and I had the same audio problem that Jesse reported. I tried the steps laid out in the Void handbook, as well as numerous tips resulting from online searches. Complete silence. I have had no problems with sound on this same laptop when running Arch, Debian, SUSE, etc. Oh well, guess Void isn't for me.
15 • Void Linux (by Hoos on 2022-11-28 10:06:05 GMT from Singapore)
Void is definitely the fastest booting distro I run and I like it, though it's not my main distro.
I installed the Cinnamon version years ago and it continues to run well. Didn't have problems with sound, but Cinnamon's logout/shutdown/reboot applet didn't seem to work. I had to do some research before I found the solution. It was something to do with permissions/privilege escalation if I recall. Very strange -- I'd not encountered that issue previously in Mint and Geckolinux Cinnamon.
16 • Aliases (by DachshundMan on 2022-11-28 10:40:02 GMT from United Kingdom)
Even though I did learn about them in an HP-UX course many years ago I do not tend to create any aliases so I answered no. However, I notice that Mint Mate has the following predefined aliases and I do use ls so maybe I should have answered yes.
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' alias egrep='egrep --color=auto' alias fgrep='fgrep --color=auto' alias grep='grep --color=auto' alias l='ls -CF' alias la='ls -A' alias ll='ls -alF' alias ls='ls --color=auto'
17 • Void (by 0323pin on 2022-11-28 11:12:36 GMT from Sweden)
Been running Void, with musl libc since October 2017. Rolling since then without issues. Installed from the base ISO and currently using LeftWM.
18 • Void -Sound issue (by Arjen on 2022-11-28 11:24:40 GMT from Netherlands)
I had also some sound problems but after installing
$ sudo xbps-install pipewire $ sudo xbps-install alsa-utils
the soundissue was solved
VOID is amazing fast!
19 • @4 void - customizing xfce4 (by always curious about FOSS on 2022-11-28 11:47:58 GMT from Germany)
mnrv-ovrf-year-c wrote: "I had Void for three months but just got sick and tired of it because inflexible XFCE resisted all my attempts to change it visually."
So please tell me. What did you try to change and why didn't it worked? For me XFCE4 is my favorite Desktop just because it's easily to customize in it's look and feel. I can give you a lot of advices about it.
mnrv-ovrf-year-c wrote: "In customization it was the complete opposite of Fedora XFCE."
So what do you mean? It's always the same XFCE with the same possibilities to change it, no matter what distribution it is based on. Or did you mean the default theme of Fedora XFCE ? For myself the default theme of Fedora XFCE is such boring, so that i never get warm with Fedora.
20 • Void (by crayola-eater on 2022-11-28 13:10:01 GMT from United States)
At sometime during my journey to find a comfortable systemd-less light-weight and slim distro, I gave Void a spin. It pretty much checked all the boxes for me, and after a short bit getting used to it's particular ways of doing things, I had thought that maybe this was the one. There was at the time a graphical upgrade tool (forget the name) that was not really advertised, but it did do a nice job, especially if you desired to just do a bit of browsing the repository. Don't recall any sound problem that was not readily fixed. What I think the reason is that it is not my daily driver today - rolling release. Twice I did an update that broke the system. I just enjoy 'update and continue on' more than I desire the latest and greatest (cut my teeth on Slackware in the early 90's - does it show?). I can break a system by myself quite handily, I don't need any additional help. Still, I did like Void and it's overall construction. I keep looking at giving it another go, and this new review seems to say maybe it is time.
21 • A rose by any other name (by Trihexagonal on 2022-11-28 13:43:43 GMT from United States)
I've never used aliases with the command line.but a day doesn't pass where I use it extensively on FreeBSD and Linux. It's more orderly that way IMO.
I use the up arrow to access previously typed out commands and can go back through every command to the first command I issued at the desktop after the initial install on my Kali boxen
I don't change the default shell either and prefer sh but can use whatever presents itself.
As a longtime Fluxbox user I abhorred any and all DE as someone else forcing their choice of programs on me till I started using Kali last year. I still use Fluxbox exclusively on FreeBSD but mostly use Xfce on Kali due to the sheer number of programs I have installed.
I use the same fonts across different programs for continuity on all my desktops and even though I have rxvt-unicode and Xfe installed use the default terminal and File Manager with Xfce.
22 • No aliases (by LIFE!!! on 2022-11-28 13:53:28 GMT from Ireland)
I have life and girlfriend so can't afford to waste my time on such things.
using only distros that can be configured with graphical tools
23 • Void is awesome (by Matt on 2022-11-28 13:54:50 GMT from United States)
It does a better job of keeping it simple than Arch does. I never had an update break something in Void. Also, Void has options for all the major desktop environments in their official repositories, so it is quite easy to switch to something else besides XFCE. Runit does everything an init system needs to do and nothing more.
There are only 2 drawbacks to Void for me:
(1) The installer does not help at all if you want to use disk encryption. Disk encryption is problematic for a lot of installers, though (including Calamares).
(2) I use a lot of applications that are either not easy to install, or require compiling from source. This includes Grsync, Unison, Kile, Kbibtex, Zoom, and Google Chrome.
24 • Void Linux (by Otis on 2022-11-28 14:08:45 GMT from United States)
I found that audio issue, along with networking issues, in Void and most BSD distributions. The workarounds or solutions are basic, of course, but in my opinion should be resolved by the developers of those distos and passed along to users via at least documentation but ideally configuration choices at installation time.
Yes, they want to keep things light for that genre of OS in the distro world, but there is that balance of lightness vs fundamental usability. And the resultant aggravation. ;)
25 • @22 • No aliases (by LIFE!!! from Ireland) (by Leonie on 2022-11-28 14:11:14 GMT from France)
That's exactly WHY 99% uses THE OS, and 1% uses Linux. ;)
Not only one gains the lifetime, but it also saves one from writing nonsense as above (@24 • November Void (by mnrv-ovrf-year-c from Puerto Rico).
;)
:) :) :)
26 • aliases (by Jay on 2022-11-28 14:31:44 GMT from Latvia)
What's the point of even having a shell without aliases, functions, or scripting? You can't be efficient or effective at the command line without them.
27 • No aliases (by Goal on 2022-11-28 15:04:59 GMT from Italy)
@25 The goal of GNU/Linux has never been to create an operating system for the masses.
28 • @27 • No aliases (by Goal from Italy) (by Leonie on 2022-11-28 15:46:23 GMT from France)
"The goal of GNU/Linux has never been to create an operating system for the masses. "
Truth.
And that's why it was, is and will forever stay irrelevant.
Namely, the rest consists of 'freaks' and 'weather simulations'.
;)
29 • Is it though? (by Friar Tux on 2022-11-28 16:31:04 GMT from Canada)
While I agree that the goal of GNU/Linux has never been to create an operating system for the masses, I don't think Linux "was, is and will forever stay irrelevant." It's relevance is in the fact that it is a very good workable alternative to the two "Big Guys" out there. I've been using Linux for many years and have never had a "lost-time" issue. (And I was an avid Windows fan until Windows 10.)
30 • GNU/Linux irrelevant (by gfhzo on 2022-11-28 18:54:33 GMT from Germany)
"And that's why it was, is and will forever stay irrelevant."
@28: maybe true on the desktop side. But definitely does not apply at the server side. Furthermore the Top 500 supercomputers are running meanwhile *all* on OS family Linux.
https://www.top500.org/statistics/list/
31 • Void Linux (by FRC_KDE on 2022-11-28 19:29:39 GMT from Brazil)
I have started to "multiboot" up to 12 distros back in 2017, and so I gradually moved from "buntus-based" to Arch Linux as my main distros, over these 5 years. - I have KDE Neon, yet, but last 12 months I have uses mostly Arch Linux. - Debian testing and MX Linux (stable) are fine to me, too.
Void is a "recent" acquisition to me (2019 to 2020), and I face a few problems with it, yet, but it seems to be "a possible future" to me. - Redcore is more recent to me (2022), and I guess it can be the a "possible next step" after Void, to me, in the future.
I had some problems with Audio in Void, too. Basicly, I did install "alsa-utils" e did use "$ alsamixer" command in order to enable the channels I needed and configure their volume levels. - I always use volume 80% for the system and 50% for VLC, and if I need a few more control, I just use Youtube / Twitter / Facebook etc. controls for eventual cases.
So, I don't really need "Audio control" on Panel - even if I can use it in all my other distros - all of them with KDE.
When I installed Void, there was none "KDE ISO", so I have used the basic ISO, because the Xfce ISO would not make it possible to me to choose another DE, and there was none clear "official" documentation right to install KDE. - I don't know if I did it the right way. Maybe, there was no "right way", back then.
Void (with KDE) is not my quickest distro to boot, but is one of the lightest among my distros with KDE. No crash over these 3 years using Void Linux. Just 1 time, I had a minor problem (as with Debian testing, too), but I think it was a KDE problem (not immediately solved by Void team).
Void Linux keeps KDE just a few days behind, e.g., Arch and KDE Neon, but it is not a problem to me. - MX Linux and Mageia keep their KDE months behind them, and it is nice to me.
I have no problem with "new" or "old" Kernel, in any distro, as far I my hardware is not so "new", and I have none utility for strange GPU cards, nor to Wifi, Bluetooth and so on. - Just an Intel iGPU on Asus motherboard + i5-9400 CPU.
Upgrading Google Chrome is sad, indeed. Not an automatic task. And there are other 2 or 3 packages in this case, to me. - But these are not so big problems, as I can work a whole week (or a few weeks) without them.
If Void Linux was my unique distro, maybe I would have solved these problemas (or given up Void Linux), but I can use Arch (and other distros) for now, so, I feel no worry.
32 • Running an alias manually (by K.U. on 2022-11-28 19:51:39 GMT from Finland)
I don't usually feel much need for aliases because I can find long commands easily again from command line history using the bash backward search (ctrl R).
I have just one home made alias in regular use and it this one: alias mpv='mpv --no-ytdl -af=equalizer=0:0:4:4:3:1:2:1:-1:-2'
I find the above command again with ctrl R o- and modify and run the command when needed.
Then I can play a stream easily with or without equalizer and other switches easily like this:
mpv $(curl https://podcasts.files.bbci.co.uk/p002vsxs.rss | awk -F \" -v RS=" " '$1=="url=" {print $2}') #Business Daily
I also have a long file with mpv commands for various streams to be played in random order.
Some streams may need different switches than others and the various switches are included in the commands as well.
By issuing the above alias with equalizer and other switches before running the file with streaming commands the same equalizer will be applied to each mpv command within the file.
33 • Fedora (by Panther on 2022-11-28 20:06:38 GMT from United States)
Last week's review of Fedora was much better than previous, thank you for that .
I am guessing most people who answered "no" for the use of Bash aliases use their distros aliases as most distros have at least a few set by default and one would have to specifically disable them, but hard to know.
@5 "Hardware
I found Void ran smoothly in VirtualBox."
34 • @20 - graphical upgrade tool (by Uncle Slacky on 2022-11-28 21:23:27 GMT from France)
I think you're thinking of Octoxbps: https://github.com/aarnt/octoxbps
35 • Void Sound (by Rick Smereka on 2022-11-28 21:40:51 GMT from Luxembourg)
@18 and anyone interested in the Void Linux sound issue,
I have previously spent a lot of time trying to the get the sound to work in Void. I don't think it is an audio card detection problem. It seems to be centered aound the fact that Void installs ALSA and PulseAudio. In the past, I did get the audio working for one session. Upon reboot, the audio would mute again.
I can confirm that @18 comments do work except some items were forgotten. In addition to the two xbps-install commands, I installed xfce4-alsa-plugin and then went into the Panel utility and added the ALSA Volume control and the sound works.
BTW, I installed on hard metal, not a VM on an rather old Dell Latitude with 100% Intel chipset.
36 • Alias fan (by AdamB on 2022-11-29 05:41:49 GMT from Australia)
Over the years I have become an increasingly heavy user of aliases. I have several headless servers (either physical machines or virtual machines) so I spend a lot of time on the command line. Even on graphical Desktop Environments, I now often find it quicker and easier to work from the command line.
Working effiiciently from the command line is made much easier with my preferred collection of aliases, particularly those relating to 'ls' and 'pushd/popd'.
If a distro pre-configures aliases, I disable them, because they will usually conflict with my own. Most of my aliases can be set up on any Linux distro, and even FreeBSD.
When setting up a new machine, one of the first things I do is to scp in a file which I source to set up my navigation aliases.
37 • Remote Suspend (by Head_on_a_Stick on 2022-11-29 07:31:42 GMT from United Kingdom)
Writing to /sys/power/state directly should suspend the machine regardless of init system. It also does not require any pm-utils bloat :-)
38 • Void working well (by AdamB on 2022-11-29 09:29:47 GMT from Australia)
I installed Void more than 2 years ago on my multi-boot machine, when I was having trouble with Arch. I installed it, from the beginning, with the MATE desktop environment, and it has been working well. I have never had any problem with updates. As far as I can remember, most things worked right away.
Sound works well; alsa-utils is not installed, but pulseaudio is installed. There is a 'sound' icon in the system-tray, which works.
My only reservation with Void is that its repository does not hold some appications that I use, and that are available in Debian/Devuan or Arch/AUR, so I have to boot into Arch (which worked OK after re-installation) in order to use those.
39 • aliases (by DaveT on 2022-11-29 10:45:56 GMT from United Kingdom)
A lifetime ago I had to learn to create aliases for the UNIX module of my MSc. I haven't needed to create an alias to make my work easier since the mid 1990s.
40 • Void Linux Sitrep 2022 (by Experienced Void User on 2022-11-30 21:16:36 GMT from United States)
Many Void users are minimalists who customize WMs and don't want a sound system imposed on them. That's my guess. Void can run without PulseAudio, unlike other distros. Run PA if you like, but Void can do pure ALSA (use apulse for Firefox). Void repos also have PipeWire.
So Void gives choice. Void has never been into desktop spins. Unofficial nightlies mentioned by Uncle Slacky are your best bet. Void focuses on automated build infrastructure.
Still yes, *official desktop spins* should have working sound. Pure ALSA would be the way to go, because PulseAudio can be added on top. Just a few months ago, I had to get ALSA working on a laptop. You can reorder sound cards in /etc/modprobe.d rather than .asoundrc. Slackware has good tips: https://docs.slackware.com/howtos:hardware:audio_and_snd-hda-intel
I've been on Void musl for years without hiccups. Whether musl or glibc, Void supports containers, docker, flatpak, wine, chroot. So what Void lacks in packages, you can make up in other ways.
Void has the best ZFS support of any Linux distro. And if you want disk encryption in Void, you might try Split Linux.
I find musl more stable than glibc. You will have a problem if you need a closed-blob printer driver. In that case either run a glibc print server on your LAN (whatever distro your printer OEM likes), or use Void glibc. Technically you can run both musl and glibc on the same machine with chroot, but this trick means maintaining two distros on one disk.
A key problem in Void is the lack of 'big browser' choice. Repos have two big-name and a dozen toy browsers. People have begged for years for serious alternatives. You'll need flatpak or somesuch if you want them. Of course, Void would welcome competent coders willing to maintain browsers. The issue seems to be manpower. Void repos also have plenty of orphans needing love.
Void rollingness is sensible. Arch crashes by tracking the most recent upstream kernel. Void delays until point releases have shipped. You can run the latest kernel if you want. It's just not Void's default until then. And Void never deletes a kernel, so you can always fall back. Use vkpurge to delete old kernels. You can have multiple kernel series installed and pick which to boot from GRUB. Void will update each kernel series like any other package.
41 • Void is fastest Linux OS (by Pawan on 2022-12-01 14:37:50 GMT from India)
In my experience of using Linux over 16 years and almost 25+ Linux distros, I found Void to be fastest linux OS in the mainstream OS. After using Void every other distro seems to be slow in all aspects (boot, responsiveness).
And its minimalist, stable rolling release model makes it most suitable to those who want their PC and OS to just get the job done and not come in the way.
I am using it on my PC from last 2 years and did not find the issue of sound not working, may be that is applicable to only some specific cards.
Number of Comments: 41
Display mode: DWW Only • Comments Only • Both DWW and Comments
| | |
TUXEDO |
TUXEDO Computers - Linux Hardware in a tailor made suite Choose from a wide range of laptops and PCs in various sizes and shapes at TUXEDOComputers.com. Every machine comes pre-installed and ready-to-run with Linux. Full 24 months of warranty and lifetime support included!
Learn more about our full service package and all benefits from buying at TUXEDO.
|
Archives |
• Issue 1090 (2024-09-30): Rhino Linux 2024.2, commercial distros with alternative desktops, Valve seeks to improve Wayland performance, HardenedBSD parterns with Protectli, Tails merges with Tor Project, Quantum Leap partners with the FreeBSD Foundation |
• Issue 1089 (2024-09-23): Expirion 6.0, openKylin 2.0, managing configuration files, the future of Linux development, fixing bugs in Haiku, Slackware packages dracut |
• Issue 1088 (2024-09-16): PorteuX 1.6, migrating from Windows 10 to which Linux distro, making NetBSD immutable, AlmaLinux offers hardware certification, Mint updates old APT tools |
• Issue 1087 (2024-09-09): COSMIC desktop, running cron jobs at variable times, UBports highlights new apps, HardenedBSD offers work around for FreeBSD change, Debian considers how to cull old packages, systemd ported to musl |
• Issue 1086 (2024-09-02): Vanilla OS 2, command line tips for simple tasks, FreeBSD receives investment from STF, openSUSE Tumbleweed update can break network connections, Debian refreshes media |
• Issue 1085 (2024-08-26): Nobara 40, OpenMandriva 24.07 "ROME", distros which include source code, FreeBSD publishes quarterly report, Microsoft updates breaks Linux in dual-boot environments |
• Issue 1084 (2024-08-19): Liya 2.0, dual boot with encryption, Haiku introduces performance improvements, Gentoo dropping IA-64, Redcore merges major upgrade |
• Issue 1083 (2024-08-12): TrueNAS 24.04.2 "SCALE", Linux distros for smartphones, Redox OS introduces web server, PipeWire exposes battery drain on Linux, Canonical updates kernel version policy |
• Issue 1082 (2024-08-05): Linux Mint 22, taking snapshots of UFS on FreeBSD, openSUSE updates Tumbleweed and Aeon, Debian creates Tiny QA Tasks, Manjaro testing immutable images |
• Issue 1081 (2024-07-29): SysLinuxOS 12.4, OpenBSD gain hardware acceleration, Slackware changes kernel naming, Mint publishes upgrade instructions |
• Issue 1080 (2024-07-22): Running GNU/Linux on Android with Andronix, protecting network services, Solus dropping AppArmor and Snap, openSUSE Aeon Desktop gaining full disk encryption, SUSE asks openSUSE to change its branding |
• Issue 1079 (2024-07-15): Ubuntu Core 24, hiding files on Linux, Fedora dropping X11 packages on Workstation, Red Hat phasing out GRUB, new OpenSSH vulnerability, FreeBSD speeds up release cycle, UBports testing new first-run wizard |
• Issue 1078 (2024-07-08): Changing init software, server machines running desktop environments, OpenSSH vulnerability patched, Peppermint launches new edition, HardenedBSD updates ports |
• Issue 1077 (2024-07-01): The Unity and Lomiri interfaces, different distros for different tasks, Ubuntu plans to run Wayland on NVIDIA cards, openSUSE updates Leap Micro, Debian releases refreshed media, UBports gaining contact synchronisation, FreeDOS celebrates its 30th anniversary |
• Issue 1076 (2024-06-24): openSUSE 15.6, what makes Linux unique, SUSE Liberty Linux to support CentOS Linux 7, SLE receives 19 years of support, openSUSE testing Leap Micro edition |
• Issue 1075 (2024-06-17): Redox OS, X11 and Wayland on the BSDs, AlmaLinux releases Pi build, Canonical announces RISC-V laptop with Ubuntu, key changes in systemd |
• Issue 1074 (2024-06-10): Endless OS 6.0.0, distros with init diversity, Mint to filter unverified Flatpaks, Debian adds systemd-boot options, Redox adopts COSMIC desktop, OpenSSH gains new security features |
• Issue 1073 (2024-06-03): LXQt 2.0.0, an overview of Linux desktop environments, Canonical partners with Milk-V, openSUSE introduces new features in Aeon Desktop, Fedora mirrors see rise in traffic, Wayland adds OpenBSD support |
• Issue 1072 (2024-05-27): Manjaro 24.0, comparing init software, OpenBSD ports Plasma 6, Arch community debates mirror requirements, ThinOS to upgrade its FreeBSD core |
• Issue 1071 (2024-05-20): Archcraft 2024.04.06, common command line mistakes, ReactOS imports WINE improvements, Haiku makes adjusting themes easier, NetBSD takes a stand against code generated by chatbots |
• Issue 1070 (2024-05-13): Damn Small Linux 2024, hiding kernel messages during boot, Red Hat offers AI edition, new web browser for UBports, Fedora Asahi Remix 40 released, Qubes extends support for version 4.1 |
• Issue 1069 (2024-05-06): Ubuntu 24.04, installing packages in alternative locations, systemd creates sudo alternative, Mint encourages XApps collaboration, FreeBSD publishes quarterly update |
• Issue 1068 (2024-04-29): Fedora 40, transforming one distro into another, Debian elects new Project Leader, Red Hat extends support cycle, Emmabuntus adds accessibility features, Canonical's new security features |
• Issue 1067 (2024-04-22): LocalSend for transferring files, detecting supported CPU architecure levels, new visual design for APT, Fedora and openSUSE working on reproducible builds, LXQt released, AlmaLinux re-adds hardware support |
• Issue 1066 (2024-04-15): Fun projects to do with the Raspberry Pi and PinePhone, installing new software on fixed-release distributions, improving GNOME Terminal performance, Mint testing new repository mirrors, Gentoo becomes a Software In the Public Interest project |
• Issue 1065 (2024-04-08): Dr.Parted Live 24.03, answering questions about the xz exploit, Linux Mint to ship HWE kernel, AlmaLinux patches flaw ahead of upstream Red Hat, Calculate changes release model |
• Issue 1064 (2024-04-01): NixOS 23.11, the status of Hurd, liblzma compromised upstream, FreeBSD Foundation focuses on improving wireless networking, Ubuntu Pro offers 12 years of support |
• Issue 1063 (2024-03-25): Redcore Linux 2401, how slowly can a rolling release update, Debian starts new Project Leader election, Red Hat creating new NVIDIA driver, Snap store hit with more malware |
• Issue 1062 (2024-03-18): KDE neon 20240304, changing file permissions, Canonical turns 20, Pop!_OS creates new software centre, openSUSE packages Plasma 6 |
• Issue 1061 (2024-03-11): Using a PinePhone as a workstation, restarting background services on a schedule, NixBSD ports Nix to FreeBSD, Fedora packaging COSMIC, postmarketOS to adopt systemd, Linux Mint replacing HexChat |
• Issue 1060 (2024-03-04): AV Linux MX-23.1, bootstrapping a network connection, key OpenBSD features, Qubes certifies new hardware, LXQt and Plasma migrate to Qt 6 |
• Issue 1059 (2024-02-26): Warp Terminal, navigating manual pages, malware found in the Snap store, Red Hat considering CPU requirement update, UBports organizes ongoing work |
• Issue 1058 (2024-02-19): Drauger OS 7.6, how much disk space to allocate, System76 prepares to launch COSMIC desktop, UBports changes its version scheme, TrueNAS to offer faster deduplication |
• Issue 1057 (2024-02-12): Adelie Linux 1.0 Beta, rolling release vs fixed for a smoother experience, Debian working on 2038 bug, elementary OS to split applications from base system updates, Fedora announces Atomic Desktops |
• Issue 1056 (2024-02-05): wattOS R13, the various write speeds of ISO writing tools, DSL returns, Mint faces Wayland challenges, HardenedBSD blocks foreign USB devices, Gentoo publishes new repository, Linux distros patch glibc flaw |
• Issue 1055 (2024-01-29): CNIX OS 231204, distributions patching packages the most, Gentoo team presents ongoing work, UBports introduces connectivity and battery improvements, interview with Haiku developer |
• Issue 1054 (2024-01-22): Solus 4.5, comparing dd and cp when writing ISO files, openSUSE plans new major Leap version, XeroLinux shutting down, HardenedBSD changes its build schedule |
• Issue 1053 (2024-01-15): Linux AI voice assistants, some distributions running hotter than others, UBports talks about coming changes, Qubes certifies StarBook laptops, Asahi Linux improves energy savings |
• Issue 1052 (2024-01-08): OpenMandriva Lx 5.0, keeping shell commands running when theterminal closes, Mint upgrades Edge kernel, Vanilla OS plans big changes, Canonical working to make Snap more cross-platform |
• Issue 1051 (2024-01-01): Favourite distros of 2023, reloading shell settings, Asahi Linux releases Fedora remix, Gentoo offers binary packages, openSUSE provides full disk encryption |
• Issue 1050 (2023-12-18): rlxos 2023.11, renaming files and opening terminal windows in specific directories, TrueNAS publishes ZFS fixes, Debian publishes delayed install media, Haiku polishes desktop experience |
• Issue 1049 (2023-12-11): Lernstick 12, alternatives to WINE, openSUSE updates its branding, Mint unveils new features, Lubuntu team plans for 24.04 |
• Issue 1048 (2023-12-04): openSUSE MicroOS, the transition from X11 to Wayland, Red Hat phasing out X11 packages, UBports making mobile development easier |
• Issue 1047 (2023-11-27): GhostBSD 23.10.1, Why Linux uses swap when memory is free, Ubuntu Budgie may benefit from Wayland work in Xfce, early issues with FreeBSD 14.0 |
• Issue 1046 (2023-11-20): Slackel 7.7 "Openbox", restricting CPU usage, Haiku improves font handling and software centre performance, Canonical launches MicroCloud |
• Issue 1045 (2023-11-13): Fedora 39, how to trust software packages, ReactOS booting with UEFI, elementary OS plans to default to Wayland, Mir gaining ability to split work across video cards |
• Issue 1044 (2023-11-06): Porteus 5.01, disabling IPv6, applications unique to a Linux distro, Linux merges bcachefs, OpenELA makes source packages available |
• Issue 1043 (2023-10-30): Murena Two with privacy switches, where old files go when packages are updated, UBports on Volla phones, Mint testing Cinnamon on Wayland, Peppermint releases ARM build |
• Issue 1042 (2023-10-23): Ubuntu Cinnamon compared with Linux Mint, extending battery life on Linux, Debian resumes /usr merge, Canonical publishes fixed install media |
• Issue 1041 (2023-10-16): FydeOS 17.0, Dr.Parted 23.09, changing UIDs, Fedora partners with Slimbook, GNOME phasing out X11 sessions, Ubuntu revokes 23.10 install media |
• Issue 1040 (2023-10-09): CROWZ 5.0, changing the location of default directories, Linux Mint updates its Edge edition, Murena crowdfunding new privacy phone, Debian publishes new install media |
• Issue 1039 (2023-10-02): Zenwalk Current, finding the duration of media files, Peppermint OS tries out new edition, COSMIC gains new features, Canonical reports on security incident in Snap store |
• Issue 1038 (2023-09-25): Mageia 9, trouble-shooting launchers, running desktop Linux in the cloud, New documentation for Nix, Linux phasing out ReiserFS, GNU celebrates 40 years |
• Issue 1037 (2023-09-18): Bodhi Linux 7.0.0, finding specific distros and unified package managemnt, Zevenet replaced by two new forks, openSUSE introduces Slowroll branch, Fedora considering dropping Plasma X11 session |
• Issue 1036 (2023-09-11): SDesk 2023.08.12, hiding command line passwords, openSUSE shares contributor survery results, Ubuntu plans seamless disk encryption, GNOME 45 to break extension compatibility |
• Full list of all issues |
Star Labs |
Star Labs - Laptops built for Linux.
View our range including the highly anticipated StarFighter. Available with coreboot open-source firmware and a choice of Ubuntu, elementary, Manjaro and more. Visit Star Labs for information, to buy and get support.
|
Random Distribution |
Linux From Scratch
Linux From Scratch (LFS) is a project that provides you with the steps necessary to build your own custom Linux system. There are a lot of reasons why somebody would want to install an LFS system. The question most people raise is "why go through all the hassle of manually installing a Linux system from scratch when you can just download an existing distribution like Debian or Redhat". That is a valid question which I hope to answer for you. The most important reason for LFS's existence is teaching people how a Linux system works internally. Building an LFS system teaches you about all that makes Linux tick, how things work together, and depend on each other. And most importantly, how to customize it to your own taste and needs.
Status: Active
| Tips, Tricks, Q&As | Tips and tricks: Running Fedora "Rawhide" |
Tips and tricks: Running openSUSE "Factory" |
Questions and answers: Changing user identification numbers |
Questions and answers: An overview of Docker |
Questions and answers: Where to start learning the command line |
Questions and answers: AppArmor, home movies, tabs in Vim, syntax highlighting |
Tips and tricks: Shell switching, battery charge, getting the system's IP address and dealing with stubborn processes |
Tips and tricks: Basename, for loop, dirname, aliases, bash history, xsel clipboard |
Questions and answers: WINE and Mono on live media |
Tips and tricks: Compressing memory with zRAM |
More Tips & Tricks and Questions & Answers |
TUXEDO |
TUXEDO Computers - Linux Hardware in a tailor made suite Choose from a wide range of laptops and PCs in various sizes and shapes at TUXEDOComputers.com. Every machine comes pre-installed and ready-to-run with Linux. Full 24 months of warranty and lifetime support included!
Learn more about our full service package and all benefits from buying at TUXEDO.
|
Star Labs |
Star Labs - Laptops built for Linux.
View our range including the highly anticipated StarFighter. Available with coreboot open-source firmware and a choice of Ubuntu, elementary, Manjaro and more. Visit Star Labs for information, to buy and get support.
|
|