Cyberithub

Polymorphism Concept in Python with Best Working Examples

Polymorphism Concept in Python with Best Working Examples 1

In this tutorial, we will go through polymorphism concepts in python with examples. Polymorphism is made up of two words: poly means many and morphism means several different forms. Like many other Object Oriented Programming Languages python also has the polymorphism concept. In this concept same object can perform in variety of ways based on ... Read more

Inheritance Concepts and Its 5 Different Types in Python with Best Working Examples

Inheritance Concepts and Its 5 Different Types in Python with Best Working Examples 2

In this tutorial I will take you through Inheritance concepts in Python with Best Working Examples. If we talk about a real life example, Inheritance is when a child inherits some of the properties from their parents. It can be the eye color, skin color or any other gene characteristics. In a similar way if ... Read more

How to Create New Custom Namespaces in Kubernetes{3 Best Methods}

How to Create New Custom Namespaces in Kubernetes{3 Best Methods} 3

In this tutorial, I will guide you through the steps to create new custom namespaces in Kubernetes. Namespaces are one of the key features in Kubernetes frequently used to divide the physical cluster into multiple virtual clusters. Each virtual cluster acts as a namespace under which multiple resources can be created. What is Namespace in ... Read more

Best Steps to Install Growpart command and Resize Root Partition in Linux(RHEL/CentOS 7/8)

Best Steps to Install Growpart command and Resize Root Partition in Linux(RHEL/CentOS 7/8) 5

In this tutorial I will take you through the best steps to Install growpart command and Resize root partition in Linux (RHEL/CentOS 7/8). You might have faced a scenario where after installing Linux OS in your Server you needed more space in root partition to install more packages and libraries. While you can increase the ... Read more

50 Useful Zypper Command Examples to Manage Packages on OpenSUSE Linux

50 Useful Zypper Command Examples to Manage Packages on OpenSUSE Linux 6

In this article, I will guide you through 50 Useful Zypper Command Examples to Manage Packages on OpenSUSE Linux. You might have heard about yum utility for managing packages on RHEL/CentOS Based Servers and apt-get utility on Ubuntu/Debian Based Servers. Similarly we have zypper utility available for OpenSUSE/SUSE based Servers. Zypper is a very useful ... Read more

How To Start / Stop / Restart Network Service in OpenSUSE Linux

How To Start / Stop / Restart Network Service in OpenSUSE Linux 12

In this tutorial, I will take you through the steps to Start / Stop / Restart Network Service in OpenSUSE Linux. If you are performing some changes in network configuration file then you always need to stop/start/restart network service for changes to take effect. Similarly if you are troubleshooting any network issue then also you ... Read more

How to Check Stateful and Stateless Pods in Kubernetes Cluster{Easy Methods}

How to Check Stateful and Stateless Pods in Kubernetes Cluster{Easy Methods} 18

In this article, I will show you how to check Stateful and Stateless Pods in Kubernetes Cluster. Pods are the smallest unit of application runs in Kubernetes Cluster. It can represent a Single Application Container or cluster of application containers and volumes running in the same execution environment. A pod can be stateful or stateless ... Read more

3 Easy Ways to Check/Find OpenSUSE Linux Version

3 Easy Ways to Check/Find OpenSUSE Linux Version 19

In this article, we will look into 3 easy ways to check/find OpenSUSE Linux version. You can find two important files in OpenSUSE Linux version i.e /etc/os-release and /usr/lib/os-release which contains all the information about the OS. You can simply open the file with cat command and check the release version. Other important tools that ... Read more