Hi. I will assume you are using KDE. You can use Konqueror to access your shares in Windows. Of course you have to share whatever folders you need from Windows. In order to access a share from Konqueror, you need to use the following URL:
It might work with other browsers. You probably need a username and a password to access the Windows share. If you need them, Konqueror will prompt you.
If you prefer to access the Windows share on the command line, you can use the smbclient command. Use it like this,
Code:
smbclient -U username \\\\windowsip\\sharename
This will prompt you for a password. If you don't need one, just press enter. If you omit the
option, smbclient will use the user that is executing the command. After you login successfully, you will get an "smb: \>" prompt. As far as I know, this is an FTP-like prompt. This means you could use the GET and PUT commands.
I hope this helped
