5.10.90: longterm

Posted: 2022-01-05 11:40:40
Source: http://www.kernel.org/

Version:5.10.90 (longterm)
Released:2022-01-05
Source:linux-5.10.90.tar.xz
PGP Signature:linux-5.10.90.tar.sign
Patch:full (incremental)
ChangeLog:ChangeLog-5.10.90

5.4.170: longterm

Posted: 2022-01-05 11:37:51
Source: http://www.kernel.org/

Version:5.4.170 (longterm)
Released:2022-01-05
Source:linux-5.4.170.tar.xz
PGP Signature:linux-5.4.170.tar.sign
Patch:full (incremental)
ChangeLog:ChangeLog-5.4.170

4.19.224: longterm

Posted: 2022-01-05 11:35:13
Source: http://www.kernel.org/

Version:4.19.224 (longterm)
Released:2022-01-05
Source:linux-4.19.224.tar.xz
PGP Signature:linux-4.19.224.tar.sign
Patch:full (incremental)
ChangeLog:ChangeLog-4.19.224

4.14.261: longterm

Posted: 2022-01-05 11:34:00
Source: http://www.kernel.org/

Version:4.14.261 (longterm)
Released:2022-01-05
Source:linux-4.14.261.tar.xz
PGP Signature:linux-4.14.261.tar.sign
Patch:full (incremental)
ChangeLog:ChangeLog-4.14.261

4.9.296: longterm

Posted: 2022-01-05 11:32:28
Source: http://www.kernel.org/

Version:4.9.296 (longterm)
Released:2022-01-05
Source:linux-4.9.296.tar.xz
PGP Signature:linux-4.9.296.tar.sign
Patch:full (incremental)
ChangeLog:ChangeLog-4.9.296

4.4.298: longterm

Posted: 2022-01-05 11:30:36
Source: http://www.kernel.org/

Version:4.4.298 (longterm)
Released:2022-01-05
Source:linux-4.4.298.tar.xz
PGP Signature:linux-4.4.298.tar.sign
Patch:full (incremental)
ChangeLog:ChangeLog-4.4.298

next-20220105: linux-next

Posted: 2022-01-05 08:11:11
Source: http://www.kernel.org/

Version:next-20220105 (linux-next)
Released:2022-01-05

How to Create PowerShell Alias

Posted: 2022-01-04 15:55:12
Source: https://linuxhint.com/create-powershell-alias/

PowerShell Alias is used as an alternative keyword to execute a function/cmdlet. PowerShell does support built-in aliases for several widely used functions/cmdlets. This guide provides some potential ways to create an alias for a PowerShell's cmdlet/function. By going through this guide, you would be able to get the concept of aliases and their creation in PowerShell as well. The Set-Alias and New-Alias cmdlets can be used to create a session based alias. Moreover, we have also presented the process of creating a permanent PowerShell alias that would work across different sessions of PowerShell.

next-20220104: linux-next

Posted: 2022-01-04 10:58:15
Source: http://www.kernel.org/

Version:next-20220104 (linux-next)
Released:2022-01-04

How to install Nitrux 1.8.0

Posted: 2022-01-03 17:36:40
Source: https://www.youtube.com/watch?v=ILpNle6vTIk

PowerShell count with Measure-Object

Posted: 2022-01-03 17:28:59
Source: https://linuxhint.com/powershell-count-with-measure-object/

The Measure-Object cmdlet of PowerShell counts the number of entries/inputs and also reports the sum, average, minimum, maximum and standard deviation. This article provides the guide to count the number of inputs using count with measure-object. For a better understanding, we have applied Measure-Object to various PowerShell cmdlets to count the number of inputs/entries. However, you can use Measure-Object on other PowerShell functions as well.

How to use PowerShell Split-Path

Posted: 2022-01-03 16:37:56
Source: https://linuxhint.com/powershell-split-path/

The PowerShell Split-Path is a cmdlet that allows you to get the specific portion of the path. The Split-Path supports various parameters that extend its functionality by providing a precise part of the path. This post provides a demonstration to understand the functionality of PowerShell Split-Path. We have also provided several Split-Path examples for better understanding of the working mechanism of PowerShell Split-Path.

How to Wait for Command to Finish in PowerShell

Posted: 2022-01-03 15:44:53
Source: https://linuxhint.com/powershell-wait-for-command-to-finish/

The wait command in PowerShell halts the execution of further commands if the current is not executed yet. This article provides a deep insight of several ways to enable waiting mode for the execution of the commands. To build an understandable guide, we have provided the usage of different cmdlets and parameters. The parametric support provided by -Wait and -Timeout can be acquired with various commands to perform the wait for command to finish.

Modern Linux Tools: Command-Line Help

Posted: 2022-01-03 08:00:05
Source: https://www.youtube.com/watch?v=EFJNxQFXV5s

DistroWatch Weekly, Issue 949

Posted: 2022-01-03 01:18:20
Source: https://distrowatch.com/11439

This week in DistroWatch Weekly: Review: Jesse's Top Picks Of 2021News: UBports introduces new fixes and features, siduction trims array of desktop editions, Chakra shuts down servers, CentOS Linux 8 reaches end of lifeQuestions and answers: Answering questions about the PinePhoneReleased in the past two weeks: elementary OS....

5.16-rc8: mainline

Posted: 2022-01-02 22:23:25
Source: http://www.kernel.org/

Version:5.16-rc8 (mainline)
Released:2022-01-02
Source:linux-5.16-rc8.tar.gz
Patch:full (incremental)

PowerShell checksum with Get-FileHash

Posted: 2022-01-02 16:16:48
Source: https://linuxhint.com/powershell-checksum-with-get-filehash/

The checksum is an error detecting agent that consists of a string of characters and used to validate the authenticity of the transmitted file. In PowerShell, the Get-FileHash cmdlet is used to create Checksum values. This article provides a detailed demonstration on creating checksums using Get-FileHash. The checksum's functionality truly depends on the algorithm being used as there are some state-of-the-art algorithms and few algorithms have been outdated. It is to notice that the algorithm must be the same at the time of creating and validating a checksum.

How to use PowerShell Tail with Get-Content

Posted: 2022-01-02 15:30:15
Source: https://linuxhint.com/tail-with-get-content-powershell/

The Get-Content is a widely practiced cmdlet in PowerShell to get the content of a text file or a function. The Tail is a parameter that functions with Get-Content to retrieve specific lines from the bottom of the text files. This descriptive post refers to using the Tail parameter with Get-Content cmdlet of PowerShell. You would get to know about the working mechanism of Tail with Get-Content. Alongside this working pattern, several examples are also provided that would help you get a better in-depth analysis of the Tail parameter with get-command.

How to use PowerShell Join-Path

Posted: 2022-01-02 14:42:19
Source: https://linuxhint.com/powershell-join-path/

PowerShell Join-path cmdlet is primarily used to join a parent path to child paths. Its functionality can be enhanced by using the parameters supported by this cmdlet. In this article, we have analyzed the working mechanism and the usage of Join-Path. You would get a better understanding of Join-Path cmdlet by practicing the examples described in this write-up. Additionally, we have experienced that the Join-Path can give a detailed path of the content present in the parent path.

Distribution Release: Neptune 7.0

Posted: 2022-01-01 23:16:41
Source: https://distrowatch.com/11438

Leszek Lesner has announced the release of Neptune 7.0, a major new version of the project's desktop Linux distribution based on Debian's latest stable release and featuring the KDE Plasma desktop: "We are proud to announce the release of Neptune 7 'Faye' named after the member of the....

1 ... 547 548 549 550 ... 726