This tutorial is building on: Bitte melden Sie sich an, um diesen Link zu sehen. and will show you how to build a maintainable (over remote ssh) compile environment
Replace configuration (-parameters) in /etc/ssh/sshd_config for remote access
Code
- sed -i "" "/#Port 22/s/.*/Port 22/" /etc/ssh/sshd_config;
- sed -i "" "/#PasswordAuthentication no/s/.*/PasswordAuthentication yes/" /etc/ssh/sshd_config;
- sed -i "" "/#PermitRootLogin no/s/.*/PermitRootLogin yes/" /etc/ssh/sshd_config;
- sed -i "" "/#PubkeyAuthentication yes/s/.*/PubkeyAuthentication no/" /etc/ssh/sshd_config;
Restart sshd service to reload configuration (-parameters)
Install pkg with default configurations
Use pkg command to install needed packages
# CAUTION: Installing devil with all sub dependencies may not be the best choice depending on the lib-explicity of your Makefile
# Be sure only importing needed libraries of devil to prevent your core's from overloading
(Optional) Use pkg command to install nice to have packages
That should be all. Feel free to leave a comment for further questions.