Mount a network shared drive on Ubuntu
Let's see, How to mount Network Shared Drive ( Windows) in Linux System (Ubuntu)
Open The Terminal, and enter following commands,
- sudo mkdir /mnt
- sudo mkdir /mnt/share
- sudo apt install cifs-utils
- sudo mount.cifs //10.0.1.4/share /mnt/share/nmshare/ -o user=share,pass=share
Mount On boot
This is an example if you have credentials set to access your network share. To mount the network share which does not have credentials, use this command:
//10.0.1.4/share /mnt/share/nmshare cifs guest,uid=1000 0 0
Comments
Post a Comment
Thanks to write us