--
yum whatprovides /usr/bin/virsh
=>outputs which package provides the binary virsh.
--
if you don’t know the path , use :
yum whatprovides */virsh
--
--
yum whatprovides /usr/bin/virsh
=>outputs which package provides the binary virsh.
--
if you don’t know the path , use :
yum whatprovides */virsh
--
--
For full path names of changed files:
git log --author=<user_mail_id> --name-only
--
For full path names and status of changed files:
git log --author=<user_mail_id> --name-status
--
For abbreviated pathnames and a diffstat of changed files:
git log --author=<user_mail_id> --stat
--
source:
https://stackoverflow.com/questions/1230084/how-to-have-git-log-show-filenames-like-svn-log-v
Check current kernel command line arguments:
#grubby --info=ALL | less
Propagate the changes:
#grub2-mkconfig -o /boot/grub2/grub.cfg
// podman pull a image overriding host architecture
podman pull --override-arch=arm64 quay.io/openshift-release-dev/ocp-release:4.X.Y
// Here the image needs to be manifest listed
// get all node_names
oc get nodes
// Let's say the node we are interested in is: my_specific_node_name_here
// Get pods running in the specific node
oc get pod --field-selector=spec.nodeName=<my_specific_node_name_here> --all-namespaces
// Get pods running in the specific node with specific state
oc get pod --field-selector=spec.nodeName=<my_specific_node_name_here> --all-namespaces
| grep ContainerCreating