[email protected]Mon – Fri 9:00AM – 5:00PMLinkedInXFacebook
NexonHost
Netherlands Dedicated ServersAmsterdam · Equinix AM6Germany Dedicated ServersFrankfurt · Equinix FR4Romania Dedicated ServersBucharest · VoxilityAustria Dedicated ServersVienna · Interxion VIEBulgaria Dedicated ServersSofia · TelepointFrance Dedicated ServersParis · Interxion PAR — Marseille · Digital Realty MRS3Ireland Dedicated ServersDublin · Equinix DB2Italy Dedicated ServersMilan · Irideos AvalonPoland Dedicated ServersWarsawSpain Dedicated ServersMadrid · Equinix MD2United States Dedicated ServersAshburn · Equinix DC
Category

Knowledge Base

427 articles and guides on knowledge base from the NexonHost team — page 9 of 18.

All articles
How to install ubuntu 18.04.6
July 21, 2023

How to install ubuntu 18.04.6

How to install ubuntu 18.04.6 Connect to java/html5 console, (here you can find an article that will show you how) How to access java/html5 console : Mount ISO: Virtual media > Connect Virtual Image > Map CD/DVD Click on: Connect Virtual Media. Click on: Map CD/DVD. Now click on: Map Device.…

Read article
How to install CentOS 7
July 21, 2023

How to install CentOS 7

How to install CentOS 7 Connect to java/html5 console, (here you can find an article that will show you how) How to access java/html5 console : Select: Install CentOS 7. Mount ISO: Virtual media > Connect Virtual Image > Map CD/DVD Click on: Connect Virtual Media. Click on: Map CD/DVD. Now…

Read article
How to install Debian 12.
July 20, 2023

How to install Debian 12.

How to install Debian 12. Connect to java/html5 console, (here you can find an article that will show you how) How to access java/html5 console : Mount ISO: Virtual media > Connect Virtual Image > Map CD/DVD Click on: Connect Virtual Media. Click on: Map CD/DVD. Set users and password: Chose…

Read article
How to access your KVM Java Console from Client Area.
July 20, 2023

How to access your KVM Java Console from Client Area.

How to access your KVM Java Console from Client Area. After you place the order access Client Area from https://nexonhost.com/: Access services: Click on your product: You can access you KVm Java Console from the below buttons : How to Start, Stop, Reset, Kvm java console: Start the KVM Java…

Read article
How To Create A Password Generator In Bash.
July 19, 2023

How To Create A Password Generator In Bash.

How To Create A Password Generator In Bash. In this article, we will explore how to create a password generator using Bash scripting. Bash is a popular scripting language available in most Unix-like operating systems. Generate a random string of characters: To create a secure password, we need to…

Read article
How to understand and use BASH conditionals.
July 18, 2023

How to understand and use BASH conditionals.

How To Understand And Use BASH Conditionals. BASH (Bourne Again SHell) is a popular command-line interpreter and scripting language used in Unix-like operating systems. One of the key features of BASH is its support for conditionals and harnesses, which allow you to make decisions and control the…

Read article
How to understand Environment Variables in BASH
July 18, 2023

How to understand Environment Variables in BASH

How To Understand Environment Variables In BASH Environment variables play a crucial role in the BASH shell, allowing you to customize and configure your shell environment. In this article, we’ll explore various examples of how to work with environment variables in BASH. Viewing Environment…

Read article
How To Understand Variables In Scripting.
July 18, 2023

How To Understand Variables In Scripting.

How To Understand Variables In Scripting. Random variables are a fundamental concept in scripting and programming. They allow us to generate and work with random values, enabling us to add variability and unpredictability to our scripts. In this article, we will explore what random variables are,…

Read article
How to create a VM with VirtualBox.
July 18, 2023

How to create a VM with VirtualBox.

How To Create A VM With VirtualBox. A virtual machine (VM) is a software emulation of a physical computer system. It allows you to run an operating system (OS) and execute programs as if you were using a dedicated physical machine. How to create a Vm? Start VirtualBox on your computer. Click on…

Read article
How to manage the Network Bridge for KVM.
July 14, 2023

How to manage the Network Bridge for KVM.

How To Manage The Network Bridge For KVM This guide shows you how to manage the Network Bridge for KVM in Virtualizor.Virtualizor will create a viifbr0 bridge.viifbr0 assumes eth0 as the Network Device and detects the IP, Netmask, GATEWAY from : /etc/sysconfig/network-scripts/ifcfg-eth0 or…

Read article
Create raid 5 software during  OS install
July 14, 2023

Create raid 5 software during OS install

How to create raid 5 software during OS install. RAID 5 is a combination of three or more hard disks that function as a single logical drive and thereby outperform individual data carriers in terms of reliability and read speed. But to offer these advantages, a RAID 5 system relies on two active…

Read article
How to create software raid 10 from OS install.
July 14, 2023

