Sling Academy
Home/DevOps/Page 35

DevOps

DevOps is a set of practices that combines software development (Dev) and IT operations (Ops) aimed at shortening the systems development life cycle and providing continuous delivery with high software quality. It emphasizes collaboration, automation, and integration between developers and IT professionals to improve the speed and quality of software deployment.

How to Upgrade CentOS to a Newer Version

Updated: Jan 28, 2024
Introduction CentOS, or Community ENTerprise Operating System, is a Linux distribution that provides a free, enterprise-class computing platform. It is functionally compatible with its upstream source, Red Hat Enterprise Linux (RHEL).......

Ubuntu: How to create a custom systemd service

Updated: Jan 28, 2024
Introduction Systemd is a system and service manager for Linux operating systems that introduces the concept of systemd units to manage different resources of the system. Creating a custom systemd service in Ubuntu enables users to......

Ubuntu: How to create a cron job (that runs repeatedly at a set interval)

Updated: Jan 28, 2024
Introduction Managing tasks on a server is an essential skill for any system administrator or developer. One of the most powerful and commonly used tools for task automation on UNIX and Linux-based systems is cron. Whether you’re......

Ubuntu: How to diagnose and fix a slow boot time

Updated: Jan 28, 2024
Introduction Nothing is as frustrating as a slow boot time when you want to get started with your work or tasks on Ubuntu. This guide aims to provide a step-by-step tutorial on how to diagnose and fix slow boot times on your Ubuntu......

Ubuntu: How to auto-start a service on system boot

Updated: Jan 28, 2024
Introduction As a Linux administrator or user, you may need to ensure that certain services automatically start up every time your system boots. This could be a web server, a database service, or any custom application that you need to......

Ubuntu: How to set permissions for a directory and its subdirectories

Updated: Jan 28, 2024
Introduction Managing permissions is a fundamental aspect when working with Linux-based systems like Ubuntu. Permissions determine what actions users and groups can perform on files and directories. In this tutorial, we’re going......

Ubuntu: How to set up and configure firewall (UFW)

Updated: Jan 28, 2024
Overview Linux servers like Ubuntu often need to be secured with a firewall. Ubuntu comes with a firewall configuration tool called UFW – Uncomplicated Firewall. UFW is a user-friendly interface to the core iptables firewall,......

Ubuntu: How to open/close a port in firewall (UFW)

Updated: Jan 28, 2024
Introduction Managing network ports is a fundamental aspect of securing a Linux server. In Ubuntu, the Uncomplicated Firewall (UFW) provides a user-friendly way to configure your firewall settings. This tutorial walks you through the......

Ubuntu: How to create a user with sudo privileges

Updated: Jan 28, 2024
When working with Ubuntu, one of the fundamental tasks you’ll undertake is managing users and their privileges. Specifically, it’s often necessary to create a user with sudo privileges for tasks that require superuser access.......

Ubuntu: How to Change the Root Password

Updated: Jan 28, 2024
Ubuntu, like other Linux distributions, is known for its robust security model, which is significantly bolstered by the use of passwords for user accounts, including the root account. Despite security advice against routinely using the......

Ubuntu: How to find and kill a process that is using a specific port

Updated: Jan 28, 2024
Introduction In the world of software development and network administration on Ubuntu or any UNIX-like system, working with network ports is a common task. Alternatively, processes may start and stop unexpectedly, leaving certain......

Soft and Hard Links in Linux: The Ultimate Guide

Updated: Jan 28, 2024
Introduction Understanding file links is fundamental for effective file management and data organization in Linux. Soft and hard links are two types of shortcuts to files that serve different purposes and exhibit distinct behaviors.......