Posts

Showing posts from 2014

how to mount window server on linux machine

how to mount window server on linux machine step 1 # yum install samba-client samba-common cifs-utils step 2 #mkdir -p /mnt/ntserver step 3 # mount -t cifs //ntserver/sharefolder -o username=test,password=mypassword /mnt/ntserver Use following command if you are using Old version such as RHEL =4, 3 or Debian =3,2 # mount -t smbfs -o username=test,password=mypassword //ntserver/sharfolder /mnt/ntserver cd /mnt/ntserver; ls -l