How to create software raid 10 from OS install.

How To Create Software Raid 10 (Raid 1+0) From OS Install. RAID 10 is designed to offer superior resilience and speed than other RAID levels, as it combines the mirroring protection of RAID 1 with the performance enhancements that RAID 0 offers. Reset and reformat all disk. From the first disk put…

Read article
How to create software raid 6 from OS install.
July 14, 2023

How to create software raid 6 from OS install.

How To Create Software Raid 6 From OS Install. RAID 6 uses two parity stripes, the practice of dividing data across the set of hard disks or SSDs, on each disk. It allows for two disk failures within the RAID set before any data is lost. Reset and reformat all disk. From the first disk put 1Gb in…

Read article
How to Fix “Connection Refused by Port 22” on Debian/Ubuntu.
July 14, 2023

How to Fix “Connection Refused by Port 22” on Debian/Ubuntu.

How To Fix “Connection Refused By Port 22” On Debian/Ubuntu. In this article we will explore different ways we can resolve the Connection Refused issue on an Ubuntu/Debian system. Verify OpenSSH Installation First, check if OpenSSH is installed on your system or not. The command mentioned below…

Read article
How to create software raid 0/1 from OS install.
July 14, 2023

How to create software raid 0/1 from OS install.

How To Create Software Raid 0/1 From OS Install. RAID 0 (or) Striping RAID 0 is ideal for non-critical storage of data that have to be read/written at a high speed, such as on an image retouching or video editing station. RAID 1 (or) Mirroring Data are stored twice by writing them to both the…

Read article
How to use and ad variables on Bash Scrip.
July 12, 2023

How to use and ad variables on Bash Scrip.

How To Use And Ad Variables On Bash Scrip. Bash scripting is a powerful tool for automating tasks in the Linux environment. One of the fundamental concepts in Bash scripting is variables. Variables allow you to store and manipulate data within a script. In this article, we will explore the basics…

Read article
How to create a script in bash.
July 11, 2023

How to create a script in bash.

How To Create A Script In Bash. Bash is a popular scripting language used in Unix-based operating systems. It is known for its simplicity and powerful features. In this article, we will walk you through the process of writing a basic “Hello, World!” script in Bash. Step 1: Create a new Bash script…

Read article
How to install Python 3 in CentOS 7.
July 10, 2023

How to install Python 3 in CentOS 7.

How To Install Python 3 In CentOS 7. This tutorial will guide you through installing Python 3 on a CentOS 7 system using the Software Collections (SCL) alongside the distribution default Python version 2.7. We will also show you how to create a Python virtual environment. Enable Software…

Read article
How to Install Python Pip.
July 10, 2023

How to Install Python Pip.

How To Install Python Pip This guide explains how to install pip for Python 3 and Python 2 on Ubuntu 22.04. We will also show you the basics of installing and managing Python packages with pip. Before You Begin Python comes in two flavors; Python 2 and Python 3. Python 3 is included in…

Read article
How to install python on ubuntu 22.
July 10, 2023

How to install python on ubuntu 22.

How To Install Python On Ubuntu 22. This article will explain how to build Python from the source code on Ubuntu 22.04. Python 3 comes preinstalled by default on Ubuntu 22.04. To check the Python version installed on your system, type: python3 –version The output should look something like the…

Read article
How to use Linux find command.
July 8, 2023

How to use Linux find command.

How To Use Linux Find Command. In this article we will show you how to use find command. The find command is one of the most powerful tools in the Linux system administrators arsenal. It searches for files and directories in a directory hierarchy based on a user given expression and can perform…

Read article
How To Use And Understand Linux Screen.
July 8, 2023

How To Use And Understand Linux Screen.

How To Use Linux Screen. Screen or GNU Screen is a terminal multiplexer. In other words, it means that you can start a screen session and then open any number of windows (virtual terminals) inside that session. Processes running in Screen will continue to run when their window is not visible even…

Read article
How to use and understand  wget command.
July 8, 2023

How to use and understand wget command.

How To Use Wget Command. This article shows how to use the wget command through practical examples and detailed explanations of the most common options. How to install wget: Installing Wget on Ubuntu and Debian sudo apt install wget Installing Wget on CentOS and Fedora sudo yum install wget Wget…

Read article
How to Add User to Group in Linux.
July 8, 2023

How to Add User to Group in Linux.

How To Add User To Group. In this tutorial, we will explain how to add a user to a group in Linux systems. We will also show you how to remove a user from a group and how to create, delete, and list groups. How to Add an Existing User to a Group To…

Read article
Get in Touch

Together, Let’s Build a Faster, Safer Internet.

Build scalable infrastructure with NexonHost — high-performance dedicated servers, VPS hosting, colocation, and DDoS protection across Europe.

Get Started →Contact Us
[email protected]Mon – Fri 9:00AM – 5:00PM