Hello,
I have followed the http://www.intel.com/support/edison/sb/CS-035278.htm Intel® Edison Boards — Board Support Package (BSP) User Guide to build a custom kernel.
After I install my custom image to the Edison, I tried to start the SSHD service.
I noticed that /etc/init.d and /etc/rc folders were missing.
Not sure if I needed to add something during my custom build.
Is there any other way to start sshd service?
Any help?
Thanks,
Antonio.
Link Copied
Hi Antonio,
The Edison and the images for this board use systemd to handle the services. You can check the services in /lib/systemd/system
For the sshd service you are looking for, you can check the configuration of it by running cat /lib/systemd/system/sshd.socket
Start the service: systemctl start sshd.socket
Status of the services: systemctl status sshd.socket
Hope this helps,
Regards,
Charlie
Hi Antonio,
The Edison and the images for this board use systemd to handle the services. You can check the services in /lib/systemd/system
For the sshd service you are looking for, you can check the configuration of it by running cat /lib/systemd/system/sshd.socket
Start the service: systemctl start sshd.socket
Status of the services: systemctl status sshd.socket
Hope this helps,
Regards,
Charlie
Thank you,
I also found out that you need to run "configure_edison --setup" first.
For more complete information about compiler optimizations, see our Optimization Notice.