Category Archives: Linux

Linux – How to create a Linux VM on Windows 11

By | 11/01/2023

In this post, we will see how to create a Linux Virtual Machine on Windows 11, using Hyper-V. First of all, we have to enable Hyper-V Manager.In order to do this, we open Windows Features: We check the “Hyper-V” features: Then, we restart Windows: Finally, we download the latest version of Ubuntu from the web… Read More: Linux – How to create a Linux VM on Windows… »

Linux – Commands (Part I)

By | 11/05/2022

MANAGE DIRECTORIES pwd: print name of current/working directory ls: list directory contents mkdir ‘directory name’: make directories mkdir -p ‘directories names’: make parent directories as needed rmdir: remove empty directory rmdir -p ‘name of directories’: remove directory and its ancestors rm -rf: remove a directory not empty MANAGE FILES file: determine file type touch ‘file… Read More: Linux – Commands (Part I) »