Hi
My Macmini running catalina died so i installed Freebsd on it,
and now i want to copy a list of packages installed on my Macbook air running freebsd to the macmini
Should i use pkg prime-list to generate a list of the packages i installed on the macbook air,
prime-list just creates a list of package you have installed and not any dependencies
or should i use pkg info which lists the packages installed and the dependencies
Then i can use netcat to transfer to text file to the macmini
How do you use pkg to install the packages from the text file,
i had a look through the man page, maybe i missing something
is there a pkg option i missing that allows you to specify a file to install packages from,
or do you have to cat the text file and pipe it into pkg
My Macmini running catalina died so i installed Freebsd on it,
and now i want to copy a list of packages installed on my Macbook air running freebsd to the macmini
Should i use pkg prime-list to generate a list of the packages i installed on the macbook air,
prime-list just creates a list of package you have installed and not any dependencies
Bash:
pkg prime-list > pkg-prime-list.txt
or should i use pkg info which lists the packages installed and the dependencies
Bash:
pkg info > ~/Desktop/pkg-list.txt
Then i can use netcat to transfer to text file to the macmini
How do you use pkg to install the packages from the text file,
i had a look through the man page, maybe i missing something
is there a pkg option i missing that allows you to specify a file to install packages from,
or do you have to cat the text file and pipe it into pkg