yeah for one it's not windows. Linux uses Samba to connect to windows based shares and isn't as intuitive and doesn't seem to be built into Pandora's file manager like others are..
I can't remember the name of it, but somewhere there is a windows share / network share management tool out there.. But if you don't mind the good old command line method I have the trick.
The first two steps you only need to do once.
1) first make a directory to mount your windows share.. The MOUNT_DIR name can be anything you like.. I'm just not that creative:
Code:
sudo mkdir /mnt/MOUNT_DIR
2) Next give your regular pandora account permission to use that directory:
Code:
sudo chown USER_NAME.USER_NAME /mnt/MOUNT_DIR
3) This is the connection command, I've made a shortcut to do this command so I don't have to type it out every time.. Depending on how moody your network is you may need to Substitute the host name with the IP address of the computer your connecting to. If everything goes well you will not see any messages, Just go to the /mnt/MOUNT_DIR and you should see your files.
Code:
sudo mount -t cifs -o username=guest,password= //HOSTNAME/SHARENAME /mnt/MOUNT_DIR
To disconnect the mount:
Code:
sudo umount /mnt/MOUNT_DIR
This is the convoluted way, but it works.. Maybe someone can chime in with that PND I was talking about.