备份文件
`cp /usr/syno/etc.defaults/scemd.xml /usr/syno/etc.defaults/scemd.xml-20240621`
打开文件修改
`vi /usr/syno/etc.defaults/scemd.xml`
将61替换为85
`:%s/61/85/g`
(图片仅供参考)
保存并退出
`:wq`
重启设备
注意:
原代码是将 /usr/syno/etc.defaults/scemd.xml的这个文件复制为 /usr/syno/etc.defaults/scemd.xml-20240621。
还原的话只需要将文件scemd.xml-20240621重名为scemd.xml就可以。
一般我喜欢直接用
`mv /usr/syno/etc.defaults/scemd.xml-20240621 /usr/syno/etc.defaults/scemd.xml`。
这段代码效果为将文件 /usr/syno/etc.defaults/scemd.xml-20240621 剪切到/usr/syno/etc.defaults/并命名为scemd.xml。
复制代码时忽略掉`这个标点符号。
另外备份文件的尾缀-20240621是我习惯给复制文件时,给复制文件名称添加复制时间。
你可以根据你的情况来。