老谢博客

  • 首页
  • WordPress
  • 网络技术
  • 乱七八糟
  • 运维技术
  • 给我留言
  • 关于老谢

树莓派配置Samba及Aria2

分类:折腾日期:2017-01-17 - 16:04:29作者:老谢

  之前写过 极路由4使用Aria2Gee打造下载中心 之后发现路由器不稳定,Aria2经常掉线,于是想起来可以用树莓派折腾起来,毕竟树莓派比较闲,只跑个LNMP,而且配置比路由器高,肯定要比路由器稳定,于是乎折腾起来!

安装ntfs-3g并挂载硬盘

  ntfs-3g可以让linux读写NTFS格式的分区数据,命令如下:

sudo apt-get install fuse-utils ntfs-3g
modprobe fuse
sudo mkdir /mnt/usb_flash
sudo mount /dev/sda1 /mnt/usb_flash/

sudo apt-get install fuse-utils ntfs-3g modprobe fuse sudo mkdir /mnt/usb_flash sudo mount /dev/sda1 /mnt/usb_flash/

  这里挂载的分区,一般是/dev/sda1,但是请根据实际情况挂载。

安装配置samba
sudo apt-get install samba samba-common-bin
vim /etc/samba/smb.conf

sudo apt-get install samba samba-common-bin vim /etc/samba/smb.conf

  默认会有一个share共享目录,路径path直接改为挂载的路径即可,如下:

[share]
path = /mnt/usb_flash
available = yes
browsealbe = yes
public = yes
writable = yes

[share] path = /mnt/usb_flash available = yes browsealbe = yes public = yes writable = yes

  之后启用samba服务,然后访问下共享目录是否可以正常访问!

/etc/init.d/samba start

/etc/init.d/samba start

安装配置aria2
sudo apt-get install aria2 
mkdir /home/aria2
touch /home/aria2/aria2.session
vim /home/aria2/aria2.conf

sudo apt-get install aria2 mkdir /home/aria2 touch /home/aria2/aria2.session vim /home/aria2/aria2.conf

#rpc-user=user
#rpc-passwd=passwd
#rpc-secret=token #这里设置你的token
enable-rpc=true
rpc-allow-origin-all=true
rpc-listen-all=true
#rpc-listen-port=6800
max-concurrent-downloads=5
continue=true
max-connection-per-server=5
min-split-size=10M
split=10
max-overall-download-limit=0
max-download-limit=0
max-overall-upload-limit=0
max-upload-limit=0
#lowest-speed-limit=0
#referer=*
dir=/mnt/usb_flash/aria2 #下载文件保存目录
#disk-cache=0
#enable-mmap=true
file-allocation=prealloc
input-file=/home/aria2/aria2.session
save-session=/home/aria2/aria2.session

#rpc-user=user #rpc-passwd=passwd #rpc-secret=token #这里设置你的token enable-rpc=true rpc-allow-origin-all=true rpc-listen-all=true #rpc-listen-port=6800 max-concurrent-downloads=5 continue=true max-connection-per-server=5 min-split-size=10M split=10 max-overall-download-limit=0 max-download-limit=0 max-overall-upload-limit=0 max-upload-limit=0 #lowest-speed-limit=0 #referer=* dir=/mnt/usb_flash/aria2 #下载文件保存目录 #disk-cache=0 #enable-mmap=true file-allocation=prealloc input-file=/home/aria2/aria2.session save-session=/home/aria2/aria2.session

vim /etc/init.d/aria2d

vim /etc/init.d/aria2d

#!/bin/sh
### BEGIN INIT INFO
# Provides:          aria2
# Required-Start:    $remote_fs $network
# Required-Stop:     $remote_fs $network
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Aria2 Downloader
### END INIT INFO
 
case "$1" in
start)
 
echo -n "Starting aria2c\n"
sudo -u pi aria2c --conf-path=/home/aria2/aria2.conf -D
;;
stop)
 
echo -n "Shutting down aria2c\n"
killall aria2c
;;
restart)
 
killall aria2c
sudo -u pi aria2c --conf-path=/home/aria2/aria2.conf -D
;;
esac
exit

#!/bin/sh ### BEGIN INIT INFO # Provides: aria2 # Required-Start: $remote_fs $network # Required-Stop: $remote_fs $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Aria2 Downloader ### END INIT INFO case "$1" in start) echo -n "Starting aria2c\n" sudo -u pi aria2c --conf-path=/home/aria2/aria2.conf -D ;; stop) echo -n "Shutting down aria2c\n" killall aria2c ;; restart) killall aria2c sudo -u pi aria2c --conf-path=/home/aria2/aria2.conf -D ;; esac exit

参考教程
  • 用树莓派搭建家庭NAS下载机
  • 树莓派挂载U盘
  • 使用Aria2下载百度网盘和115的资源

原文地址 : https://www.xj123.info/6741.html

本站遵循 : 署名-非商业性使用-相同方式共享 2.5 中国大陆 (CC BY-NC-SA 2.5)

版权声明 : 原创文章转载时,请务必以超链接形式标明文章原始出处

  • 上一篇:极路由4使用Aria2Gee打造下载中心
  • 下一篇:强悍的ASUS飞行堡垒FX53VD
