TimK2015
Member
Hi Folks
I currently use Beyond Compare (file/folder compare software) on my Windows 7 PC to copy files over my network from my Humax PVRs (HDR Fox T2) which have Samba installed on them. I have a Linux version of Beyond Compare on my Netbook which has Ubuntu 12.04 installed. I can browse to the Samba shares OK but can't see them when using Beyond Compare. I believe it's because the shares need to be mounted in Ubuntu to allow Beyond Compare to see them. Am I thinking along the right lines?
I've found some info about mounting shares (see below) but need some advice on how to tweak it. The network names of my PVRs are HumaxF, HumaxG & HumaxY. Can anyone offer any guidance please?
Mounting unprotected (guest) network folders
First, let's create the mount directory. You will need a separate directory for each mount.
sudo mkdir /media/windowsshare
Then edit your /etc/fstab file (with root privileges) to add this line:
//servername/sharename /media/windowsshare cifs guest,uid=1000,iocharset=utf8 0 0
Where
sudo mount -a
This will (re)mount all entries listed in /etc/fstab.
I currently use Beyond Compare (file/folder compare software) on my Windows 7 PC to copy files over my network from my Humax PVRs (HDR Fox T2) which have Samba installed on them. I have a Linux version of Beyond Compare on my Netbook which has Ubuntu 12.04 installed. I can browse to the Samba shares OK but can't see them when using Beyond Compare. I believe it's because the shares need to be mounted in Ubuntu to allow Beyond Compare to see them. Am I thinking along the right lines?
I've found some info about mounting shares (see below) but need some advice on how to tweak it. The network names of my PVRs are HumaxF, HumaxG & HumaxY. Can anyone offer any guidance please?
Mounting unprotected (guest) network folders
First, let's create the mount directory. You will need a separate directory for each mount.
sudo mkdir /media/windowsshare
Then edit your /etc/fstab file (with root privileges) to add this line:
//servername/sharename /media/windowsshare cifs guest,uid=1000,iocharset=utf8 0 0
Where
- guest indicates you don't need a password to access the share,
- uid=1000 makes the Linux user specified by the id the owner of the mounted share, allowing them to rename files,
- iocharset=utf8 allows access to files with names in non-English languages. This doesn't work with shares of devices like the Buffalo Tera Station, or Windows machines that export their shares using ISO8895-15.
- If there is any space in the server path, you need to replace it by \040, for example //servername/My\040Documents
sudo mount -a
This will (re)mount all entries listed in /etc/fstab.