KVM : वर्चुअल मशीन बनाएं2024/05/10 |
GuestOS इंस्टॉल करें और वर्चुअल मशीन बनाएं।
यह उदाहरण Ubuntu 24.04 स्थापित करना दिखाता है। |
|
[1] | इस उदाहरण पर, यह पहले एक निर्देशिका पर उबंटू की ISO फ़ाइल डाउनलोड करता है और यह टेक्स्ट मोड पर ISO फ़ाइल से GuestOS स्थापित करता है। एसएसएच इत्यादि के माध्यम से कंसोल या रिमोट कनेक्शन पर काम करना संभव है। इसके अलावा, वर्चुअल मशीन की छवियां डिफ़ॉल्ट रूप से स्टोरेज पूल के रूप में [/var/lib/libvirt/images] पर रखी जाती हैं, हालाँकि, यह उदाहरण एक नया स्टोरेज पूल बनाने और उपयोग करने का तरीका दिखाता है। (अपनी पसंद के किसी भी स्थान का उपयोग करें) |
# एक भंडारण पूल बनाएँ root@dlp:~# mkdir -p /var/kvm/images root@dlp:~# virt-install \ --name ubuntu2404 \ --ram 4096 \ --disk path=/var/kvm/images/ubuntu2404.img,size=20 \ --vcpus 2 \ --os-variant ubuntu24.04 \ --network bridge=br0 \ --graphics none \ --console pty,target_type=serial \ --location /home/ubuntu-24.04-live-server-amd64.iso,kernel=casper/vmlinuz,initrd=casper/initrd \ --extra-args 'console=ttyS0,115200n8' # स्थापना प्रारंभ होती है ================================================================================ Serial [ Help ] ================================================================================ As the installer is running on a serial console, it has started in basic mode, using only the ASCII character set and black and white colours. If you are connecting from a terminal emulator such as gnome-terminal that supports unicode and rich colours you can switch to "rich mode" which uses unicode, colours and supports many languages. You can also connect to the installer over the network via SSH, which will allow use of rich mode. [ Continue in rich mode > ] [ Continue in basic mode > ] [ View SSH instructions ] # [Continue in basic mode] चुनें # उसके बाद, आप सामान्य प्रक्रिया के साथ इंस्टॉलेशन चरणों को आगे बढ़ा सकते हैं |
उपरोक्त विकल्पों के उदाहरण का अर्थ इस प्रकार है। दूसरों के लिए कई विकल्प हैं, पढ़ें [man virt-install]।
|
[2] | इंस्टॉलेशन समाप्त करने के बाद, कंप्यूटर को पुनरारंभ करें और फिर लॉगिन प्रॉम्प्ट निम्नानुसार दिखाया गया है। यह ठीक है यदि इंस्टॉलेशन के दौरान आपके द्वारा सेट किए गए उपयोगकर्ता के साथ सामान्य रूप से लॉग किया गया हो। |
Ubuntu 24.04 LTS ubuntu ttyS0 ubuntu login: ubuntu Password: Welcome to Ubuntu 24.04 LTS (GNU/Linux 6.8.0-31-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/pro System information as of Thu May 9 08:16:12 UTC 2024 System load: 0.69 Processes: 141 Usage of /: 42.1% of 9.75GB Users logged in: 0 Memory usage: 5% IPv4 address for enp1s0: 10.0.0.212 Swap usage: 0% Expanded Security Maintenance for Applications is not enabled. 0 updates can be applied immediately. Enable ESM Apps to receive additional future security updates. See https://ubuntu.com/esm or run: sudo pro status The programs included with the Ubuntu system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. To run a command as administrator (user "root"), use "sudo <command>". See "man sudo_root" for details. ubuntu@ubuntu:~$ |
[3] | गेस्टओएस से होस्टओएस में जाने के लिए, Ctrl + ] कुंजी इनपुट करें। होस्टओएस से गेस्टओएस में जाने के लिए, एक कमांड इनपुट करें [virsh console (वर्चुअल मशीन का नाम)]। |
ubuntu@localhost:~$ # Ctrl + ] चाबी root@dlp:~# # मेज़बान का कंसोल root@dlp:~# virsh console ubuntu2404 # अतिथि के कंसोल पर स्विच करें Connected to domain 'ubuntu2404' Escape character is ^] # Enter चाबी ubuntu@localhost:~$ # अतिथि का सांत्वना |
[4] | नीचे दिए गए आदेश से वर्तमान VM से VM की प्रतिलिपि बनाना आसान है। |
root@dlp:~# virt-clone --original ubuntu2404 --name template --file /var/kvm/images/template.img Allocating 'template.img' | 1.8 GB 00:00 ... Clone 'template' created successfully. # डिस्क छवि root@dlp:~# ll /var/kvm/images/template.img -rw------- 1 root root 3029729280 May 9 08:18 /var/kvm/images/template.img # विन्यास फाइल root@dlp:~# ll /etc/libvirt/qemu/template.xml -rw------- 1 root root 6732 May 9 08:18 /etc/libvirt/qemu/template.xml |
Sponsored Link |
|