2024-10-11 23:35:51 -05:00
|
|
|
all:
|
|
|
|
@echo "make log # watch the virtigo daemon log"
|
|
|
|
@echo "make status # show the systemd status of virtigod"
|
|
|
|
@echo "make restart # restart virtigod"
|
|
|
|
@echo "make enable # enable virtigod on boot"
|
|
|
|
|
|
|
|
log:
|
|
|
|
@journalctl -f -xeu virtigod.service
|
|
|
|
|
|
|
|
status:
|
|
|
|
systemctl status virtigod.service
|
|
|
|
|
|
|
|
enable:
|
|
|
|
systemctl enable virtigod.service
|
|
|
|
|
|
|
|
restart:
|
|
|
|
systemctl stop virtigod.service
|
|
|
|
systemctl start virtigod.service
|
2024-10-12 15:01:27 -05:00
|
|
|
|
|
|
|
log-libvirt-guests:
|
|
|
|
journalctl -n 10 -xeu libvirt-guests.service
|
|
|
|
|
|
|
|
log-libvirtd:
|
|
|
|
journalctl -n 10 -xeu libvirtd.service
|
|
|
|
|
|
|
|
log-virtlogd:
|
|
|
|
journalctl -n 10 -xeu virtlogd.service
|
|
|
|
|
|
|
|
log-virtlockd:
|
|
|
|
journalctl -n 10 -xeu virtlockd.service
|
|
|
|
|
|
|
|
log-everything:
|
|
|
|
journalctl -f -xe
|
|
|
|
|
|
|
|
libvirtd-listen:
|
|
|
|
libvirtd --listen
|