Server Administration

Server Administration We will assume you have an fresh new instance of Ubuntu hosted somewhere, or you a new create VM on your local computer for development purposes Let’s create a new user For security reasons, we will create a new user “weby” with the following command adduser weby and set a password: passwd weby Add the new user to the wheel group gpasswd -a weby wheel

August 23, 2021 · 1 min · Sabbadin Stefy

React - Setup React development environment

React is one of the most popular frontend framework, and for a good reason. It allow you to build your frontend application using components. Which are elements that encapsulate functionalities, visual elements, and data, into single units, that you can reuse, like lego blocks. Allowing you to organize and nest your components into a large and articulate application. Setup To start developing your react app, you will need to install some tools:...

August 19, 2021 · 2 min · Sabbadin Stefy

OpenMediaVault Nas Setup

Time has come for a quick Nas setup. I just write this guide for later reference. 1. System Installation Downloading the original iso file from the main project webpage. Once we downloaded the system image, create an usb stick and booy your system from it. The install procedure will start. 2. Installing Extra Plugins After the installation, I like to install the extra plugins. For that we need to ssh inside our box and execute the folowing comands:...

January 20, 2020 · 1 min · Sabbadin Stefy

Flask - Deploy A Flask Application To Your Ubuntu Server

Setup an Ubutu Server For Deployment We will asume that you have a fresh istance of Ubuntu Server at hand. First step we will create a new user to our Ubuntu Server. In our case we name our user sir adduser sir Here the console will ask to enter a password for your new user. Choose a strong password that you can easily remenber. Now we need to give to the new user the ability to run program with the sudo command....

2 min · Sabbadin Stefy