sudo -s keeps your original user environment. You can see this, for instance, if you have very different path settings for root and your user. If this is the case, then
sudo -s
echo $PATH
will show a different value than
sudo -s
su -
echo $PATH
Similarly, if you need to switch to a...