4.14.273: longterm

Posted: 2022-03-23 08:03:25
Source: http://www.kernel.org/

Version:4.14.273 (longterm)
Released:2022-03-23
Source:linux-4.14.273.tar.xz
PGP Signature:linux-4.14.273.tar.sign
Patch:full (incremental)
ChangeLog:ChangeLog-4.14.273

4.9.308: longterm

Posted: 2022-03-23 08:00:38
Source: http://www.kernel.org/

Version:4.9.308 (longterm)
Released:2022-03-23
Source:linux-4.9.308.tar.xz
PGP Signature:linux-4.9.308.tar.sign
Patch:full (incremental)
ChangeLog:ChangeLog-4.9.308

next-20220323: linux-next

Posted: 2022-03-23 07:50:56
Source: http://www.kernel.org/

Version:next-20220323 (linux-next)
Released:2022-03-23

How to Make an Array of Structs in C

Posted: 2022-03-23 05:24:09
Source: https://linuxhint.com/make-array-structs-c/

Structs are the user defined group of similar or different data types. Similar or different group of data types can be grouped under one name, known as structures. This article will discuss the structure data type in C and the ways to declare the objects and pointers to structure objects.

How to Get the Size of Redis Database

Posted: 2022-03-23 05:23:53
Source: https://linuxhint.com/get-size-redis-database/

This article provides a step-by-step guide on getting the size of the Redis Database. This tutorial highlights how to overcome Redis’s one drawback of storing in memory by managing and switching databases in Redis and how to insert the bulk data into a Redis database and fetch the database size.

How to Check the Redis Version

Posted: 2022-03-23 05:23:24
Source: https://linuxhint.com/how-to-check-redis-version/

This article provides a step-by-step guide on how to check the Redis version. In this helpful tutorial, we highlight installing the Redis server on a user’s system, checking the version, and upgrading to the latest version; plus, Redis is considered a popular choice because of its low latency and scalability.

How to Check and Set Max Connections in Redis

Posted: 2022-03-23 05:23:09
Source: https://linuxhint.com/max-connections-reddis/

This article provides a guide on how to check and set Max connections in Redis. In this helpful tutorial, we highlight how to review and increase or decrease the maximum clients supported by the Redis instance, which is an in-memory database. In addition, examples were provided for the different methods.

How to Add a Navigation Menu in WordPress

Posted: 2022-03-23 05:22:52
Source: https://linuxhint.com/add-navigation-menu-wordpress/

This article provides a step-by-step guide on adding a navigation menu in WordPress. This tutorial highlights how WordPress users add navigation menus using different methods, and it is a simple process that can be accomplished by any user. A step-by-step process has been provided with the use of primary menus.

Check PHP Version Linux

Posted: 2022-03-23 05:22:38
Source: https://linuxhint.com/check-php-version-linux/

PHP programming language is used to design and create websites or their pages for a better look and feel. All the languages came up with many versions. This article will discuss how to find the version of installed PHP on Ubuntu 20.04 Linux using simple version commands on the shell.

Bash Sleep 1 Second

Posted: 2022-03-23 05:22:18
Source: https://linuxhint.com/bash-sleep-one-second/

The sleep function makes the processing of anything pause for a specified period. This sleep function can be utilized within the Bash script and within the terminal shell to perform the same goal. In this article, we will discuss the sleep function in Ubuntu 20.04 Linux system with some examples.

Bash Nested For Loop

Posted: 2022-03-23 05:22:05
Source: https://linuxhint.com/bash-nested-for-loop/

Loops are data structure used to perform some task in iterations until the actual goal is achieved. For loop can be used alone and more than one for loop in a sequence is said to be nested. This article will discuss how to use “nested” for loops in Bash programming.

Bash For Loop Continue

Posted: 2022-03-23 05:21:50
Source: https://linuxhint.com/bash-for-loop-continue/

Within the bash script, we tend to use many loops, statements, and clauses to perform different operations. The most famous loop is the “for” loop. Bash programming came up with the “continue” and “break” statements. In this article, we’ll discuss the use of the “continue” clause in the “for” loop.

Bash Check If Directory Exists

Posted: 2022-03-23 05:21:36
Source: https://linuxhint.com/bash-check-if-directory-exists/

The directories are used to store the sub-folders and files that hold data in them for security and personal work. This article will discuss some of the very simple commands and statements in Bash programming to check if the specific directory of a file exists in our system or not.

Apt List Installed Packages

Posted: 2022-03-23 05:21:22
Source: https://linuxhint.com/apt-list-installed-packages/

The Advanced Package Tool consists of group utilities to perform installation, update, deletion, and other management activities for Linux software on different Linux operating systems. In this article, we’ll explain the use of the “Apt” package in the Ubuntu 20.04 system to list all the installed packages, software, and tools.

SQL Server Bulk Insert

Posted: 2022-03-23 05:19:21
Source: https://linuxhint.com/sql-server-bulk-insert/

Bulk insert refers to a technique of inserting a large amount of data from a text or CSV file into a SQL Server table or view. It’s a useful feature when performing restore from backup. This article will discuss how to bulk insert data into a SQL Server database table.

16 Rust Programming Code Examples

Posted: 2022-03-23 05:19:15
Source: https://linuxhint.com/rust-programming-code-examples/

In this article we will show 16programming code examples in the rust language from getting the largest string to extracting URL schemes to get you started.

Scala String Interpolation

Posted: 2022-03-23 05:18:48
Source: https://linuxhint.com/scala-string-interpolation/

This article provides an easy step-by-step guide on how to use string interpolation in the Scala programming language. In this tutorial, we highlight the three different string interpolations used in the Scala programming language and the purposes for which they are used, plus the various examples.

How to Read Files in Scala

Posted: 2022-03-23 05:18:32
Source: https://linuxhint.com/scala-read-file/

This article discusses step-by-step reading files in Scala. This helpful tutorial highlights the three different ways to read a file in the Scala programming language: reading a file in Scala without closing it, reading a file in Scala and properly closing it, and reading a Scala file in Java style.

Rust Smart Pointers

Posted: 2022-03-23 05:17:31
Source: https://linuxhint.com/rust-smart-pointers/

Pointers are a feature that allows to use variables to store an address in memory. The address then points to data stored in that location. Smart pointers have extended capabilities, such as bound checks and automatic memory management. This article will discuss smart pointers as defined in Rust standard library.

Rust Generics

Posted: 2022-03-23 05:17:27
Source: https://linuxhint.com/rust-generics/

When declaring generic types, you will find the parameter. It is a used to represent any data type in Rust. If a function takes type , it is said to be a generic function. In this article, we explored the fundamentals of working with generic types in Rust language.

1 ... 495 496 497 498 499 ... 726