Mount CIFS share on oracle linux

Install CIFS

 yum install cifs-utils -y

mount -t cifs -o username=USER,password=PASSWORD,workgroup=GROUP/AD,file_mode=0777,dir_mode=0777 //PATH_TO_SHARE /MOUNT_POINT

Example:

mount -t cifs -o username=user,password=Teste123,workgroup=localdomain,file_mode=0777,dir_mode=0777 //10.30.0.181/share$ /mnt/remotefolder

Mount CIFS share on oracle linux

Install CIFS  yum install cifs-utils -y mount -t cifs -o username=USER,password=PASSWORD,workgroup=GROUP/AD,file_mode=0777,dir_mode=0777 //P...

Mais vistos