– Tạo ra folder share trên máy linux
[root@server ~]# mkdir /mnt/Software
[root@server ~]# cd /mnt/Software/
[root@server Software]# ls
=> Không có file và folder
– Mount folder share sang ổ mới tạo
[root@server ~]# mount -t cifs //192.168.126.206/shared /mnt/Software -o rw,username=student,password=123456
# với cifs là: common internet file sharding
– Kiểm tra:
[root@server ~]# cd /mnt/Software/
[root@server Software]# ls
=> có file và folder được Share File
[root@server Software]# mount //192.168.126.206/shared on /mnt/Software type cifs (rw,relatime,vers=default,cache=strict,username=student,domain=DESKTOP-3NRGDUN,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.126.206,file_mode=0755,dir_mode=0755,soft,nounix,serverino,mapposix,rsize=1048576,wsize=1048576,echo_interval=60,actimeo=1)
– Thử unmount:
[root@server Software]# cd
[root@server ~]# umount /mnt/Software
– Ghi lại vào file /etc/fstab để cố định ổ mount từ share folder này để mỗi lần khởi động đều mount
[root@server ~]# vi /etc/fstab
# Thêm vào 1 dòng
//192.168.126.206/shared /mnt/Software cifs username=student,password=123456,_netdev 0 0
_netdev: khi máy tính không có kết nối mâng thỉ sẽ không thể kết nối shared file
– Kiểm tra lại:
[root@server ~]# mount -a
# để đọc lại file /etc/fstab
[root@server ~]# mount