Mounting Windows Shares using Samba: Difference between revisions

From RSWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{AdWords}}
== Mounting Windows based shares using Samba ==
Mounting Windows based shares using Samba is a relatively simple process.  
Mounting Windows based shares using Samba is a relatively simple process.  


Line 13: Line 16:
The command above will work for all versions of Windows.
The command above will work for all versions of Windows.
If you are having difficulty mounting or receive an error with invalid file type ensure that the samba-client packages for your distribution are installed.
If you are having difficulty mounting or receive an error with invalid file type ensure that the samba-client packages for your distribution are installed.
{{AdWords2}}


[[Category:Linux| ]]
[[Category:Linux| ]]

Revision as of 18:58, 15 January 2008

Template:AdWords

Mounting Windows based shares using Samba

Mounting Windows based shares using Samba is a relatively simple process.

If the share is on a Windows XP, Server 2000 or NT machine you can use the following command:

mount -t smbfs -o username=username //server/share /mountpoint

However for Server 2003 the above command will not work so you simply change smbfs for cifs as shown below.

mount -t cifs -o username=username //server/share /mountpoint

The username should be that of your Windows user and in both examples you will be prompted for your windows password.

The command above will work for all versions of Windows. If you are having difficulty mounting or receive an error with invalid file type ensure that the samba-client packages for your distribution are installed.

Template:AdWords2