// First you need a file to store your user/pass info. You should keep it somewhere secure like in /root, so for an example we will use /root/.cred Here is a quick way to create the needed file. Supply your own username and password of course. //
echo "username=Administrator" > /root/.cred
echo "password=YOURPASSWORD" >> /root/.cred
// Note the first line uses a single > and the second uses two >> to append to the file. //
// Make a backup of fstab and add this line to the current one. //
cp /etc/fstab /etc/fstab.bak && echo "//xbox/f /mnt/xbox smbfs defaults,credentials=/root/.cred 0 0" >> /etc/fstab
// Now to test it. First make sure its not mounted. //
umount /mnt/xbox
mount -a
// This will read /etc/fstab and attempt to mount all entries. If successful it will drop you back to the prompt. Now you can cd /mnt/xbox to verify. //