Skip to main content

Install Arch Linux from graphical installer!

Arch Linux

Arch Linux is the most loved and hard to install Linux distributions of all time. Arch uses the rolling release model, such that regular update is all that is needed to get latest software releases. It keeps the uses on bleeding edge of software. The design approach of the development team follows the KISS principle (“keep it simple, stupid”) as a general guideline and focuses on minimalism and simplicity.

Arch Linux is generally used by hardcore Linux uses who are familiar with the Linux framework. Installing Linux requires high knowledge about the Linux commands and might often lead to undesired outcomes while installing.

There are a lot of graphical installation programs available for Arch Linux such as Revenge Graphical Installer. Meet another graphical installer called “archfi”.

Screenshot:

Archfi screenshot

Archfi helps you to install Arch Linux with dos like installation. This script even allows you to install packages and environment after the successful Arch Linux installation

How to install Arch Linux using "Archfi"?

  • Make sure you have the Arch Linux iso file (Download from here). If you are installing Arch in your system make sure you make a bootable pendrive or so. If you are using VirtualBox (which I recommend when you are installing for the first time), make sure you mount the iso file.
Arch Boot Screenshot
  • Set up the internet after booting.

      • To set up wifi type "wifi-menu"
      • Or use LAN to get internet access
  • Type this and let the magic happen!
    wget archfi.sf.net/archfi
    sh archfi
Cheers!

Resources:

Archfi Project Github

Youtube tutorial:


Comments

Popular posts from this blog

How to format HTML/CSS/JS (or any other) using node.js in Notepad++ in simply easy steps.

Hey guys! Today I am going to tell you on how to use code format / pretty print your HTML / CSS / JS or any other programming language using node modules (Prettier) in notepad++. Before. After. Lets get started! Pre-requisite: you need to have node installed in your computer. You can download it from here . Make sure you have installed node correctly. install notepad++ in your computer. You can download the latest version from here . Step 1. Install Prettier using node. To install Prettier in your system click on Start => cmd. This will open Command prompt. Write this command in Command Prompt.  npm install --save-dev --save-exact prettier To check if prettier is installed correctly type. prettier --check for more info click here. Step 2. Check if nppexec plugin in set in your notepad++ Mostly notepad++ comes with nppexec  by default. Just in case you cannot find nppexec. Check out this amazing blog that tells you step by step how to set up nppexec in your notepad++.  https://www.v

CRUD Operation in SAPUI5. Part 3: Fragments and Update Operation

 CRUD Operation in SAPUI5 Part 3: Fragment and Update Operation We have covered Create and Display operation in our previous article. If you have not checked that I highly recommend you to check that before starting this article for better understanding. Link:  Part 2: Create and Display

CRUD Operation in SAPUI5 Part 2: Create and Display using Input and Table

 CRUD Operation in SAPUI5 Part 2: Create and Display in Table In my previous article we discussed the brief introduction about SAPUI5, MVC architecture and we developed a simple user interface with input and tables. In this article we will discuss the Model and Controller from the MVC architecture. If you have not seen the first part I highly recommend you to see that first. Link:  Part 1: Intro and UI Design