Install Java for VS Code on Manjaro Linux

If you are a developer or student, you may be programming in Java and using VS Code to do your coding. Setting up your environment can be a confusing but important task and today we will cover the steps to get you up and running with Java in VS Code. First, make sure you have VS Code installed on Manjaro, if you need help with that you can follow my guide on doing so. ...

10-08-2022 · Adam

Install VSCode on Manjaro Linux

Many developers today choose Microsoft Visual Studio Code as their preferred text editor and IDE. VSCode is a multi-platform tool that is powerful in terms of editing and extended editing capabilities. On top of the already feature rich client, there are many official and community based extensions that expand it’s capabilities. This guide will explain how to install VSCode on Manjaro Linux. https://www.youtube.com/watch?v=QppKSrsuPZ8 Install VSCode Flatpak Installing VSCode as a Flatpak is an excellent option for Manjaro Linux users. It’s just as easy as the Snap method and the performance and manageability is even better. This is the method I’ve used to install VSCode on my Manjaro PC, so I recommend you try it out. You will need to enable Flatpak support on Manjaro first, if you haven’t already. If you need help, we already have a guide on setting up Flatpak on Manjaro. ...

10-07-2022 · Adam

Install VNC on Manjaro for Remote Access

Recently I set up Proxmox on an old PC so that I could create a home lab. One of the VMs is for development that I would need to access remotely through some sort of remote viewing utility. The VM is running Manjaro Linux and while I could use TeamViewer to accomplish remote abilities, I’ve found that it doesn’t always provide the best performance so I wanted to explore other options. One of the more common options for Manjaro is TigerVNC so that is the remote access tool I decided to go with for my setup. This quick guide will help you install TigerVNC on Manjaro Linux so that you can remotely connect to and view your desktop, just as if you are sitting at the machine with a monitor, keyboard, and mouse directly connected to it. ...

10-06-2022 · Adam

Install NodeJS on Manjaro Linux - 2023 Update

If you plan on getting into Javascript development and you use Manjaro, you will likely run across the need to install NodeJS on Manjaro Linux. It’s quite simple to do on Manjaro, especially when using NVM - Node Version Manager. NVM allows you to easily install, update and switch between different releases of NodeJS, such as LTS, which is what we will be installing today. Typically you would want to develop on LTS for better support unless you really need the newest features not available in LTS, or you are simply testing some new functionality. ...

05-09-2022 · Adam

How To Share a Folder From Windows to Arch Linux Guest OS in VirtualBox

I like many others, use a Linux virtual machine in VirtualBox from my Windows PC to do development work. There are many Linux distributions out there and many choose Ubuntu or some variant of it, I’ve chosen Manjaro which is an Arch based Linux. Completing tasks in Manjaro can be a bit different than in Ubuntu and other Debian Linux variants. One of those tasks is sharing a folder from my Windows PC through VirtualBox to my Manjaro Linux virtual machine. It’s not difficult, just a slight bit different and I will show you here how to share a windows folder with your Manjaro or Arch based Linux VM in VirtualBox. ...

05-06-2022 · Adam

VMware Horizon VM Already Used Status

If you have been using VMware Horizon Instant Clone VMs for any length of time, it is likely that you have run across the VM status of, “Already Used”. Typically, fixing the Already Used status is not as straightforward as just removing the VM from the Horizon View Admin page as other issues are. Fix Already Used Status in VMware Horizon In order to fix machines in this status, you will need to log in and locate the machine in vCenter. Once you have located the problem VM, proceed to power off the machine. Once the VM is powered off in vCenter, you will then need to delete the VM using the “Delete from Disk” option. You can do this by using the right-click menu on the VM. ...

04-28-2022 · Adam

VMware Horizon VC_FAULT_FATAL - Name Already Exists Error

In your VMware Horizon VDI Environment, you can run into a range of different errors. Many of these errors either resolve themselves or can be resolved just by recovering or removing the machine from within the Horizon Administrator console. However, some VMware Horizon errors such as VC_FAULT_FATAL - The name already exists, cannot be resolved in this way. How to Fix the VC_FAULT_FATAL Error Whenever you see this particular error, this means that Horizon is trying to create a new VM but can’t because a VM with that name already exists. This can happen for many reasons but most commonly, the VC_FAULT_FATAL - The name already exists error occurs because Horizon can no longer communicate with the VM in vSphere. At some point, it lost sync with the VM and now the communication between Horizon and vSphere for this VM is broken. ...

11-24-2021 · Adam

PowerShell Force Compliance Baseline Evaluation

SCCM Compliance rule evaluation for a new rule can sometimes be slow or maybe you just need to manually evaluate compliance baselines or rules on a machine or group of machines. Regardless of your reasoning, the PowerShell script below can help you achieve the goal of manually and remotely kicking off SCCM compliance rule evaluations. To make this reusable in the future, we will create a simple function that we can call along with a hostname to do the dirty work for us. ...

03-03-2021 · Adam

MySQL and Flask Tutorial

It’s common when building a backend to access a database for API’s and other situations. Luckily with Python, there is an easy module for accessing a MySQL database to make queries. This post will show you how to use MySQL in Flask so that you can use databases in your app easily. Install MySQL Package for Python Flask To install the required Python package for working with a MySQL database in Flask, we will use “pip”. I recommend doing this from a virtual environment, if you need help with that check out my post on setting up a Python Virtual Environment. The package that we want to install is called, flask-mysql-connector. This package will handle the communication between Flask and the MySQL database. ...

02-26-2021 · Adam

3 Easy Steps: Install VirtualEnv on Arch Linux for Python

Why Use VirtualEnv? Virtualenv allows you to separate specific packages from one project to another. This guide will show you how to easily install virtualenv on Arch Linux. Using Virtualenv allows for easier collaboration and prevents you from having issues with globally installed python packages. Imagine you have project A that needs a specific version of a package and project B that needs a different version. By using virtualenv, you can have those specific packages installed for each project and keep them separated. ...

02-24-2021 · Adam