5

How To Install Fedora on Physical Server / VirtualBox & Vagrant

 2 years ago
source link: https://computingforgeeks.com/how-to-install-fedora-29-on-physical-server-virtualbox-vagrant/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
How To Install Fedora on Physical Server
Search

Fedora operating system gets a new release every 6 months for the general public and it ships with new cool features all available to you. This release has the ISO installer distributed for ServerWorkstation,and Atomic Host. Fedora Project also has a whole collection of desktop Spins,  Cloud images, special-purpose Labs, and ARM devices, versions for Power and S390 e.t.c.

Installation of Fedora on a physical machine, VirtualBox or any other Virtualization platform is not complicated. First, download the ISO image of the release distribution you want to install, and either create a bootable USB using:

How to Create Linux bootable USB Stick on macOS / Linux

If you’re installing on VirtualBox, VMware Workstation, vSphere ESXI or KVM, just attach the ISO while booting the instance for the first time.

Installing Fedora on Physical Server / VirtualBox / VMware / KVM

1. The first step is to insert Fedora installation disk into your computer and boot it up to initiate the installation process. A screen similar to below should be displayed:

2.Select your preferred language and click Continue

3. Set your  KEYBOARD layout type, Keymap, Timezone, Software Selection and click the “Begin Installation” button.

Also set the Installation Destination and click Done

4.  The Installation will start and asks you to provide a root password and create a standard user account

Click on “Root Password” to set a root password.

Click on “User Creation” to add  a new user

Check if to “Make this user administrator” if you’re creating an Admin account. If all is set, you should see a message like below

5. Wait for the installation to complete then click the Reboot button to restart the installed operating system.

6. Select the Kernel to boot to on the Grub menu and press <ENTER> key.

Finally login with root account or user added earlier

The first thing you may want to do is install basic packages:

sudo dnf -y update
sudo dnf -y install vim bash-completion wget

Running Fedora using Vagrant

Vagrant is an open source tool for building and managing virtual machine environments in an easy-to-use single workflow. If you’re installing Vagrant for the first time, check:

Install Latest Vagrant on Ubuntu 18.04 / Debian 9 & Kali Linux

Using Vagrant with Libvirt on Linux

Once Vagrant is installed, download Vagrant boxes using the vagrant box addcommand.

For Fedora KVM box:

$ vagrant box add fedora/31-cloud-base  --provider=libvirt
==> box: Loading metadata for box 'fedora/31-cloud-base'
    box: URL: https://vagrantcloud.com/fedora/31-cloud-base
==> box: Adding box 'fedora/31-cloud-base' (v31.20191023.0) for provider: libvirt
    box: Downloading: https://vagrantcloud.com/fedora/boxes/31-cloud-base/versions/31.20191023.0/providers/libvirt.box
    box: Download redirected to host: download.fedoraproject.org
    Successfully added box 'fedora/31-cloud-base' (v31.20191023.0) for 'libvirt'!

For Fedora VirtualBox box image:

$ vagrant box add fedora/31-cloud-base --provider=Virtualbox
==> box: Loading metadata for box 'fedora/31-cloud-base'
    box: URL: https://vagrantcloud.com/fedora/31-cloud-base
==> box: Adding box 'fedora/31-cloud-base' (v31.20191023.0) for provider: virtualbox
    box: Downloading: https://vagrantcloud.com/fedora/boxes/31-cloud-base/versions/v31.20191023.0/providers/virtualbox.box
    box: Download redirected to host: download.fedoraproject.org
==> box: Successfully added box 'fedora/31-cloud-base' (v31.20191023.0) for 'virtualbox'!

List available boxes

$ vagrant box list | grep 31-cloud-base
fedora/31-cloud-base                (libvirt, 31.20191023.0)
fedora/31-cloud-base                (virtualbox, v31.20191023.0)

Test by creating a Vagrant file and bringing up the instance

$ vim Vagrantfile

Add the following content

# -*- mode: ruby -*-
# vi: set ft=ruby :

ENV['VAGRANT_DEFAULT_PROVIDER'] = 'virtualbox'

Vagrant.configure("2") do |config|
  config.vm.define "fed" do |config|
  config.vm.hostname = "fed"
  config.vm.box = "fedora/31-cloud-base"
  config.vm.box_check_update = false
  config.vm.provider "virtualbox" do |v|
    v.memory = 1024
    v.cpus = 1
    end
  end
end

To create the vagrant environment, run:

$ vagrant up

I hope our guide on installing Fedora 31 on Physical Server / VirtualBox & Vagrant was helpful. If you have any issue, do let us know through the comments section.

Also check: Best Linux Desktop Distributions to try in 2019


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK