Samba Server 搭建
Zane Lv4

前言

移植 Linux 的主要目的其实就是想借助这个机器的性能以及多样的接口搭建一个 Nas,起初的想法是使用最新的 Samba 源码进行交叉编译,把库和应用通过rsync往板卡的根目录一丢就完事了。但是最新版的交叉编译属实难搞就使用了 buildroot 重新编译了一个根文件系统。

编译 Samba

根据提示打开 buildrootsamba4 的选项,编译过程中需要相关库如编译heimdal过程中遇到了大文件的问题,参考了该 issue「https://bugs.busybox.net/show_bug.cgi?id=15991 」 中提到的 uncommited patch「https://patchwork.ozlabs.org/project/buildroot/patch/20240210103634.3502847-1-bernd@kuhls.net 」解决。

搭建 Samba 环境

此处主要是服务端的配置与客户端的挂载,其余倒没什么。

Samba Server

我才用两个固态硬盘作为此次 Samba 服务端的硬件配置,较快的 nvme 固态主要用于一些及时的数据存储,sata 则更倾向于长久的存储。(但实测下来速度瓶颈其实是被本地的网速卡死在了 100MB )

配置文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[global]
workgroup = WORKGROUP
server string = Samba Server
netbios name = samba
security = user
map to guest = Bad User
dns proxy = no

[shared]
path = /srv/samba/shared
valid users = @smbgroup
browsable = yes
writable = yes
guest ok = yes
read only = no

[store]
path = /srv/samba/store
valid users = @smbgroup
browsable = yes
writable = yes
guest ok = yes
read only = no

[public]
path = /srv/samba/public
valid users = @smbgroup
browsable = yes
writable = yes
guest ok = yes
read only = no

global 部分主要针对于 windows 系统。

权限

为了方便管理对于 samba 服务单独创建了一个用户与群组,相关命令:

1
2
3
4
5
6
7
8
9
10
11
12
sudo adduser smber # 添加新的用户
sudo addgroup smbgroup # 添加新的群组

touch "smbgroup:x:1000:smber,root" > /etc/group # 由于没有 usermod 的命令,所以直接更改的 group 文件,将 root 与 smber 均添加该群组

# 修改 /etc/fstab 挂在相关硬盘
/dev/sda1 /srv/samba/store ext4 rw 0 3
/dev/nvme0n1p1 /srv/samba/shared ext4 rw 0 4

# 修改相关目录权限
sudo chown -R :smbgroup /srv/samba/
sudo chmod -R 770 /srv/samba/

Samba Client

因为使用 Linux 比较多,所以主要针对 Linux, Windows 正常映射网络磁盘即可。

安装 cifs

ArchLinux 运行 yay -S cifs-utils / pacman -S cifs-utils

为了方便的进行多 samba 目录的挂载/卸载,使用脚本读取不同目录名称。

samba_mounts.conf
1
2
3
public
shared
store
mount_samba.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash

# Configuration
SERVER_IP="192.168.0.198"
MOUNT_BASE="/mnt/samba"
CONFIG_FILE="samba_mounts.conf"
CREDENTIALS_FILE="/etc/samba/credentials"
OPTIONS="soft,iocharset=utf8,uid=1000,gid=1000"

# Check if the configuration file exists
if [ ! -f "$CONFIG_FILE" ]; then
echo "Configuration file $CONFIG_FILE not found!"
exit 1
fi

# Read each line from the configuration file
while IFS= read -r DIR; do
# Skip empty lines
[ -z "$DIR" ] && continue

# Create the local mount point directory if it doesn't exist
LOCAL_MOUNT_POINT="$MOUNT_BASE/$DIR"
mkdir -p "$LOCAL_MOUNT_POINT"

# Mount the directory
sudo mount -t cifs "//$SERVER_IP/$DIR" "$LOCAL_MOUNT_POINT" -o "credentials=$CREDENTIALS_FILE,$OPTIONS"

# Check if the mount was successful
if [ $? -eq 0 ]; then
echo "Mounted //$SERVER_IP/$DIR to $LOCAL_MOUNT_POINT"
else
echo "Failed to mount //$SERVER_IP/$DIR"
fi
done < "$CONFIG_FILE"
unmount_samba.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash

# Configuration
MOUNT_BASE="/mnt/samba"
CONFIG_FILE="samba_mounts.conf"

# Check if the configuration file exists
if [ ! -f "$CONFIG_FILE" ]; then
echo "Configuration file $CONFIG_FILE not found!"
exit 1
fi

# Read each line from the configuration file
while IFS= read -r DIR; do
# Skip empty lines
[ -z "$DIR" ] && continue

# Define the local mount point directory
LOCAL_MOUNT_POINT="$MOUNT_BASE/$DIR"

# Unmount the directory
sudo umount -l "$LOCAL_MOUNT_POINT"

# Check if the unmount was successful
if [ $? -eq 0 ]; then
echo "Unmounted $LOCAL_MOUNT_POINT"
else
echo "Failed to unmount $LOCAL_MOUNT_POINT"
fi
done < "$CONFIG_FILE"

主要是使用 sudo mount -t cifs //192.168.0.198/public /mnt/samba -o credentials=/etc/samba/credentials,soft,iocharset=utf8,uid=1000,gid=1000 该命令进行挂载 samba 目录操作。credentials 中定义了 username 与 password 字段,方便进行挂载的登陆验证。uid gid 说明挂载目录的所有者与群组。

结语

最费劲的还是 samba 的交叉编译,移植找不到 aarch64 的交叉编译说明, 参考其余版本的都没什么好的帮助,原因是 4.0 以后的版本使用了 wrf 的 python 脚本进行编译,导致一些经验不能复用,不过好在最后还是搭建完成了,实测速度读写均在 100MB/s,比当初树莓派安装 openmediavault 快了不少。

由 Hexo 驱动 & 主题 Keep