Came across a reference to mounting Windows shares on a Linux box. The example I found didn't work but after some mucking about I found the correct syntax that works with e-smith 4.1B4 at least. I know all you Linux gurus know this but for us few 'newbies' out there, I thought I'd share

This looks like a great way for accessing a Windows machine via an e-smith-server console session.
In this example the Windows computer is an NT4 workstation named 'station1'. Obviously substitute whatever username/password/servername/mount-point works for you.
Step 1 - create the mount point:
mkdir /mnt/station1
Step 2 - connect the mountpoint to the Windows share:
mount -t smbfs -o username=administrator,password=administrators-password //station1/c$ /mnt/station1
(Note the above is all one line)
Step 3 - access the mount point
cd /mnt/station1
Regards,
Darrell