Problem
You would like to login to your Brennan B2 using your ssh key.
Solution
Copy your public ssh key to /root/.ssh/authorized_keys file in your Brennan B2
You would like to login to your Brennan B2 using your ssh key.
Copy your public ssh key to /root/.ssh/authorized_keys file in your Brennan B2
Problem
You want to replace the spaces in filenames (ie in Brennan’s B2 system), that uses busybox and you do not have all the linux commands available.
Solution
Use the following in the directory with the files (ie flac files). At the moment this command only works in the directory that is being run.
# find . -type f -name "*.flac" -exec ash -c 'mv "$0" "${0// /_}"' '{}' ';'