how to mount a smb server on linux
tags: learning networking linux
content
# Create a mount point
sudo mkdir -p /mnt/edgeos
# Mount the share
sudo mount -t cifs '//ussd-prd-isi07.illumina.com/edgeos' /mnt/edgeos -o username=svc_isilond_edgeos,password='vQJR&nR%m6!d5xQS6',domain=ILLUMINA
# Copy files (replace with your actual paths)
cp -r /mnt/edgeos/path/to/folder /path/to/local/destination
# When done, unmount
sudo umount /mnt/edgeos