hyonix挂载hosthatch大盘鸡测速

78次阅读

共计 649 个字符,预计需要花费 2 分钟才能阅读完成。

参考大佬的挂载教程
https://www.hostloc.com/thread-624034-1-1.html
https://www.hostloc.com/thread-624030-1-1.html
apt install nfs-kernel-server &&
mkdir /nfs &&
cat << EOF >> /etc/exports
/nfs 4.3.2.1(rw,no_root_squash,no_subtree_check,sync,fsid=1)
EOF
exportfs -ra &&
systemctl restart nfs-server.service 复制代码
linux 挂载:
apt install nfs-common &&
mkdir /nfs
mount -t nfs 1.2.3.4:/nfs /nfs 复制代码
windows 挂载: https://help.aliyun.com/document_detail/67165.html

速度呢?昨天机器是石头盘,写 100,读 1mb/s,对,你没看错就是 1mb/s
在另一台 linux 机上挂 nfs 写入速度:
200+0 records in
200+0 records out
209715200 bytes (210 MB, 200 MiB) copied, 2.66127 s, 78.8 MB/s
今天读写速度正常了,大概 70-80m/s 通过 nfs 读取或者写入,应该是口子达不到 G 口
hyonix 挂载进行读取,只有 1mb/ s 秒,暂不知道原因

正文完
 0