Yeah. It's the only account on the machine.
All I get is the bobber205 home folder. How do I expand from there?
I tried placing an alias inside my home folder pointed at my external, but it didn't work. 😉
Should I try a ftp program?
Sharing a Mac Volume (eg. Firewire HD) to Windows Computers
1. Create a new user that you can use to log in to your Mac from a Windows computer. This is so your own Mac user account won't get compromised. For example create a user called "Guest" with the password "12345".
2. Open a Terminal windows and login as an admin.
type:
su name_of_your_admin_account
Enter your password. "su" means substitute user.
3. Change to the home directory of the new user you created in step 1.
type:
cd /Users/Guest
4. Create a symbolic link to the volume you want to share. In this example my external Firewire drive is labeled "Mobile HD".
type:
sudo ln -s /Volumes/Mobile\ HD
Now there will be an alias to the contents of "Mobile HD" in Guest's home directory. If you created this alias the normal way in the Finder, then Windows doesn't recognise it. You have to use the Terminal to create this symbolic link.
5. Now when you log in to your Mac from a Windows computer as Guest, you will be able to read/write to the whole volume.