Linux

Java is a popular programming language, created in 1995.
It is owned by Oracle, and more than 3 billion devices run Java.
It is used for:

  • Mobile applications (specially Android apps)
  • Desktop applications
  • Web applications
  • Web servers and application servers

Docs
Java
  1. Java works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc.)
  2. It is one of the most popular programming language in the world
  3. It has a large demand in the current job market
  4. It is easy to learn and simple to use
  5. It is open-source and free
  6. It is secure, fast and powerful
  7. It has a huge community support (tens of millions of developers)
  8. Java is an object oriented language which gives a clear structure to programs and allows code to be reused, lowering development costs
  9. As Java is close to C++ and C#, it makes it easy for programmers to switch to Java or vice versa
  1. WSL Setup
    WSL Setup
    The WSL (Windows Subsystem for Linux) feature allows a user to install a Linux distro and execute Linux commands in Windows. WSL 2 is the current version of WSL which uses the latest and greatest virtualization technology. It has faster file system performance, is more compatible, and uses a real Linux kernel.
    Step 01: Enable WSL in Windows
                         
                        dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
                            
    
    Step 02: Make WSL 2 Default
                         
                        wsl --set-default-version 2
                            
    
    Step 03: Install Ubuntu in WSL 2
                         
                        wsl --list --online
                            
    
                         
                        wsl --install -d Ubuntu-22.04
                            
    
    Step 4: Check list od Distros
                         
                        wsl --list