Linux Resources
- Home
- Linux Resources
This article covers kubectl Commands with Examples. In fact, Kubectl is a set of commands for controlling Kubernetes clusters. Every Kubernetes command has an API endpoint, and kubectl’s primary purpose is to carry out HTTP requests to the API.
While it is possible to issue HTTP requests yourself (e.g., using curl), kubectl is designed to make this process more comfortable and straightforward.
How to delete Resources using kubectl command ?
To remove resources from a file or stdin, use the kubectl delete command.
1. Remove a pod using the name and type listed in pod.yaml:
$ kubectl delete -f pod.yaml
2. Remove all pods and services with a specific label:
$ kubectl delete pods,services -l [label-key]=[label-value]
3. Remove all pods (including uninitialized pods):
$ kubectl delete pods --all
This article covers how to install and use UNRAR freeware on Fedora. In fact, UNRAR is a great option for extracting RAR files and provides a myriad of options depending on how you want your files organized upon extraction.
This article covers how you can easily upgrade from a Linux Mint 20.2 virtual machine to Linux Mint 20.3.In fact, Linux Mint has dubbed the new 20.3 release with the codename Una, the third major upgrade in the Linux Mint 20 series, which most would know is based on Ubuntu 20.04 LTS Focal Fossa distribution that will be supported until 2025.
One of the more exciting things in this upgrade is dark mode support Celluloid, GNOME Terminal, Hypnotix, Pix, and XViewer applications in Cinnamon and MATE. Still, XFCE will not feature dark mode support Pix and XViewer due to the Xfwm window manager not supporting it.
This article covers the removal procedure of an extension from Google Chrome. In fact, you can customize Chrome on your desktop by adding extensions from the Chrome Web Store.
To remove an app or extension from your Chromebook, follow the steps below:
To temporarily stop using an extension:
This article covers how to install qlipper on your Debian 11 system. qlipper application is a part of QtDesktop project so you can download prebuilt binary packages from its repository.
This article covers how to install steam on openSUSE using different methods. In fact, Steam (https://www.steampowered.com) is a software content delivery system developed by Valve software (https://www.valvesoftware.com).
How To Uninstall steam from Ubuntu 20.04 ?
To uninstall only the steam package we can use the following command:
$ sudo apt-get remove steam
We can use the following command to remove steam configurations, data and all of its dependencies, we can use the following command:
$ sudo apt-get -y autoremove --purge steam