3条评论
  1. 大D 说:

    坐沙发,老谢好厉害~搞得我都想去买个树莓派了。

    POST:2017-01-17 22:23 回复
    • 老谢 说:

      搞起来,不吃亏,但是树莓派接硬盘电源要好点,不然带不动

      POST:2017-01-17 22:56 回复
  2. kn007 说:

    Mark,学习了,树莓派感觉对我现在来说用处不大,买来可能只是吃灰

    POST:2017-01-24 03:18 回复
发表评论 点击取消评论.

*必填

*必填

  • 文章归档
  • 子网计算
  • 我的共享
  • 锻炼计划
  • 给我留言
  • 关于老谢
2025 年 6 月
一 二 三 四 五 六 日
 1
2345678
9101112131415
16171819202122
23242526272829
30  
« 5 月    

最新文章

  • 认知,是否是一座大山?当架构决策变成配置清单比价
  • 重装博客服务器环境
  • 特斯拉24款标续 Model Y 2万公里使用体验
  • 接盘的傻子
  • 小牛us电瓶指示灯闪三次不上电
  • 一次还不错的小米售后体验
  • 装台1600元办公主机
  • 2021好久没更新博客
  • Zabbix监控oxidized备份状态
  • Zabbix 5.0 LTS版本MySQL表分区及编译安装随记

最新评论

  • zwwooooo:类似以前做网站开发时,一开始有自...
  • 老陳网志:有点高端,像我们整点nas玩玩就够...
  • springwood:自从 CentOS 不维护之后,我换 U...
  • 大D:难都搞下来了,那就更得YM了
  • 大D:只能是YM了,谢总牛啊
  • 灰常记忆:经济不好 今年我也换了机器 一...
  • 大峰:这是海外服务器嘛?速度挺快的。
  • 大D:只能单走一个6了哈哈哈
  • zwwooooo:买特斯拉和买iPhone的人群其实相似...
  • 平安家属子痕:一直坚持油车,看你写的心里有...

日志存档

  • 2025 年 5 月
  • 2025 年 4 月
  • 2025 年 3 月
  • 2024 年 9 月
  • 2024 年 5 月
  • 2024 年 1 月
  • 2023 年 4 月
  • 2021 年 10 月
  • 2021 年 4 月
  • 2021 年 3 月
  • 2021 年 2 月
  • 2020 年 11 月
  • 2020 年 9 月
  • 2020 年 5 月
  • 2020 年 4 月
  • 2020 年 3 月
  • 2020 年 1 月
  • 2019 年 12 月
  • 2019 年 10 月
  • 2019 年 7 月
  • 2019 年 6 月
  • 2019 年 5 月
  • 2019 年 3 月
  • 2019 年 1 月
  • 2018 年 12 月
  • 2018 年 11 月
  • 2018 年 10 月
  • 2018 年 7 月
  • 2018 年 6 月
  • 2018 年 5 月
  • 2018 年 4 月
  • 2018 年 3 月
  • 2018 年 1 月
  • 2017 年 10 月
  • 2017 年 9 月
  • 2017 年 8 月
  • 2017 年 7 月
  • 2017 年 2 月
  • 2017 年 1 月
  • 2016 年 12 月
  • 2016 年 11 月
  • 2016 年 10 月
  • 2016 年 7 月
  • 2016 年 6 月
  • 2016 年 4 月
  • 2016 年 2 月
  • 2016 年 1 月
  • 2015 年 12 月
  • 2015 年 10 月
  • 2015 年 9 月
  • 2015 年 7 月
  • 2015 年 5 月
  • 2015 年 4 月
  • 2015 年 3 月
  • 2015 年 2 月
  • 2015 年 1 月
  • 2014 年 12 月
  • 2014 年 10 月
  • 2014 年 9 月
  • 2014 年 8 月
  • 2014 年 7 月
  • 2014 年 6 月
  • 2014 年 5 月
  • 2014 年 4 月
  • 2014 年 3 月
  • 2014 年 2 月
  • 2014 年 1 月
  • 2013 年 12 月
  • 2013 年 11 月
  • 2013 年 10 月
  • 2013 年 9 月
  • 2013 年 8 月
  • 2013 年 7 月
  • 2013 年 6 月
  • 2013 年 5 月
  • 2013 年 4 月
  • 2013 年 3 月
  • 2013 年 2 月
  • 2013 年 1 月
  • 2012 年 12 月
  • 2012 年 11 月
  • 2012 年 9 月
  • 2012 年 8 月
  • 2012 年 7 月
  • 2012 年 6 月
  • 2012 年 5 月
  • 2012 年 4 月
  • 2012 年 3 月
  • 2012 年 2 月
  • 2012 年 1 月
  • 2011 年 12 月
  • 2011 年 11 月
  • 2011 年 10 月
  • 2011 年 9 月
  • 2011 年 8 月
  • 2011 年 7 月
  • 2011 年 6 月
  • 2011 年 5 月
  • 2011 年 4 月
  • 2011 年 3 月
  • 2011 年 2 月
  • 2011 年 1 月
  • 2010 年 12 月
  • 2010 年 11 月
  • 2010 年 10 月
  • 2010 年 9 月
  • 2010 年 8 月
  • 2010 年 7 月

W3C

  • XHTML 1.0 Transitional
  • CSS level 3
  • Google+
Copyright © 2010-2025 老谢博客 All rights reserved.
Gzipped 76.5% | Optimized loading 49 queries in 0.901 seconds | Memory 38.84 MB | 尼玛的备案
Powered by WordPress. | Hosted By LAOXUEHOST | Theme by WordPress主题巴士 | 站点地图 | SiteMap | uptime查询