cd
into the directory where the files you are working with are located and ls
to confirm you are in the right directory. Then run the below command to convert all file names to all lowercase:
for f in *; do mv "$f" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done