|
By default, Linux server equipped with samba-client, but not installed samba-server. However, access to shared Windows system, installed samba-client on it.
[Root @ test ~] # rpm -qa | grep samba
samba-3.6.23-14.el6_6.x86_64
samba-client-3.6.23-14.el6_6.x86_64
samba-common-3.6.23-14.el6_6.x86_64
samba-winbind-clients-3.6.23-14.el6_6.x86_64
samba-swat-3.6.23-14.el6_6.x86_64
samba-winbind-devel-3.6.23-14.el6_6.x86_64
samba-winbind-3.6.23-14.el6_6.x86_64
samba-winbind-krb5-locator-3.6.23-14.el6_6.x86_64
Try to mount
[Root @ test ~] # mount -t cifs -o "username = domain \ user" //192.168.1.101/share / mnt / share
Common mistakes:
mount: wrong fs type, bad option, bad superblock on //dbxi2.sl.dxdbbackup/Backup_Mgo13,
missing codepage or helper program, or other error
(For several filesystems (e.g. nfs, cifs) you might
need a / sbin / mount. < type> helper program)
In some cases useful info is found in syslog - try
dmesg | tail or so
You need to install cifs-utils
[Root @ test ~] # yum install cifs-utils
Remounting
[Root @ test ~] # mount -t cifs -o "username = domain \ user" //192.168.1.101/share / mnt / share
See mount specified host Windows systems to share
[Root @ test ~] # smbclient -L 192.168.1.101 -U domain \\ user
Enter domain \ user's password:
Domain = [domain] OS = [Windows Server 2008 R2 Standard 7601 Service Pack 1] Server = [Windows Server 2008 R2 Standard 6.1]
Sharename Type Comment
--------- ---- -------
ADMIN $ Disk Remote Admin
C $ Disk Default share
cdn Disk
D $ Disk Default share
dbbackup Disk
E $ Disk Default share
FTP Disk
iisbackup Disk
IPC $ IPC Remote IPC
MSSQL_REPL Disk
share Disk
tmp Disk
session request to 192.168.1.101 failed (Called name not present)
Domain = [domain] OS = [Windows Server 2008 R2 Standard 7601 Service Pack 1] Server = [Windows Server 2008 R2 Standard 6.1]
Server Comment
--------- -------
Workgroup Master
--------- ------- |
|
|
|