We have a windows file server with an address like this:
\\bioinf-filesrv2.mycompany.fr\cluster15
How can I access it from Linux?
On a Ubuntu 14.04 I tried to access this through nautilus, but it crashed. Here is the crash report:
We have a windows file server with an address like this:
\\bioinf-filesrv2.mycompany.fr\cluster15
How can I access it from Linux?
On a Ubuntu 14.04 I tried to access this through nautilus, but it crashed. Here is the crash report:
Assuming a recent Linux, do this:
$ mount -t cifs //bioinf-filesrv2.mycompany.fr/cluster15 /mnt
Which will mount it at /mnt. You will need sufficient privilege (or be root).
If you need to add credentials, try:
$ mount -t cifs -o username=myuser,password=mypass //bioinf-filesrv2.mycompany.fr/cluster15 /mnt
You may need to install a package from your distro's repository called cifs-utils but, hopefully, it would already be there as part of the standard install.
I'd suggest adding it to your /etc/fstab, so it's online as soon as you boot. Mine has a (long) line reading:
//1.2.3.4/share_name/ /media/mount_point cifs uid=1000,guid=1000,rw,credentials=/etc/cifspasswd 0 0
cifs is the type of the file system for any Windows share.uid=1000,guid=1000,rw means that anyone on the system can access this sharecredentials=/etc/cifspasswd means that that credentials found in /etc/cifspasswd will be used to authenticate access to the share on the Windows server.This credential file should contain the username and password necessary for accessing the Windows share, i.e.
username=foo
password=bar
As /etc/fstab is (usually) readable by other users of the system, you can create the file as root and chmod go-=rwx to remove access for other users, to protect your password.
Caveat If you boot your system and the server isn't available, Linux will wait a bit during the boot sequence before giving up.
In Ubuntu click alt+f2.
Type smb://bioinf-filesrv2.mycompany.fr/cluster15. Enter.
See the new mount in Nautilus.
Source: http://www.howtogeek.com/howto/29167/3-easy-ways-to-connect-to-windows-shared-folders-from-linux/