Bash for Loop in One Line

Posted: 2021-07-24 13:51:17
Source: https://linuxhint.com/bash-for-loop-one-line/

In any programming or scripting language, the loop is a quintessential feature. Loops are generally to perform a repetitive task until a certain condition is met. Bash is a powerful scripting language that supports all the major features of a scripting language (including loops). In this article, one-line for loops in Bash is explained.

How to Setup FTP Server on Windows

Posted: 2021-07-24 13:10:12
Source: https://linuxhint.com/setup-ftp-server-windows/

Constructing a File Transfer Protocol (FTP) server within Windows 10 is among the easiest ways for uploading documents from almost any place to your system without the limits that cloud storage facilities generally impose. There are no monthly transmission limits, and speeds are unlimited. How to set up FTP Server on Windows is explained in this article.

Enterprise Linux Security - Episode 0

Posted: 2021-07-24 12:45:12
Source: https://www.youtube.com/watch?v=tLc60arwMV0

How to use find_first_of() function in C++

Posted: 2021-07-24 09:35:29
Source: https://linuxhint.com/find_first_of-function-cpp/

Different built-in functions exist in C++ to work with the string data. The find_first_of() function is used to find the location of the first occurrence of the specified character. This function returns the position of the first occurrence of the string that will be given as the argument value of this function. How to use find_first_of() function in C++ is explained in this article.

How to use substr() function in C++

Posted: 2021-07-24 09:23:11
Source: https://linuxhint.com/use-substr-function-c/

The way to cut any portion from a string is called a sub-string. The substr() function exists in C++ to generate a new string by cutting a particular portion from a string. The string.h library file is required to include to use this function. How to use the substr() function in C++ is explained in this article.

How to Install Laravel on Ubuntu 20.04 LTS

Posted: 2021-07-24 01:29:43
Source: https://linoxide.com/how-to-install-laravel-on-ubuntu-20-04/

kubectl – How to Restart the Pod

Posted: 2021-07-23 15:44:05
Source: https://linuxhint.com/kubectl-restart-the-pod/

A pod can also have one or more containers, one of which is the application container, and the others are the init container. A container or pod will not always leave due to an application failure. In this situation, you will need to restart your Kubernetes Pod explicitly. How to force pods in a deployment to restart is explained in this article.

MAC Flooding Attack

Posted: 2021-07-23 15:36:41
Source: https://linuxhint.com/mac-flooding-attack/

MAC can be classified as a sublayer of the data link layer accountable for physical addressing. MAC address is unique for a network adapter allocated by the manufactures for transmitting data to the destination host. This article will discuss the execution of MAC flooding attack and how to prevent it.

Network OSI Layers Explained

Posted: 2021-07-23 15:34:54
Source: https://linuxhint.com/network-osi-layers-explained/

The Open System Interconnection (OSI) model conceptually illustrates seven abstraction layers of communication framework that devices use for interoperability over the network. The OSI model is divided into seven layers to represent network architecture that defines its rules and regulations. This article will discuss all the layers and their properties.

Passing an Array to a Function C++

Posted: 2021-07-23 15:32:36
Source: https://linuxhint.com/passing-an-array-to-a-function-c/

An array is a group of elements of the same data type. Many functions are performed on arrays. In C++, in the case of functions, we need to pass them. This is done via parameters as arguments. These arguments can be of different ways, either sizeable arrays or through the pointer array. How to pass an array to a function in C++ is explained in this article.

Python Increment by 1

Posted: 2021-07-23 15:29:58
Source: https://linuxhint.com/python-increment-by-1/

Python was created to be understandable and consistent. In linguistics having ++ and — expressions, a beginner programmer frequently makes the mistake of confusing the distinctions among increment/decrement expressions, post, and pre. In this article, increment by 1 operator in Python code is explained.

Python Not Equal Operator

Posted: 2021-07-23 15:28:49
Source: https://linuxhint.com/python-not-equal-operator/

Whenever the values of any two Python variables or operands supplied on either side of the not equal operator are not equal, it must return true, else false. Many structured query languages might grumble about matching various types since Python is flexibly yet tightly typed. How to use Python Not Equal Operator is explained in this article.

Sed Command to Delete a Line

Posted: 2021-07-23 15:27:34
Source: https://linuxhint.com/sed-command-to-delete-a-line/

Sed is a built-in Linux tool for text manipulation. The term sed stands for “stream editor”. Despite the name, sed isn’t a text editor by itself. Rather, it takes text as input, performs various text modifications according to instructions, and prints the output. How to use the Sed command to delete a Line is explained in this article.

Smurf Attack

Posted: 2021-07-23 15:25:05
Source: https://linuxhint.com/smurf-attack/

Smurf attack is a type of Denial-of-Service Attack (DOS) where an attacker exploits internet control message protocol packets. It sends a massive flood of spoofed ICMP echo_request packets to target victims. This article will discuss the execution, damage it can cause to a network and prevention of a smurf attack.

String Concatenation in C++

Posted: 2021-07-23 15:22:53
Source: https://linuxhint.com/string-concatenation-in-c/

The way to merge two or more strings is called string concatenation. It is a very common task for any programming language. Some programming languages use a specific operator, some programming languages use the built-in function, and some programming languages use both operator and built-in function to combine string values. How to use string concatenation in C++ is explained in this article.

Top 5 Best Prebuilt Gaming PC

Posted: 2021-07-23 15:15:41
Source: https://linuxhint.com/top-5-best-prebuilt-gaming-pc/

This article provides an easy step-by-step guide on choosing the top five best prebuilt gaming PC to begin your virtual adventure. This helpful tutorial provides the features, specifications, and the Amazon links to the top five best prebuilt gaming PC. In addition, a buying guide is also provided for additional information.

next-20210723: linux-next

Posted: 2021-07-23 08:04:36
Source: http://www.kernel.org/

Version:next-20210723 (linux-next)
Released:2021-07-23

Distribution Release: GParted Live 1.3.1-1

Posted: 2021-07-23 02:15:34
Source: http://distrowatch.com/11305

Curtis Gedak has announced the release of GParted Live 1.3.1-1, the latest update to the project's Debian-based live CD image containing a variety of specialist disk partitioning and data rescue utilities: "GParted Live 1.3.1-1 stable release. The GParted team is pleased to announce a new stable release of....

How to split string in C++

Posted: 2021-07-22 17:54:14
Source: https://linuxhint.com/split-string-c/

Working with string data is an essential part of any programming language. Sometimes we need to split the string data for programming purposes. The split() function exists in many programming languages to divide the string into multiple parts. There is no built-in split() function in C++ for splitting a string, but many multiple ways exist in C++ to do the same task. How to split strings in C++ is explained in this article.

Introduction to Manjaro Package Manager Pacman

Posted: 2021-07-22 17:27:17
Source: https://linuxhint.com/manjaro-package-manager-pacman/

The Linux distributions package management system made software accessible across environments. Similar to all other Linux distributions, Manjaro has a default package manager of Arch Linux. This article will discuss how to use command-line package manager Pacman to add, remove, and update software packages from distribution or user build repository.

1 ... 647 648 649 650 651 ... 726