1、下载“https://github.com/Filebrowser/Filebrowser/releases/tag/v2.15.0/linux-armv7-filebrowser.tar.gz”
2、上传“/home/pi”
3、解压缩“linux-armv7-filebrowser.tar.gz”
cd /home/pi/
tar -zxvf linux-armv7-filebrowser.tar.gz
4、将“filebrowser ”移动到“ /usr/local/bin/ ”
mv /home/pi/filebrowser /usr/local/bin/
5、创建配置文件“/etc/filebrowser/filebrowser.json”
mkdir /etc/filebrowser/
nano /etc/filebrowser/filebrowser.json
{
"address":"0.0.0.0",
"database":"/etc/filebrowser/filebrowser.db",
"log":"/var/log/filebrowser.log",
"port":8080,
"root":"/home",
"username":"admin"
}
备注参数:
address:监听地址
database:数据库地址
log:日志文件路径
port:需要监听的端口
root:需要读取哪个目录下的文件
username:用户名
6、运行
filebrowser -c /etc/filebrowser/filebrowser.json
或者
nohup filebrowser -c /etc/filebrowser/filebrowser.json &
8、开机自启(编辑“rc.local”脚本,在 exit 0 之前添加执行代码)
nano /etc/rc.local
filebrowser -c /etc/filebrowser/filebrowser.json &
7、访问
览器访问(默认账号和密码都是admin)
Username: admin
Password: admin