Skip to content

Instantly share code, notes, and snippets.

@karataserkan
Forked from ipbastola/cifs-mount.md
Last active February 6, 2019 07:49
Show Gist options
  • Save karataserkan/27e8e6c72f18c6d9194f0c3ad6e71936 to your computer and use it in GitHub Desktop.
Save karataserkan/27e8e6c72f18c6d9194f0c3ad6e71936 to your computer and use it in GitHub Desktop.
How to mount CIFS into Ubuntu 16.04

CIFS Mount on Ubuntu 14.04

1. Install packages

$ sudo apt-get install cifs-utils

2. Create a Mount point Directory

$ sudo mkdir /media/share
$ sudo chown -R <user>:<user> /media/share

3. Mount

Mount disk

sudo mount -t cifs //<IP>/<Folder> /media/share/ -o username=<username>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment