list all files with full path of the file

How can i list every single file on a sun solaris server running 2.8 starting from '/' with the full path included in it?

example.
/
...
...
...
/etc/inetd.conf
/etc/passwd
/etc/shadow
...
...
...
/var/adm/messages
/var/adm/messages.0
/var/adm/messages.1
...
...
...
/last/file/on/the/system.conf

Thanks.
-Sowser

find / -print

omg, i was close...i tried a few things like find / -name * and ls -lR /...

i knew it was something that simple....thanks for the help.

-S

If you are only interested in files of a specific type use the "-type" option.

find / -type d -print (to list only directories)
find / -type l -print (to list only soft links)
find / -type b -print (to list only bliock special files)
find / -type f -print (to list only regular files)
etc
etc

Or the opposite

find / ! -type d -print (to list everything except directories)