To share Windows folder to Ubuntu
- share the folder in Windows
- run the following commands in Ubuntu
> cd
> mkdir winshare
> sudo chmod 777 winshare
> sudo aptitude install smbfs
> sudo aptitude install winbind
> sudo nano /etc/nsswitch.conf, add wins to hosts line
> sudo mount -t cifs \\windows_host_name\shared_folder_name /home/username/winshare -o windows_username
To share Ubuntu folder to Windows
- run the following commands in Ubuntu
> cd
> mkdir vmshare
> sudo chmod 777 vmshare
> browse to vmshare folder in Nautilus UI, righ-click and follow the steps to share.
- access the shared folder in Windows as \\ubuntu_host_name_or_ip\vmshare
- share the folder in Windows
- run the following commands in Ubuntu
> cd
> mkdir winshare
> sudo chmod 777 winshare
> sudo aptitude install smbfs
> sudo aptitude install winbind
> sudo nano /etc/nsswitch.conf, add wins to hosts line
> sudo mount -t cifs \\windows_host_name\shared_folder_name /home/username/winshare -o windows_username
To share Ubuntu folder to Windows
- run the following commands in Ubuntu
> cd
> mkdir vmshare
> sudo chmod 777 vmshare
> browse to vmshare folder in Nautilus UI, righ-click and follow the steps to share.
- access the shared folder in Windows as \\ubuntu_host_name_or_ip\vmshare
Comments
Post a Comment