• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
sharadchhetri

sharadchhetri

AI, Linux, Cloud and DevOps

  • Home
  • Resources
    • Learn Linux
    • Articles
  • My Projects & Work
    • My Nagios Plugin
    • My Dockerhub Repo
    • My WordPress plugins
    • My Github Repos
  • Facebook Page
  • Contact
  • Privacy Policy
  • About Me

Install VirtualBox On Ubuntu 22.04 LTS Desktop (Bash Script)

February 26, 2023 by Sharad Chhetri Leave a Comment

Bash script for installing VirtualBox on Ubuntu 22.04 LTS Desktop

In this post, we will learn how to install VirtualBox on Ubuntu 22.04 LTS Desktop by using bash script. The reason for specifically writing VirtualBox on Ubuntu 22.04 LTS Desktop because we have tested this bash script in our personal DevOps laptop. Being a DevOps Engineer, we should try to automate the things as much […]

Filed Under: Articles Tagged With: ubuntu, ubuntu 22.04 lts, virtualbox

dlopen(): error loading libfuse.so.2 – Got Error On Ubuntu

February 25, 2023 by Sharad Chhetri Leave a Comment

libfuse

While running the Appimage of Shotcut Video Editor,we encountered with issue – “dlopen(): error loading libfuse.so.2”. When we see the error carefully, it is self explanatory that the shared library called libfuse is missing in the Operating System. What is libfuse ? Filesystem in Userspace (FUSE) is a simple interface for userspace programs to export […]

Filed Under: Articles Tagged With: Appimage, libfuse, ubuntu

VirtualBox : Failed to open/create the internal network

February 11, 2023 by Sharad Chhetri Leave a Comment

Failed to open/create the internal network

While starting the Virtual Machine on VirtualBox in Windows 11, encountered with this unpleasant VirtualBox Error: Failed to open/create the internal network ‘HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter’.

Filed Under: VirtualBox Tagged With: virtualbox, windows

Activate.ps1 cannot be loaded because running scripts is disabled on this system

January 8, 2022 by Sharad Chhetri 1 Comment

python virtual environment

We encountered with this error “Activate.ps1 cannot be loaded because running scripts is disabled on this system” while activating the Python virtual environment in Windows system. The solution is quite simple and reason of this error is due to the Windows Execution policy. In our system, the error was like this. In the below section, […]

Filed Under: Windows Tagged With: python, windows

How to install Java (OpenJDK) on Ubuntu Linux

June 23, 2020 by Sharad Chhetri 1 Comment

install java OpenJdk on Ubuntu

Java is a class based, object oriented programming language. It is cross platform and widely use in developing applications. The Java was first developed in Sun Microsystem (Now acquired by Oracle). In this post, to install Java we will use the OpenJDK package. OpenJDK is a free and open source product implements Java SE which […]

Filed Under: Articles Tagged With: java

How to install Groovy on Ubuntu 20.04 LTS

June 22, 2020 by Sharad Chhetri Leave a Comment

install groovy

