jqn wrote:But... I'm not a Linux expert and I've a question: HOW TO access to Windows folders, if possible.
No problem, here are the steps to mount a Windows share:
☼ Open a terminal window and become user 'root' (root password is 'pbroot')
☼ Install the necessary Samba packages, you only need to do this one time. This will add about 5.7mb. Take the defaults to the Samba setup questions.
☼ Create a directory to 'mount' your windows share on (only need to do this once per share). If you plan to mount multiple shares, the directory name you select should be descriptive to the share name - otherwise, you can simply name the directory something generic like 'windows'...
☼ Mount the share. This is a command you will need to give each time your virtual PC is booted, I usually create a bash script to keep this command because it is lengthy and it is hard to remember all the parameters. It might be fun to create a PB app that would do this for you, just keep in mind that user 'root' is the only one who can 'mount'.
The command is structured like so:
mount -t smbfs -o username=<username>,ip=<share_servers_ip>,uid=1000 //<server>/<share> /mnt/<mount_dir>
Here is the command with the following stats:
Windows user name: beach
Windows server IP address: 192.168.1.10
Windows server name: stimpy
Share name: data
local dir: windows
Code: Select all
# mount -t smbfs -o username=beach,ip=192.168.1.10,uid=1000 //stimpy/data /mnt/windows
If all goes well, you should be asked for a password. Now you will be able to access the windows share from the mounted directory within all of your applications. Also, if your share is hidden (like 'data$') you will need to escape the '$' with a backslash ('data\$')
Let me know if you get stuck...