How to Mount Windows Partition on Linux Centos, Redhat , Ubuntu ..................................

open the fstab file in terminal & add some line as below then you can access your windows share folder in linux System.

[root@deven ~]# vim /etc/fstab


then save the file & type the command in terminal
df -h
[root@deven ~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda2              97G  3.9G   88G   5% /
tmpfs                 994M   88K  994M   1% /dev/shm
/dev/sda1              49G  198M   46G   1% /boot
/dev/sda5              82G  184M   77G   1% /home
/dev/sdb              5.4T  2.8T  2.4T  55% /home/MainData
//192.168.1.100/acc/   361G   22G  339G   7% /mnt/windows

[root@deven ~]#

This is the mount partition in linux System

Comments