Fedora 38
Sponsored Link

Vagrant : स्थापित करना2023/10/04

 
Vagrant इंस्टॉल करें जो Libvirt या VirtualBox और अन्य जैसे वर्चुअलाइजेशन सॉफ़्टवेयर के लिए रैपर टूल है।
Vagrant कई वर्चुअलाइजेशन सॉफ़्टवेयर जैसे VirtualBox या Libvirt और अन्य का समर्थन करता है,
यह उदाहरण Libvirt स्थापित वातावरण पर आधारित है।
[1] Vagrant स्थापित करना।
[root@dlp ~]#
dnf -y install vagrant
[root@dlp ~]#
systemctl start virtnetworkd
[2] Vagrant का मूल उपयोग। इसे कोई भी आम यूजर इस्तेमाल कर सकता है.
# वर्चुअल मशीन छवियाँ डाउनलोड करें और जोड़ें
# डाउनलोड करने योग्य छवि के लिए, नीचे दी गई आधिकारिक साइट देखें

# ⇒ https://app.vagrantup.com/boxes/search

[fedora@dlp ~]$
vagrant box add generic/fedora37 --provider libvirt

==> box: Loading metadata for box 'generic/fedora37'
    box: URL: https://vagrantcloud.com/generic/fedora37
==> box: Adding box 'generic/fedora37' (v4.2.16) for provider: libvirt
    box: Downloading: https://vagrantcloud.com/generic/boxes/fedora37/versions/4.2.16/providers/libvirt.box
    box: Calculating and comparing box checksum...
==> box: Successfully added box 'generic/fedora37' (v4.2.16) for 'libvirt'!

# प्रारंभ करें ([Vagrantfile] वर्तमान पथ पर बनाया गया है)

[fedora@dlp ~]$
vagrant init generic/fedora37

A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.

# वर्चुअल मशीन प्रारंभ करें

[fedora@dlp ~]$
vagrant up

Bringing machine 'default' up with 'libvirt' provider...
Bringing machine 'default' up with 'libvirt' provider...
==> default: Checking if box 'generic/fedora37' version '4.2.16' is up to date...
==> default: Uploading base box image as volume into Libvirt storage...
==> default: Creating image (snapshot of base box volume).
==> default: Creating domain with the following settings...
==> default:  -- Name:              fedora_default
==> default:  -- Description:       Source: /home/fedora/Vagrantfile
==> default:  -- Domain type:       kvm
==> default:  -- Cpus:              2
==> default:  -- Feature:           acpi
==> default:  -- Feature:           apic
==> default:  -- Feature:           pae
==> default:  -- Clock offset:      utc
==> default:  -- Memory:            2048M

.....
.....

    default: Inserting generated public key within guest...
    default: Removing insecure key from the guest if it's present...
    default: Key inserted! Disconnecting and reconnecting using new SSH key...
==> default: Machine booted and ready!

# वर्चुअल मशीन की स्थिति दिखाएं

[fedora@dlp ~]$
vagrant status

Current machine states:

default                   running (libvirt)

The Libvirt domain is running. To stop this machine, you can run
`vagrant halt`. To destroy the machine, you can run `vagrant destroy`.

# SSH के साथ वर्चुअल मशीन से कनेक्ट करें

[fedora@dlp ~]$
vagrant ssh


[vagrant@fedora37 ~]$ uname -a 
Linux fedora37.localdomain 6.2.8-200.fc37.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Mar 22 19:11:02 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux

[vagrant@fedora37 ~]$ exit 

# वर्चुअल मशीन बंद करो

[fedora@dlp ~]$
vagrant halt

==> default: Attempting graceful shutdown of VM...
# यदि आप वर्चुअल मशीन की सेटिंग बदलना चाहते हैं, तो Vagrantfile संपादित करें

[fedora@dlp ~]$
vi Vagrantfile
# उदाहरण के लिए सीपीयू और मेमोरी सेटिंग्स बदलने के लिए
# पंक्ति 57 को निम्नानुसार अनटिप्पणी करें और मान जोड़ें या बदलें

  config.vm.provider "virtualbox" do |vb|
  #   # Display the VirtualBox GUI when booting the machine
  #   vb.gui = true
  #
  #   # Customize the amount of memory on the VM:
     vb.memory = "4096"
     vb.cpus = 2
  end
मिलान सामग्री