I'm following a number of tutorials that explain how to setup an SD card that boots automatically enabling ssh in the process. I'm doing this as I only have a laptop and no spare keyboard, screen, etc. My problem is I cannot find the boot_enable_ssh.rc file.
All of the tutorials I've read describe using dd (so doing this using Unix (Ubuntu)) to write the .img file to the SD card. Done like this:
sudo dd bs=1M if=/path/to/2012-08-16-wheezy-raspbian.img of=/dev/sdb
This completes successfully; the next step is to copy the file
mv /boot/boot_enable_ssh.rc /boot/boot.rc
boot_enable_ssh.rc is missing.
I've run the dd action using the two most recent image files from the RPi official site - 2012-07-15-wheezy-raspbian.img - 2012-08-16-wheezy-raspbian.img
but for both, there is no /boot/boot_enable_ssh.rc file.
I've also tried searching with find (sudo find /media/ -name boot_enable_ssh.rc
). Still with no success.
Am I doing something wrong is there another way to get ssh going?
systemctl enable ssh
– user3123159 Apr 10 '18 at 13:28