Quantcast
Channel: Openstack RDO && KVM Hypervisor
Viewing all articles
Browse latest Browse all 300

Attempt to run kernel 6.7.0 on Manjaro KDE 23.1.2

$
0
0

 Setup Cockpit Web Console and deploy KVM Guest under the most recent kernel to be installed via Manjaro Settings Manager














Following https://forum.manjaro.org/t/how-to-setting-up-qemu-kvm-with-virt-manager/127431

Install packages required to setup KVM Hypervisor on Manjaro Linux

$ sudo pacman -Syy qemu virt-manager virt-viewer dnsmasq vde2 bridge-utils openbsd-netcat ebtables iptables

Starting libvirtd service and tuning file  /etc/libvirt/libvirtd.conf

$ sudo systemctl enable libvirtd.service

$ sudo systemctl start libvirtd.service

# Check that the service is running (press 'q' to quit):

$ systemctl status libvirtd.service

$ sudo nano /etc/libvirt/libvirtd.conf

# uncomment the following lines:

unix_sock_group = "libvirt"

unix_sock_rw_perms = "0770"

:wq

============================

Add your user to the libvirt group

============================

$ sudo usermod -G libvirt -a `whoami`

$ newgrp libvirt

Restart libvirt deamon:

$ sudo systemctl restart libvirtd.service

Install Web Cockpit Console
 $  sudo apt install cockpit cockpit-machines
 $  sudo systemctl start cockpit.socket

Here file /usr/lib/systemd/system/cockpit.service requires to add  lines : 
[Install]
WantedBy=graphical.target

 $  sudo systemctl enable cockpit.socket

 Tuning firewall
 $  sudo apt install firewalld
 $  sudo firewall-cmd --add-service=cockpit --permanent

 $  sudo firewall-cmd --reload


























































Viewing all articles
Browse latest Browse all 300

Trending Articles