Mounting SMB on Linux

# install cifs-utils package
sudo dnf install cifs-utils

# create directory where the SMB drive should be mounted into
mkdir /mnt/Movies

# mount the SMB drive
sudo mount.cifs //192.168.100.160/Movies \
/mnt/Movies -o username=your_username,password=your_password