'Installing Podman DNSname - install: cannot stat 'bin/dnsname': No such file or directory
I am new to actually posing questions but here ya go.
I have been attempting to follow the install guide to add dnsname:
https://github.com/containers/dnsname
https://github.com/containers/dnsname/blob/main/README_PODMAN.md
I am having a problem though with this step:
make install PREFIX=/usr -- this will install the dnsname plugin into /usr/libexec/cni where your CNI plugins should already exist.
when I try to run it I get this error:
theuser@thecomputer:/usr/bin/dnsname$ make install PREFIX=/usr
install -d -m 755 /usr/libexec/cni
install -m 755 bin/dnsname /usr/libexec/cni/dnsname
install: cannot stat 'bin/dnsname': No such file or directory
make: *** [Makefile:76: install] Error 1
Ive tried running it in ~ as well but that doesnt change anything. I am lost as what to do as I have not installed Git Binaries very often (if at all). I haven't found anything by searching to understand what step I am missing or piece I don't have installed.
I am running:
Ubuntu 21.10
I have made sure to install:
make and its dependencies
go
podman
dnsmasq
Solution 1:[1]
OK! so torek helped me here. I needed to run just:
make PREFIX=/usr
in the directory BEFORE
make install PREFIX=/usr
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Graehme Paulson |
