tree /
or
find /
Update: @OP, since you have so many problems with this, how about this alternative. On ubuntu 9.10, should you have bash 4.0? so try this
#!/bin/bash
shopt -s globstar
for rdir in /*/
do
for file in $rdir/**
do
echo "$file"
done
done
source
share