List full File system permissions

I am attempting to get a baseline of deployed RHEL 6.5 servers and need to produce a full filesystem permission settings list.....but I forgot the bloody command and am racking my brain and now have a migraine.

I just need a simple list starting at "/" right down the tree, listing the folder, its permissions and the same for all sub-folders and files.

Your assistance is greatly appreciated

ls -lR / 2> /dev/null ?

That's a "simple list starting at /" :slight_smile:

What do you mean by "baseline of deployed RHEL servers?". Baseline of what? Files?

find / -ls ?

Thank you. I believe ls -lR / 2> /dev/null > is all I needed