Apache Groovy is a Object Oriented programming language which is compatible with Java syntax.It is both static and dynamic language. You can use the Apache Groovy either as a scripting or programming language. As a DevOps engineer, you might have known the use of Groovy script in Jenkins Pipeline. Requirement 1. Groovy 3.x (At the […]

Filed Under: Articles, Devops Tagged With: devops, groovy

How to Disable selinux in Red Hat or CentOS

June 22, 2020 by Sharad Chhetri 5 Comments

disable selinux

In this post, learn how to disable selinux in Red Hat and CentOS Operating System. Security-Enhanced Linux (SELinux) is a Linux feature that provides the mechanism for supporting access control security policies. How to check the status of SELINUX in linux system Use the given below command to check SELINUX status getenforce Open the file […]

Filed Under: Articles Tagged With: CentOS, Red Hat, selinux

How to remove date from WordPress Post URL

June 18, 2020 by Sharad Chhetri Leave a Comment

wordpress nginx

In this post we are sharing the steps to remove date from a WordPress post URL/permalink. We recently did this change in our own WordPress blog. It has been since long time we were using this date format in our blog permalink like this https://sharadchhetri.com/YYYY/MM/DD/post-slug . We decided to change the URL format in this […]

Filed Under: Articles Tagged With: nginx, wordpress

How to install Mariadb 10.4 server on CentOS 8 / RHEL 8

June 14, 2020 by Sharad Chhetri Leave a Comment

install MariaDB Server

Do you want to know how to install Mariadb 10.04 server on CentOS 8/RHEL 8 ? This post will help you to install MariaDB server. MariaDB is now defacto RDBMS in RHEL/CentOS after its seperation from the MySQL. We have already written other post on Mariadb Server, hence we will directly go to installation section. […]

Filed Under: Articles Tagged With: bash script, MariaDB Server

How to install Jfrog artifactory on CentOS 8

June 13, 2020 by Sharad Chhetri Leave a Comment

install jfrog on CentOs 8

Do you know what is artifactory ? In a simple definition, it is the repository where we keep the artifacts. Here, the artifacts are the packages and binaries. For example, when you build some package like rpm, jar, deb, tar.gz , you can keep these packages in artifcatory. For DevOps, the integration of Artifactory in […]

Filed Under: Articles, Devops Tagged With: artifactory, devops, jfrog

How to install Docker on CentOS 8

June 9, 2020 by Sharad Chhetri Leave a Comment

install docker on CentOS

We are installing Docker on CentOS 8. We will club all the required commands and make a simple bash script. This script you can also use with Vagrant,ansible etc.

Filed Under: Articles Tagged With: CentOS, CentOS 8, docker, install docker

How to install Docker on Ubuntu

June 7, 2020 by Sharad Chhetri Leave a Comment

install docker ubuntu

In this post, we will learn how to install Docker on Ubuntu 22.04 LTS, 20.04 LTS, 18.04 LTS and 16.04 LTS. We have installed the Docker by using shell script in Ubuntu Operating System. We will use the recommended steps and commands to install docker on Ubuntu. We have clubbed all the recommended commands in our shell script for installing Docker.

Filed Under: Articles, Containers, Docker Tagged With: container, docker, install docker, ubuntu

Create multiple virtual machine with one Vagrantfile

June 7, 2020 by Sharad Chhetri Leave a Comment

Vagrant Multi VM

For doing POC and testing sometimes we need multiple Virtual Machines very quickly. So here in this post we will create multiple virtual machine with one Vagrantfile by using Vagrant. We will cover some examples from coding side in Vagrantfile, it will help you in your real time scenarios as well. As we know Vagrant […]

Filed Under: Articles, Devops Tagged With: devops, vagrant

Learn Vagrant provision with shell provisioner : With Examples

June 7, 2020 by Sharad Chhetri Leave a Comment

vagrant shell provisioning

Learn Vagrant provision with shell provisioner with examples. The Vagrant provision will help you to automate the installing the software, configurations and commands in your Vagrant Boxes.

Filed Under: Articles, Devops, Vagrant Tagged With: devops, vagrant

Create single node Virtual Machine with Vagrant

May 30, 2020 by Sharad Chhetri Leave a Comment

single vm vagrant

In this post we will show how to create a single node Virtual Machine with Vagrant. As we know in our previous post we written about How to install Vagrant on Ubuntu and create first VM. We use Vagrant in our environment for doing lots of testing, POC(Proof Of Concept) and do some pre-work check […]

Filed Under: Articles, Devops Tagged With: devops, vagrant

  • « Go to Previous Page
  • Page 1
  • Page 2
  • Page 3
  • Page 4
  • Interim pages omitted …
  • Page 39
  • Go to Next Page »

Primary Sidebar

Articles

  • Install n8n docker in Ubuntu for practicing
  • Bash Script: MySQL Database backup to AWS S3
  • Automate no touch Jenkins setup wizard on docker (jcac)
  • How to run and configure Jenkins in Docker container
  • Complete Guide: How to install Nagios Monitoring on AlmaLinux / Rocky Linux
  • Install KVM on Ubuntu 24.04 LTS ( Bash Script )
  • How to install GIMP 2.10 on Ubuntu / Debian
  • 5 ways to check Ubuntu version of system (commands and GUI)
  • How To Solve Forgot MySQL / MariaDB Root Password
  • Create Self Hosted Build Agent Docker Image for Azure DevOps

Copyright © 2026 ยท
The material in this site cannot be republished either online or offline, without our permission.
Proudly Blogging From India.

  • Contact
  • About Me
  • My WordPress plugins
  • Privacy Policy