Quick Roundup
- Latest Headlines
- Highlights
- Archive
- Recent comments
- All-Time Popular Stories
- Hot Topics
- Latest Members
- Categories
Type | Title | Author | Replies |
Last Post![]() |
---|---|---|---|---|
Story | Red Hat Hires a Blind Software Engineer to Improve Accessibility on Linux Desktop | Roy Schestowitz | 27/06/2022 - 2:49pm | |
Story | Today in Techrights | Roy Schestowitz | 27/06/2022 - 2:48pm | |
Story | Android Leftovers | Rianne Schestowitz | 27/06/2022 - 1:32pm | |
Story | GnuCash 4.11 | Rianne Schestowitz | 27/06/2022 - 1:25pm | |
Story | today's leftovers | Roy Schestowitz | 27/06/2022 - 12:28pm | |
Story | Red Hat Servers, and AlmaLinux | Roy Schestowitz | 27/06/2022 - 12:27pm | |
Story | Digitally signing PDF documents in Linux: with hardware token & Okular | Roy Schestowitz | 27/06/2022 - 12:13pm | |
Story | today's howtos | Roy Schestowitz | 27/06/2022 - 11:14am | |
Story | Accessibility in Fedora Workstation | Roy Schestowitz | 27/06/2022 - 10:24am | |
Story | Android Leftovers | Rianne Schestowitz | 27/06/2022 - 10:05am |
Devices With GNU/Linux and Hardware Hacking
Submitted by Roy Schestowitz on Monday 27th of June 2022 08:39:59 AM Filed under
-
Introducing ESP32-C5: Espressif’s first Dual-Band Wi-Fi 6 MCU
ESP32-C5 packs a dual-band Wi-Fi 6 (802.11ax) radio, along with the 802.11b/g/n standard for backward compatibility. The Wi-Fi 6 support is optimised for IoT devices, as the SoC supports a 20MHz bandwidth for the 802.11ax mode, and a 20/40MHz bandwidth for the 802.11b/g/n mode.
-
Compulab’s new IoT gateway is based on NXP’s i.MX.8M processor and runs on Linux, MS Azure IoT and Node RED [Ed: Compulab should shun spyware from Microsoft. Bad neighbourhood.]
The IOT-GATE-IMX8PLUS is an IoT gateway made by Compulab that is based on the NXP i.MX.8M Plus System on Chip (SoC) for commercial or industrial applications. The device features dual GbE ports, Wi-Fi6/BLE 5.3 support, LTE 4G, GPS and many optional peripherals.
Compulab’s new IoT gateway provides support for two processor models, the C1800Q and the C1800QM. Both come with a real time processor but only the C1800QM includes the AI/ML Neural Processing Unit.
-
Want A Break From Hardware Hacking? Try Bitburner
If you ever mention to a normal person that you’re a hacker, and they might ask you if you can do something nefarious. The media has unfortunately changed the meaning of the word so that most people think hackers are lawless computer geniuses instead of us simple folk who are probably only breaking the laws meant to prevent you from repairing your own electronics. However, if you want a break, you can fully embrace the Hollywood hacker stereotype with Bitburner. Since it is all online, you don’t even have to dig out your hoodie.
- Login or register to post comments
Printer-friendly version
- Read more
- 24616 reads
PDF version
today's howtos
Submitted by Roy Schestowitz on Monday 27th of June 2022 08:38:47 AM Filed under
-
Split Audio Files into Parts
I recently got in the need of splitting quite large amount of audio files into smaller equal parts. The first thought that came to my mind was – probably thousand or more people had similar problem in the past so its already solved – so I went directly to the web search engine.
The found solutions seem not that great or work partially only … or not work like I expected them to work. After looking at one of the possible solutions in a bash(1) script I started to modify it … but it turned out that writing my own solution was faster and easier … and simpler.
Today I will share with you my solution to automatically split audio files into small equal parts.
-
A Previous Sibling Selector
In natural language, what I wanted was: “select every
element that directly precedes an <hr> element and style the <a> link inside of it.”
I know how to select the next sibiling of an element with div + p.
And I know how to select any adjacent sibling of an element (which follows it) with div ~ p.
And I learned how to select an element when it only has one child with p:only-child a (even though they are the only element on their line, markdown will wrap the [link](#) elements in a paragraph tag).
But how do I select the previous sibling of an element? Something like p:before(hr) which would select all paragraphs that precede an <hr> element.
-
How to Set Static IP Address on Ubuntu 22.04
Hello folks, in this guide, we will cover how to set static ip address on Ubuntu 22.04 (Jammy Jellyfish) step by step.
-
Make a temporary file on Linux with Bash | Opensource.com
When programming in the Bash scripting language, you sometimes need to create a temporary file. For instance, you might need to have an intermediary file you can commit to disk so you can process it with another command. It's easy to create a file such as temp or anything ending in .tmp. However, those names are just as likely to be generated by some other process, so you could accidentally overwrite an existing temporary file. And besides that, you shouldn't have to expend mental effort coming up with names that seem unique. The mktemp command on Fedora-based systems and tempfile on Debian-based systems are specially designed to alleviate that burden by making it easy to create, use, and remove unique files.
-
Use a SystemTap example script to trace kernel code operation | Red Hat Developer
SystemTap allows developers to add instrumentation to Linux systems to better understand the behavior of the kernel as well as userspace applications and libraries. This article, the first in a two-part series, shows how SystemTap can reveal potential performance problems down to individual lines of code. The second part of the series will describe how a SystemTap performance monitoring script was written.
-
How to Add Your Own Custom Color in LibreOffice - Make Tech Easier
While writing or editing text in LibreOffice, there are times where you need to change the color of the text or the background. LibreOffice comes with its own set of color palette that you choose the color from and it is easily accessible from the toolbar. The problem is that if you want to use a custom color which is not available in the palette, you are out of luck because there are no visible options for you to add your own color to the palette.
-
How to Split Vim Workspace Vertically or Horizontally
There is no better computing environment than the one availed by a Linux operating system distribution. This operating system environment gives its users a complete computing experience without too much interaction with the GUI (Graphical User Interface). The more experienced you are with Linux the more time you spend on the Linux command-line environment.
The command-line environment is efficient enough to handle OS-centered tasks like file editing, configuration, and scripting. A command-line text editor like the Vim editor makes it possible to perform such tasks.
-
How to Create AWS VPC Peering in same account/region using Terraform
Amazon VPC peering enables the network connection between the private VPCs to route the traffic from one VPC to another. You can create VPC Peering between your own VPC with the VPC in the same region or a different region or with other VPCs in a different AWS account in a different region.
AWS create peering connection by using the existing infrastructure of the VPC. VPC peering connection is not a form of gateway or VPN connection. It helps to make easy to transfer the data from VPC to VPC.
In this guice, it is assumed that the VPCs that you want to peer have been created. If you need help creating a VPC checkout this guide. We need to create the peering request from the peering owner VPC, accept the peering connection request in the accepter account and update the route tables in both the VPCs with entries for the peering connection from either side.
-
How to Install Darktable on Ubuntu 22.04 LTS - LinuxCapable
Darktable is a free and open-source photography application program and raw developer. Rather than being a raster graphics editor like Adobe Photoshop or GIMP, it comprises a subset of image editing operations specifically aimed at non-destructive raw image post-production. In addition to basic RAW conversion, Darktable is equipped with various tools for basic and advanced image editing. These include exposure correction, color management, white balance, image sharpening, noise reduction, perspective correction, and local retouching. As a result, Darktable is an incredibly powerful tool for photographers of all experience levels. Best of all, it is entirely free to download and use.
-
How to Create a Sudo User on Fedora Linux
Fedora Linux is not a new name in the world of computing. This Linux operating system distribution has Red Hat as its primary sponsor. Red Hat made its development possible via the Fedora Project. Through free and open-source licenses, Fedora hosts a variety of distributed software.
This Linux distribution also functions as an upstream for the Red hat Enterprise Linux Community version. The latter statement implies that the Fedora Project is a direct fork for Red Hat. In other words, Red Hat directly borrows its features’ implementation from Fedora.
-
ulimit command usage in Linux - TREND OCEANS
ulimit command is used by the administrator to limit hardware resources in a pool share and is mainly used by shared hosting providers to curb unwanted hardware resource usage by other tenants.
There are two types of limits that you can set on your Linux machine.
-
How to Install Pinta on Ubuntu 22.04 LTS - LinuxCapable
Pinta is an excellent image editing tool for both novice and experienced users. The user interface is straightforward yet still packed with features. The drawing tools are comprehensive and easy to use, and the wide range of effects makes it easy to add a professional touch to your images. One of the best features of Pinta is the ability to create unlimited layers. This makes it easy to keep your work organized and tidy, which is essential for anyone who wants to develop complex or detailed images. Pinta is a great all-around image editor in every artist’s toolkit.
-
History of Version Control Systems: Part 1
First-generation version control systems made collaboration possible, but it was painful. Deleting, renaming, or creating new files wasn't easily done. Tracking files across multiple directories as part of one project was impossible. Branching and merging were confusing. Locks worked by copying a file with read-only or read-write UNIX permissions. Inevitably, programmers didn't want to wait for someone else to finish editing, so they got around the lock system with a simple chmod.
The two widely used first-generation version control systems were SCCS and RCS.
-
How Learning To Code Can Change Your Life?
The art of “Communicating with Computers” is called coding, It allows us to be able to communicate with computers, and make them do what we want them to. One of the most exciting aspects of learning to code is the potential to bring your ideas to life and that’s how popular games, software, apps, web apps, and various other algorithms are built.
- Login or register to post comments
Printer-friendly version
- Read more
- 25027 reads
PDF version
Canonical and IBM Leftovers
Submitted by Roy Schestowitz on Monday 27th of June 2022 06:15:41 AM Filed under



-
What’s new in Security for Ubuntu 22.04 LTS?
Canonical Ubuntu 22.04 LTS is the latest long term support release of Ubuntu, one of the world’s most popular Linux distributions. As a Long Term Support release, Ubuntu 22.04 LTS will be supported for 10 years, receiving both extended security updates and kernel livepatching via an Ubuntu Advantage subscription (which is free for personal use). This continues the benchmark of Ubuntu LTS releases serving as the most secure foundation on which to both develop and deploy Linux applications and services. In this blog post, we take a look at the various security features and enhancements that have gone into this new release since the Ubuntu 20.04 LTS release. For a more detailed examination of some of these features, be sure to check out the previous articles in this series which cover the improvements delivered across each interim release of Ubuntu in the past 2 years between 20.04 LTS and 22.04 LTS.
-
We Still Want IBM i On The Impending Power E1050
In March last year, as Big Blue was finishing up the development of the Power10 family of Power Systems machines, we wrote an essay explaining that we wanted IBM i to be a first-class operating system citizen on the four-socket Power E1050 machine, which we finally expect to see launch on July 12 if the rumors are correct.
-
Big Blue Tweaks IBM i Pricing Ahead Of Subscription Model
Back in May, Big Blue said that it was going to be simplifying the IBM i stack ahead of a move to subscription pricing for systems software as well as hardware that runs it. To do that means zeroing out prices for a slew of things that had price tags on them formerly.
-
Guru: The Finer Points of Exit Points
Many years ago, we received a call from an IBM i customer stating that all exit points were gone and the QAUDJRN and receivers were missing. Then the question, “Do you think we’ve been hacked?” Truth was, the exit points weren’t gone; the associated programs had been de-registered. Conclusion, they had most likely been compromised.
-
IBM i Licensing, Part 3: Can The Hardware Bundle Be Cheaper Than A Smartphone?
How many monthly iPhone bills is a Power10-based entry server worth?
-
Guild Mortgage Takes The 20-Year Option For Modernization
When Kurt Reheiser returned to the IBM i server after a 15-year hiatus away the platform, things weren’t a lot different than how he left them.
- Login or register to post comments
Printer-friendly version
- Read more
- 3588 reads
PDF version
today's howtos
Submitted by Roy Schestowitz on Monday 27th of June 2022 06:12:53 AM Filed under
-
Easily Get 3rd-Party Software on Ubuntu With Deb-Get
Deb-get is a high-level software installation and management tool that works on top of the apt package manager to easily enable installing 3rd-party software.
The developers of the utility have already identified a list of where most common 3rd-party applications are distributed, and they have simply programmed their utility to download software from these places and install them for you automatically, so that you don’t have to do it by yourself.
You can check that list here.
The usage syntax is quite simple. Just like apt, you can run commands like deb-get install, deb-get show, deb-get search and deb-get remove.
If the 3rd-party application you are looking for is distributed in a Deb package repository, then that repository will be added to your system so that you can receive updates anytime you run the apt upgrade command. Otherwise, you will just need to run the deb-get upgrade command to update all your 3rd-party installed applications whenever there is a new version.
-
Install GVM 21.4 on Kali Linux
In this guide, you will learn how to install GVM 21.4 on Kali Linux. Greenbone Vulnerability Management (GVM), previously known as OpenVAS, is a network security scanner which provides a set of network vulnerability tests (NVTs) to detect security loopholes in systems and applications. As of this writing, GVM 21.4.4 is the current stable release.
- Login or register to post comments
Printer-friendly version
- Read more
- 3080 reads
PDF version
Programming Leftovers
Submitted by Roy Schestowitz on Monday 27th of June 2022 06:11:36 AM Filed under
-
Understanding jq's SQL style operators JOIN and INDEX
In this post I explore a couple of new (to me) operators in jq's arsenal: JOIN and INDEX, based on an answer to a question that I came across on Stack Overflow.
The answer was in response to a question (JQ: How to join arrays by key?) about how to merge two arrays of related information. I found it interesting and it also introduced me to a couple of operators in jq that I'd hitherto not come across. There's a section in the manual titled SQL-Style Operators that describe them.
-
Migrating Rails cookies to the new JSON serializer
How to move from Marshal to the new Rails 7 default JSON serializer.
I was recently upgrading Phrase to Rails 7. Big upgrades like that are usually being done with the most minimal changes, and this one wasn’t an exception. However, every major and minor version of Rails brings some new defaults that can accumulate over time, leaving you with some debt to pay.
-
gfldex: Sinking Errors
I was looking for a way to output debug messages that can also carry additional values, when not output to the screen. That is easy. The tricky part is golfing the interface. After quite a bit of struggle. I ended up with the following.
-
Friday is an Open-source Virtual Assistant
Virtual assistant technology defines as an application program that uses semantic and deep learning. It can also call an AI assistant or digital assistant. It helps users or enterprises to assist people or automate tasks.
- Login or register to post comments
Printer-friendly version
- Read more
- 3247 reads
PDF version
9to5Linux Weekly Roundup: June 26th, 2022
Submitted by Marius Nestor on Monday 27th of June 2022 04:23:26 AM Filed under

This week was all about software releases as Plasma users got a new update to their favorite desktop environment, video editors got new releases of the Pitivi and Shotcut apps, music and photography enthusiasts got new releases of the Mixxx and digiKam apps, and the next major Krita release promises big things for digital painting artists.
Not so many distro releases this week, but we did get a new version of KaOS Linux for fans of the latest and greatest KDE software, as well as a new EndeavourOS ISO snapshot that brought a major new feature for fans of ARM devices, and I had the pleasure of taking it for a spin on my Raspberry Pi 4 computer.
- 1 comment
Printer-friendly version
- Read more
- 3903 reads
PDF version
today's howtos
Submitted by Roy Schestowitz on Monday 27th of June 2022 02:47:31 AM Filed under
-
How to install Postman on Ubuntu 22.04 or 20.04 - ByteXD
Postman, known initially as HTTPie, is an open-source HTTP client for developers to use when building APIs or making requests to various services online. Postman is compatible with any language that makes HTTP requests.
The best thing about Postman is that it’s FREE and open-source, so anyone can use it on any platform they wish. It has collection management, request building, testing and mocking, response validation, and environment sharing that help you work faster and be more productive.
You can also automate the same tasks with languages you already know, such as Python, Golang, Javascript, Java, and more.
This tutorial will show you how to install Postman on Ubuntu Ubuntu 22.04 / 20.04 using different methods.
-
How to install PhpStorm 2022 on a Chromebook
Today we are looking at how to install PhpStorm 2022 on a Chromebook. Please follow the video/audio guide as a tutorial where we explain the process step by step and use the commands below.
Please take note that it comes with a 30-day free trial and afterward it is paid.
If you have any questions, please contact us via a YouTube comment and we would be happy to assist you!
-
How to install FFmpeg on CentOS 9 Stream?
In this post, you will learn how to install FFmpeg on CentOS 9 Stream. This increasingly popular system will serve as the basis for future editions of RHEL. So, it’s good to keep it in mind.
-
How to Install Darktable on Ubuntu 22.04 LTS - LinuxCapable
Darktable is a free and open-source photography application program and raw developer. Rather than being a raster graphics editor like Adobe Photoshop or GIMP, it comprises a subset of image editing operations specifically aimed at non-destructive raw image post-production. In addition to basic RAW conversion, Darktable is equipped with a wide variety of tools for basic and advanced image editing. These include exposure correction, color management, white balance, image sharpening, noise reduction, perspective correction, and local retouching. As a result, Darktable is an incredibly powerful tool for photographers of all experience levels. Best of all, it is entirely free to download and use.
The following tutorial will teach you how to install Darktable on Ubuntu 22.04 LTS Jammy Jellyfish using APT or Flatpak installation using the command line terminal.
- Login or register to post comments
Printer-friendly version
- Read more
- 3110 reads
PDF version
LINMOB.net - Weekly #MobilePOSIX Update (25/2022): Better Processing in Megapixels and another report on the PinePhone Pro Cameras
Submitted by Roy Schestowitz on Monday 27th of June 2022 02:40:49 AM Filed under

- Login or register to post comments
Printer-friendly version
- Read more
- 3550 reads
PDF version
Audiocasts/Shows: Open Source Security Podcast, GNU World Order, Brodie Robertson, and More
Submitted by Roy Schestowitz on Monday 27th of June 2022 02:34:51 AM Filed under

-
Josh Bressers: Episode 329 – Signing (What is it good for)
Josh and Kurt talk about what the actual purpose of signing artifacts is. This is one of those spaces where the chain of custody for signing content is a lot more complicated than it sometimes seems to be. Is delivering software over https just as good as using a detached signature? How did we end up here, what do we think the future looks like? This episode will have something for everyone to complain about!
-
GNU World Order 466
**kde-dev-scripts** , **kde-dev-utils** , **kde-gtk-config** , **kdebugsettings** , **kdeclarative** , and **kdeconnect**. from Slackware set **kde**.
-
How to install Microsoft Edge on Pop!_OS 22.04 - Invidious [Ed: Edge is malware and a password stealer; don't even use it]
-
Source Vs Binary Package Managers: What's The Best? - Invidious
Most Linux distros at this point use a binary based package management solution but source based solutions still do exist, the question is which is better and why have source based distros all but disappeared.
- 1 comment
Printer-friendly version
- Read more
- 3973 reads
PDF version
Review: AlmaLinux OS 9.0
Submitted by Rianne Schestowitz on Monday 27th of June 2022 01:47:14 AM Filed under
Looking back on my experiences with AlmaLinux, there was such a lot of ground covered in under a week and with such varied results. Getting started was a painful experience. The release announcement for AlmaLinux OS 9.0 talks about multiple editions which do not (at the time of writing) exist, cutting off avenues of testing live media and running the distribution on Raspberry Pi computers. The torrent I tried to download was incomplete and there are some key pieces of documentation missing that I had to find upstream. To make matters worse, Anaconda is one of the least friendly graphical installers I have used in recent years with awkwardly placed controls and overly complicated screens.
Once I was up and running, there were several problems on the desktop side of things. GNOME on Wayland is relatively slow and had some problems compared to the GNOME on X11 session, automatic updates are slow and interrupt the flow of using the system. It feels like a functional step backwards to be using a Windows-like update system which is less convenient than virtually any other Linux distribution of the past two decades. To top it off, I couldn't get the Totem player to play videos (despite the software centre claiming I had the proper codecs) and VLC wouldn't play sound, though it works fine on other distributions on the same hardware.
I'm sure some people will write to me to point out AlmaLinux is not primarily intended to be used as a workstation platform, its main duty is as a server distribution. I agree with this idea, but the project claims (inaccurately, it seems) to offer live desktop editions of AlmaLinux and the system installer has multiple workstation and "Server with GUI" roles we can select. Running as a desktop system might not be the distribution's primary role, but it is one which is advertised and encouraged. Running GNOME is even the default role selected by Anaconda, so it would be foolish to overlook how the distribution functions in this, its default role.
- Login or register to post comments
Printer-friendly version
- Read more
- 3327 reads
PDF version
Linux 5.19-rc4
Submitted by Rianne Schestowitz on Monday 27th of June 2022 01:44:42 AM Filed under
So we've had a couple of fairly small rc releases, and here we finally start to see an uptick in commits in rc4. Not what I really want to see in the middle of the release cycle, but not entirely surprising considering how quiet it's been so far. And while 5.19-rc4 is a bit larger than previous rc's, and is a bit larger than we usually see at this point, it's by no means anywhere near record size. So more of a "a bit bigger than usual" than a "Oh my God, this thing is huge". The changes are also spread out fairly widely, and nothing really stands out. I think the individually biggest patches are the reverts to the printk threading changes that people wanted to really think about some more, since the changes had caused some issues. The rest of the diffstat is _fairly_ flat, with perhaps the vc4 drm patches standing out a bit. So at least right now this all feels like "making up for a small rc3" rather than anything really worrisome, and probably just a result of timing some of the patches shifted into rc4. But let's see how this develops over the next couple of weeks. The full shortlog with all the details is below, and I don't think there's any larger pattern here. We've got all the usual architecture fixes, driver fixes all over the place, and filesystems, core networking, and tooling (perf and selftests). A lot of the changes here are one- and few-liners. Please do go test. Thanks, Linus
- Login or register to post comments
Printer-friendly version
- Read more
- 3689 reads
PDF version
GNOME Devs Bring New List View to Nautilus File Manager
Submitted by Rianne Schestowitz on Monday 27th of June 2022 01:41:50 AM Filed under

Switching from GtkTreeView (which remains available in GTK4) to this new version is said to offer a number of advantages, and offer ‘full feature parity’ with two (temporary) exceptions (that are being worked on in separate branches).
But putting that to one side, what benefits does this switch provide (besides a codebase that’s more malleable and modern)?
Well, say hello to rubber banding — at long last you can now select multiple files/folders in list view simply by dragging out with your mouse, just like you can in the icon view...
- Login or register to post comments
Printer-friendly version
- Read more
- 3279 reads
PDF version
New Version of ArcMenu GNOME Extension Released
Submitted by Rianne Schestowitz on Monday 27th of June 2022 01:39:28 AM Filed under
If you’re not familiar with this GNOME extension — it’s one of the best GNOME extensions around — it offers a traditional app menu experience for GNOME Shell. All sort of layouts are available, ranging from simple setups styled like the Start Menu in Windows through to more exotic arrangements evocative of more niche operating systems.
The latest version of Arc Menu includes updated styling of the search entry box used by many of the extension’s most popular layouts, along with a new setting to modify the border radius of the input field where it shows. A bug fix: it’s now possible to paste content into the search field using ctrl + v.
- Login or register to post comments
Printer-friendly version
- Read more
- 2324 reads
PDF version
FSFE Information stand at Veganmania MQ
Submitted by Roy Schestowitz on Sunday 26th of June 2022 08:14:48 PM Filed under
From 3rd to 6th June 2022 happened the Veganmania street festival at the Museumsquartier in Vienna. Despite not happening for two years due to the Corona pandemic this over the years has developed into the biggest vegan street event in Europe with tens of thousands visitors everey day. Of course there have been plenty of food stands with all kinds of climate and animal friendly delicious meals but the festival had also many stands for buying other stuff. In addition many NGO tents were there too to inform about important issues and their work.
Like already tradition for many years also the local volunteers group manned an FSFE information stand from Friday noon until Monday night. It was exhausting because only two volunteers manned the stand. But we both stayed there the whole time and the interest of so many people had confirmed once more how well we optimized our information material assortment without losing the ability to bring everything at once using just a bicycle.
The front of our stall was covered with a big FSFE banner while the sides are used for posters explaining the four freedoms and GnuPG email encryption. (We very soon need to replace our old posters with more durable water resistant paper since the old one has gotten rather worn down and doesn’t look very sleek any more with all the tape pieces it is hold together.) In addition we use a small poster stand we built ourselves with just two wooden plates and a hinge. This was of left over material from a DIY center. Unfortunately this time we didn’t have any wall behind us where we would have been allowed to put any posters or banners on.
- Login or register to post comments
Printer-friendly version
- Read more
- 2341 reads
PDF version
Android Leftovers
Submitted by Rianne Schestowitz on Sunday 26th of June 2022 07:39:41 PM Filed under
-
How to check your Android phone’s battery health and improve it - Technology News
-
5 best Android gaming phones with 90 Hz display for gaming in 2022
-
Weekend poll: How do you keep track of reminders on Android?
-
Wear OS update makes pairing your Android smartwatch and headphone easier | Android Central
- Login or register to post comments
Printer-friendly version
- Read more
- 2514 reads
PDF version
Stable Kernels: 5.18.7, 5.15.50, 5.10.125, 5.4.201, 4.19.249, 4.14.285, and 4.9.320
Submitted by Rianne Schestowitz on Sunday 26th of June 2022 07:33:54 PM Filed under
I'm announcing the release of the 5.18.7 kernel. All users of the 5.18 kernel series must upgrade. The updated 5.18.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-5.18.y and can be browsed at the normal kernel.org git web browser: https://git.kernel.org/?p=linux/kernel/git/stable/linux-s... thanks, greg k-h
Also: Linux 5.15.50
- Login or register to post comments
Printer-friendly version
- Read more
- 3320 reads
PDF version
today's howtos
Submitted by Roy Schestowitz on Sunday 26th of June 2022 07:10:23 PM Filed under
-
How to Install Rhythmbox 3.4.6 via PPA in Ubuntu 22.04 | 20.04 | UbuntuHandbook
Ubuntu’s default Rhythmbox music player got new release updates a few days ago. Here’s how to install it in Ubuntu via PPA.
Rhythmbox released version v3.4.5 last month and v3.4.6 days ago after more than 2 years of development. Compare to previous Rhythmbox 34.4, Soundcloud plugin and mmkeys plugin have been removed since they are no longer work / useful. DAAP plugin now supports libdmapsharing 4 API, but no longer enabled by default.
The new release has rewritten podcast downloader with better resume and retry, uses podcast episode GUIDs to handle episode URL changes, preserves original order of episodes in podcasts even if episodes have the same publication date. And, crossfading player backend now works much better with network streams. There are as well many bug-fixes and translation updates.
-
How to install Plex Media Server on Ubuntu 22.04
Plex Media Server is an application that lets you store all your music, movies, TV shows, and other media files in one place – on your computer or an external hard drive connected to it.
It means you can stream them to any device in your home (even smart TVs and gaming consoles). While Plex Media Server works excellent with Ubuntu out of the box, there are two optional steps you can take to make the installation process smoother and safer – adding the Plex repository.
In this tutorial we’ll cover how to install Plex Media Server on Ubuntu 22.04 LTS.
-
How to Build an AWS EC2 Machine Images (AMI) With Packer
An Amazon Machine Image (AMI) is a supported and maintained image provided by AWS that provides the information required to launch an instance. You must specify an AMI when you launch an instance. You can launch multiple instances from a single AMI when you require multiple instances with the same configuration. You can use different AMIs to launch instances when you require instances with different configurations.
-
How To Install Mirage on Debian 11 - idroot
In this tutorial, we will show you how to install Mirage on Debian 11. For those of you who didn’t know, Mirage is a fast and simple GTK+ image viewer. Mirage is ideal for users who wish to keep their computers lean while still having a clean image viewer. It is an excellent option to consider.
This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of the Mirage image viewer on a Debian 11 (Bullseye).
-
Access GNOME Shell's Advanced Settings Easily - OMG! Ubuntu!
Are there parts of the GNOME Shell UI you wish you could configure and customise?
If so, check out the Shell Configurator GNOME extension, recently updated to support GNOME 42.
This free, open source add-on makes it incredibly easy to access GNOME Shell’s advanced backend settings without needing to use the command line or a tool like dconf-editor.
You get a clean, organised design with fully searchable settings that are clearly labelled so that you know turning which toggle does what.
- Login or register to post comments
Printer-friendly version
- Read more
- 2403 reads
PDF version
Linux Mint: The Beginner-Friendly Linux Operating System for Everyone
Submitted by arindam1989 on Sunday 26th of June 2022 05:45:46 PM Filed under
This article contains all the necessary information you need for Linux Mint and helps you to learn and make a wise decision on your journey with this operating system.
- Login or register to post comments
Printer-friendly version
- Read more
- 3329 reads
PDF version
today's howtos
Submitted by Roy Schestowitz on Sunday 26th of June 2022 03:18:17 PM Filed under
-
Adding a new application shortcut to the panel in Lubuntu
To create a new application shortcut in the bottom panel of Lubuntu, you first need to create a new desktop shortcut.
-
Install Apache2 on Ubuntu and Ubuntu based distributions in 2022
This is a basic guide to installing Apache2 on Ubuntu and Ubuntu based distributions
-
Tricky snapshot with top-level-zram
Yes, it is tricky. I have edited /usr/local/easy_version/easy-version-control and I think it is now fixed. Not yet tested.
-
Using the rm command to delete a directory, files using the terminal in Linux
Basic usage of using the rm command to delete directories and files using the terminal
-
Check amount of free disk space using the df command in the terminal on Linux
If you want a quick way to check the amount of free disk space available on Linux, we can use the df command in the the terminal
-
How to Exclude Patterns, Files, and Directories With grep
Since 1974, the Linux grep command has been helping people find strings in files. But sometimes grep is just too thorough. Here are several ways to tell grep to ignore different things.
-
Use ssh-keygen to create SSH key pairs and more
Logging into remote systems with SSH implementations is secure by default -- but those connections are secured only in that they use the TLS protocol to encrypt network protocol exchanges. SSH can be made even more secure by using it to authenticate communicating hosts through the exchange of public keys -- keys that are created using the ssh-keygen command.
- Login or register to post comments
Printer-friendly version
- Read more
- 2524 reads
PDF version
Red Hat / IBM Leftovers
Submitted by Roy Schestowitz on Sunday 26th of June 2022 03:16:56 PM Filed under
-
Fan Builds Custom Miniature IBM Model F 40% Keyboard
It uses the same buckling spring switches as an original Model F, but with a much smaller footprint.
-
Edge opportunities guide Red Hat’s evolving partnerships with GM and chipmakers - SiliconANGLE
Leading up to the start of Red Hat Summit in early May, the major news was expected to be the release of Red Hat Enterprise Linux version 9 after a three-year wait.
But that script changed when Red Hat Inc. announced its In-Vehicle Operating System in partnership with General Motors Co. during the Boston event. The impact of the deal with GM was hard to miss. RHEL, as a key resource that has driven enterprise computing for over 20 years, has now become a key element in one of the most personal of use cases — the safety and performance of cars.
“This is a pivotal moment for the transportation industry and the technology industry to come together,” said Francis Chow, vice president and general manager, In-Vehicle Operating System and Edge, during a media briefing at Red Hat Summit. “It is built upon the strong heritage of RHEL.”
-
Evaluate PowerVS for a streamlined hybrid cloud environment
Move on-premises IT environments into the cloud with PowerVS and determine if PowerVM is a better option than -- or a better companion to -- the hybrid cloud.
-
Tanzu vs. OpenShift vs. Ezmeral: 3 rivals' Kubernetes offerings
Learn how container management products from VMware, Red Hat and Hewlett Packard Enterprise compare when it comes to their overall Kubernetes strategies.
-
How to approach sustainability in IT operations [Ed: Mindless, facts-free greenwashing by LF]
Sustainability has become a priority in all aspects of a business, and IT operations is no exception. To manage energy efficiency and be climate conscious, IT ops teams must look closely at where and what is using the most energy -- and a major offender is Kubernetes clusters.
But many teams don't know how to measure pod energy use or overall energy consumption.
At the Linux Foundation Open Source Summit, Huamin Chen, senior principal software engineer at Red Hat, and Chen Wang, research staff member at IBM, led a session on how to approach and implement sustainability in container environments to help cut unnecessary energy use.
-
Green software summit outlines developer best practices [Ed: More greenwashing from LF]
-
Finserv Responds To IBM z15 Mainframe With 45% Increase In Installed MIPS Since 2019
- Login or register to post comments
Printer-friendly version
- Read more
- 2682 reads
PDF version

More in Tux Machines
- Highlights
- Front Page
- Latest Headlines
- Archive
- Recent comments
- All-Time Popular Stories
- Hot Topics
- New Members
digiKam 7.7.0 is released
After three months of active maintenance and another bug triage, the digiKam team is proud to present version 7.7.0 of its open source digital photo manager. See below the list of most important features coming with this release.
| Dilution and Misuse of the "Linux" Brand
|
Samsung, Red Hat to Work on Linux Drivers for Future Tech
The metaverse is expected to uproot system design as we know it, and Samsung is one of many hardware vendors re-imagining data center infrastructure in preparation for a parallel 3D world.
Samsung is working on new memory technologies that provide faster bandwidth inside hardware for data to travel between CPUs, storage and other computing resources. The company also announced it was partnering with Red Hat to ensure these technologies have Linux compatibility.
| today's howtos
|
Older Stories (Next Page)
- Devices With GNU/Linux and Hardware Hacking
- today's howtos
- Canonical and IBM Leftovers
- today's howtos
- Programming Leftovers
- 9to5Linux Weekly Roundup: June 26th, 2022
- today's howtos
- LINMOB.net - Weekly #MobilePOSIX Update (25/2022): Better Processing in Megapixels and another report on the PinePhone Pro Cameras
- Audiocasts/Shows: Open Source Security Podcast, GNU World Order, Brodie Robertson, and More
- Review: AlmaLinux OS 9.0
- Linux 5.19-rc4
- GNOME Devs Bring New List View to Nautilus File Manager
- New Version of ArcMenu GNOME Extension Released
- FSFE Information stand at Veganmania MQ
- Android Leftovers
- Stable Kernels: 5.18.7, 5.15.50, 5.10.125, 5.4.201, 4.19.249, 4.14.285, and 4.9.320
- today's howtos
- Linux Mint: The Beginner-Friendly Linux Operating System for Everyone
- today's howtos
- Red Hat / IBM Leftovers
Recent comments
48 weeks 4 hours ago
48 weeks 4 hours ago
48 weeks 6 hours ago
48 weeks 16 hours ago
48 weeks 16 hours ago
48 weeks 19 hours ago
48 weeks 19 hours ago
48 weeks 1 day ago
48 weeks 1 day ago
48 weeks 1 day ago