Menu
TAG

tutorial

Linux Partition Management
Linux Tutorials 9 min read

Linux Partition Management

Making Linux partitions is one of the toughest tasks for new Linux users. In this article, I will cover various topics on Linux partitioning. I’ll use different Linux partition managers to list, create, resize, extend and delete Linux partitions. Linux partition managers In this article, we will perform CRUD(Create or Clone, Read, Delete, Update) actions on system storage drive using various Linux partition managers. If you are a new Linux user, you might want to try an easy to use

Linux TutorialsUncategorizedtutorial
tee Command In Linux - Linux Commands Guide
linux command guide 2 min read

tee Command In Linux - Linux Commands Guide

Today, we are going to go over the Linux tee command. There isn’t much to this command so this guide will be brief. You will find some use for it at some point. Linux tee Command Usage and Examples tee command (as in a T-splitter in plumbing) takes content from standard input, displays it, and writes it to one or more files. It is useful if you need to write things to several files in one go. You have the choice to either overwrite the contents of the file or append new content to

linux command guideLinux toolsUncategorized
Bash for loop - Loops In BASH- Learn BASH | Part 6
Learn Bash 4 min read

Bash for loop - Loops In BASH- Learn BASH | Part 6

Welcome to the sixth chapter on BASH scripting series. And today we will dive into a very cool topic called looping constructs in computer programming. Loops are important if we have a task that needs repetition. There are different types of loops in bash, bash for loop, while loop, and until loop. In the previous chapter where we discussed decisions, we made the computer think logically. Combine that with loops and we have an almost humanoid program that can think, work, and repeat the

Learn BashUncategorizedtutorial
Things To Do After Installing Arch Linux
Arch Linux 6 min read

Things To Do After Installing Arch Linux

Continuing from the previous article, we will finish by fine-tuning the system to enable functionality comparable to other distros. After this tutorial, you will have a lot of the basic features you will find in a distro such as Fedora or Ubuntu. * Things To Do After Installing Arch Linux * Wifi Connectivity * Double-Checking Sound * Display Manager * Package Searching And Fonts * Device Mounting Privileges * DVD Playback * Wine * SSH * Conclusion

Arch LinuxLinux TutorialsUncategorized
Host Website On Our Own Server - Web Server Setup Series
Setup web server 4 min read

Host Website On Our Own Server - Web Server Setup Series

Today we’ll continue our web server setup series. In this series, we’ve already installed and setup our web server, configured & secured cPanel and point domain name to the server. At any time if you’ve trouble setting something up something, let me know in the comment section below. In this article, we’ll go about hosting a website on our server. Let’s do it. Setting up a website is as simple as uploading a single file on our server. We can write a simple HTML page and it’ll work. But t

Setup web serverUncategorizedtutorial
Inserting Data Into Tables - MySQL Series Part 4
MySQL series 2 min read

Inserting Data Into Tables - MySQL Series Part 4

Data insertion is very important in understanding MySQL databases. If the right data is not inserted in the right columns, we may get a lot of errors. Let us quickly create a small employee table by running the following command. create table employee(name varchar(20), city varchar(10), salary int); Once we are done with creating the table we can start inserting some data into it. Follow the complete MySQL Series here. Inserting Single Record To insert one record in

MySQL seriesUncategorizedtutorial
Creating and Modifying Tables - MySQL Series Part 3
MySQL series 4 min read

Creating and Modifying Tables - MySQL Series Part 3

Today we’ll continue our MySQL series and learn how to create and modify tables. MySQL tables are the containers that actually hold data. A table with multiple columns and records can be seen as an excel sheet. In this article, we will try to create some tables that can hold our data and also modify them. So fire up your mysql command line clients and Let’s learn.   Creating Tables The first thing we will do is create a table. To do this we need to select the database we w

MySQL seriesUncategorizedtutorial
Shortcuts For Navigating Terminal History
Linux Tutorials 4 min read

Shortcuts For Navigating Terminal History

Today I’ll highlight some tips and tricks on how to get more proficient on a terminal program. You must have at least once typed in a long command on your terminal program and then forget it the next day. Navigating terminal history commands come in handy in such a scenario. However, there is more than one way to navigate them. Like Linux gurus out there, you might prefer one over the other based on how you use your keyboard regularly. Read on below to learn how to navigate Linux termina

Linux TutorialsUncategorizedtutorial
Data Types & Data Modelling In MySQL - MySQL Series Part 2
MySQL series 3 min read

Data Types & Data Modelling In MySQL - MySQL Series Part 2

In this article, we will be learning about the various data types in MySQL and also how data modeling is done. I am assuming you have a working instance of MySQL on your computer. If not, you can read the step by step installation instructions. Data Types in MySQL MySQL is very rich when it comes to data types. There are a wide variety of options available to efficiently store and retrieve data. The following data types are most commonly available. * INT– For storing integ

MySQL seriesUncategorizedtutorial
What Are Various Debian Installation Discs
Debian 2 min read

What Are Various Debian Installation Discs

Ever got confused by the amount of disc made available for downloading on Debian servers? Worry not, if this is your approach looking around the Internet for an explanation of why and what are those various discs for installing Debian on your beloved computer, you are at the right place. I’ll try to be quick and concise so you can get on with Debian installation within 2 minutes read 🙂   What are those discs? Debian disc 1, disc 2, disc 3, etc are all installation discs but on

DebianUncategorizedtutorial
BASH Operators [Part 5]
Learn Bash 4 min read

BASH Operators [Part 5]

In the previous decisions article, we came across many new bash operators while learning the if, if-else, and elif statements. This article will provide deep insight to bash operators and their various types in computer programming. * Types of BASH operators * Assignment * Relational * -eq and -ne * -gt and -lt * Logical * && * || * Conclusion Types of BASH operators There are many types of BASH operators but for the sake of this seri

Learn BashUncategorizedtutorial
UFW Firewall Configuration In Linux
Uncategorized 4 min read

UFW Firewall Configuration In Linux

When administering servers, one of the first things that must be configured to increase the security of them is to configure a Firewall, Luckily in Linux is included a default called Iptables but this firewall many see it a bit complex to configure and manage. There are simpler alternatives to use, such as UFW. UFW is actually a CLI or command-line interface for the Iptables Firewall that includes Linux, this interface provides us with a slightly easier way to manage and configure Iptabl

Uncategorizedtutorial#Import 2024-11-04 15:59