This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SYNTHETIC.CONF(5) BSD File Formats Manual SYNTHETIC.CONF(5) | |
NAME | |
synthetic.conf -- synthetic symbolic link and directory manifest | |
DESCRIPTION | |
synthetic.conf describes virtual symbolic links and empty directories to | |
be created at the root mount point. Because the root mount point is read- | |
only as of macOS 10.15, physical files may not be created at this loca- | |
tion. All writeable paths must reside on the data volume, which is |
How to Install clamav on MacOS with MacPorts
sudo port install clamav
sudo cp /opt/local/etc/freshclam.conf.sample /opt/local/etc/freshclam.conf
Open freshclam.conf and delete the "Example" line:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_go2port () { | |
local cur | |
cur="${COMP_WORDS[COMP_CWORD]}" | |
prev="${COMP_WORDS[COMP_CWORD-1]}" | |
local -a opts=( | |
-d | |
-h | |
-v | |
--debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Init machine | |
podman machine init | |
# Test machine | |
podman machine start podman-machine-default | |
podman machine stop podman-machine-default | |
# Remove machine and clean-up (if you don't use this port) | |
podman machine rm podman-machine-default | |
rm -rf ${HOME}/.local/share/containers |