2026-03-12 21:01:38

This commit is contained in:
2026-03-12 22:01:38 +01:00
parent 3bd1db26cc
commit 26296b6d6a
336 changed files with 27507 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
yum install -y cifs-utils.x86_64
mkdir -p /mnt/yavin4
echo "//192.168.0.9/share /mnt/yavin4 cifs vers=2.0,uid=smbuser,gid=smbuser,file_mode=0775,dir_mode=0775,credentials=/root/.smbcred 0 0" >> /etc/fstab
groupadd smbuser
useradd smbuser -G smbuser -g smbuser
echo "username=vpl" > /root/.smbcred
echo "password=*****" >> /root/.smbcred
mount -a
df -h