This is first time based on the UK raspbian images.
Usually the problem is the '|' character. if you type this and get '~' then you should update the keyboard layout:
sudo raspi-config
change keyboard layout
other -> generic 104 key
Not the International one.
It will ask you to pick from some UK options, choose other
Then get to the US options
sudo raspi-config
Interfacing options
# This makes it start on boot:
sudo systemctl enable ssh
# This starts it now:
sudo systemctl start ssh
Auth is password based by default.
Mount a USB
Put the following contents in: /etc/systemd/system/mnt-usb_stick.mount
[Unit]
Description=Mount USB stick
[Mount]
What=/dev/sda1
Where=/mnt/usb_stick
Type=vfat
Options=defaults,user,umask=0000
[Install]
WantedBy=multi-user.target
Put the following in: /etc/systemd/system/timelapse.service
[Unit]
Description=Take some photos
After=mnt-usb_stick.mount
Requires=mnt-usb_stick.mount
[Service]
Type=simple
ExecStart=/home/pi/timelapse/do_timelapse.sh
[Install]
WantedBy=multi-user.target