国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例

這篇具有很好參考價值的文章主要介紹了Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點(diǎn)擊"舉報違法"按鈕提交疑問。

0 問題的提出

0.1 關(guān)于115網(wǎng)盤

本文無意探究115網(wǎng)盤的好壞,也并非是要推崇特定產(chǎn)品,只是提供一套解決方案,其他網(wǎng)盤也可以使用。經(jīng)歷多輪環(huán)境的風(fēng)云變換,115還是活了下來,說明115還是經(jīng)受住了市場的考驗。問題的關(guān)鍵在于115網(wǎng)盤的門檻另很多人望而卻步,小眾帶來的問題便是相關(guān)的配套的生態(tài)不夠完善,很多不錯的插件也已不再更新,相關(guān)的教程少的可憐。

0.2本文的內(nèi)容安排

監(jiān)于網(wǎng)絡(luò)中的各種文章的質(zhì)量良莠不齊,本文將網(wǎng)絡(luò)中的內(nèi)容進(jìn)行了整合,主要內(nèi)容主要包以下幾個方面:

  • AList 的安裝與115網(wǎng)盤的掛載
  • Aria2 與 AList 的整合
  • Rclone的安裝與 AList 掛載

1 安裝AList 的并掛載115網(wǎng)盤

1.1 安裝AList

本文建議手動安裝所有的軟件,原因主要有兩點(diǎn):一是不同軟件間的相互協(xié)作需要在相同的環(huán)境下,如alistaria2,使用docker會增加配置的難度;二是就個人經(jīng)驗而言docker十分占用系統(tǒng)資源,增加電腦負(fù)擔(dān)。

安裝alist參考官網(wǎng)的安裝教程:

  • 打開AList的發(fā)布頁面AList Release,選擇自己喜歡的AList版本并復(fù)制下載鏈接
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos
  • 下載并安裝AList
# 進(jìn)入你喜歡的目錄并下載:
cd /your/path/
wget https://github.com/alist-org/alist/releases/download/v3.28.0/alist-darwin-arm64.tar.gz

# 解壓縮:
tar -zxvf alist-xxxx.tar.gz
# 賦其可執(zhí)行權(quán)限:
chmod +x alist
# 啟動服務(wù)
./alist server

# 不同版本設(shè)定管理員隨機(jī)密碼:
# 小于 v3.25.0 版
./alist admin

# 高于 v3.25.0 版
# 設(shè)定隨機(jī)密碼
./alist admin random
# 手動設(shè)定密碼 `NEW_PASSWORD` 改成自己歡的密碼
./alist admin set NEW_PASSWORD

  • 配置開機(jī)啟動項
# 編輯配置文件
vi ~/Library/LaunchAgents/ci.nn.alist.plist
  • 文件內(nèi)容
  • path_alist改成自己所在的路徑
  • path/to/working/dir改為AList的工作目錄,這兩個內(nèi)容可以相同
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
     <dict>
         <key>Label</key>
         <string>ci.nn.alist</string>
         <key>KeepAlive</key>
         <true/>
         <key>ProcessType</key>
         <string>Background</string>
         <key>RunAtLoad</key>
         <true/>
         <key>WorkingDirectory</key>
         <string>path/to/working/dir</string>
         <key>ProgramArguments</key>
         <array>
             <string>path_alist/alist</string>
             <string>server</string>
         </array>
     </dict>
</plist>

  • 加載配置項:launchctl load ~/Library/LaunchAgents/ci.nn.alist.plist
  • 啟動AListlaunchctl start ~/Library/LaunchAgents/ci.nn.alist.plist
  • 停止AListlaunchctl stop ~/Library/LaunchAgents/ci.nn.alist.plist
  • 卸載配置項:launchctl unload ~/Library/LaunchAgents/ci.nn.alist.plist

1.2 掛載115網(wǎng)盤

  • 在流瀏器地址欄輸入http://ip:5244進(jìn)入AList首頁,本機(jī)可以直接輸入127.0.0.1:5244
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

  • 進(jìn)入管理界面
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

  • 添加網(wǎng)盤
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

  • 115網(wǎng)盤掛載需要填寫的相關(guān)信息
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

  • 115網(wǎng)盤Cookie獲取
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

  • 115網(wǎng)盤Qrcode token在此獲取QRCode 掃碼方式登錄
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

  • 115網(wǎng)盤Root folder id獲取
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

2 Aria2 與 AList 的整合

2.1 Aria2 安裝與 RPC 設(shè)置

  • aria2本文建議直接使用Motix
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos
  • 獲取rpc設(shè)置
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

2.2 配置 Aria2

  • Motrix中關(guān)于rpc的信息填入AList后端
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos
  • AList前端配置
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

3 Rclone 與 AList 整合

3.1 Rclone 安裝

  • 環(huán)境依賴

Mac下文件系統(tǒng)支持不全,需要Macfuse提供第三方文件系的支持

brew install --cask macfuse

Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

  • 安裝rclone,參考官方教程
sudo -v ; curl https://rclone.org/install.sh | sudo bash
  • brew安裝的rclone不具備掛載功能
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

3.2 掛載 AList

  • 在終端中輸入rclone config生成`rclone配置文件
  • n新建一個遠(yuǎn)程鏈接
Current remotes:

e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q> n 
  • 取一個自己喜歡的名字
Enter name for new remote.
name> alist
  • 視情況而定選擇Web Dav
Option Storage.
Type of storage to configure.
Choose a number from below, or type in your own value.
 1 / 1Fichier
   \ (fichier)
 2 / Akamai NetStorage
   \ (netstorage)
 3 / Alias for an existing remote
   \ (alias)
 4 / Amazon Drive
   \ (amazon cloud drive)
 5 / Amazon S3 Compliant Storage Providers including AWS, Alibaba, ArvanCloud, Ceph, China Mobile, Cloudflare, GCS, DigitalOcean, Dreamhost, Huawei OBS, IBM COS, IDrive e2, IONOS Cloud, Leviia, Liara, Lyve Cloud, Minio, Netease, Petabox, RackCorp, Scaleway, SeaweedFS, StackPath, Storj, Synology, Tencent COS, Qiniu and Wasabi
   \ (s3)
 6 / Backblaze B2
   \ (b2)
 7 / Better checksums for other remotes
   \ (hasher)
 8 / Box
   \ (box)
 9 / Cache a remote
   \ (cache)
10 / Citrix Sharefile
   \ (sharefile)
11 / Combine several remotes into one
   \ (combine)
12 / Compress a remote
   \ (compress)
13 / Dropbox
   \ (dropbox)
14 / Encrypt/Decrypt a remote
   \ (crypt)
15 / Enterprise File Fabric
   \ (filefabric)
16 / FTP
   \ (ftp)
17 / Google Cloud Storage (this is not Google Drive)
   \ (google cloud storage)
18 / Google Drive
   \ (drive)
19 / Google Photos
   \ (google photos)
20 / HTTP
   \ (http)
21 / Hadoop distributed file system
   \ (hdfs)
22 / HiDrive
   \ (hidrive)
23 / In memory object storage system.
   \ (memory)
24 / Internet Archive
   \ (internetarchive)
25 / Jottacloud
   \ (jottacloud)
26 / Koofr, Digi Storage and other Koofr-compatible storage providers
   \ (koofr)
27 / Local Disk
   \ (local)
28 / Mail.ru Cloud
   \ (mailru)
29 / Mega
   \ (mega)
30 / Microsoft Azure Blob Storage
   \ (azureblob)
31 / Microsoft OneDrive
   \ (onedrive)
32 / OpenDrive
   \ (opendrive)
33 / OpenStack Swift (Rackspace Cloud Files, Blomp Cloud Storage, Memset Memstore, OVH)
   \ (swift)
34 / Oracle Cloud Infrastructure Object Storage
   \ (oracleobjectstorage)
35 / Pcloud
   \ (pcloud)
36 / PikPak
   \ (pikpak)
37 / Proton Drive
   \ (protondrive)
38 / Put.io
   \ (putio)
39 / QingCloud Object Storage
   \ (qingstor)
40 / Quatrix by Maytech
   \ (quatrix)
41 / SMB / CIFS
   \ (smb)
42 / SSH/SFTP
   \ (sftp)
43 / Sia Decentralized Cloud
   \ (sia)
44 / Storj Decentralized Cloud Storage
   \ (storj)
45 / Sugarsync
   \ (sugarsync)
46 / Transparently chunk/split large files
   \ (chunker)
47 / Union merges the contents of several upstream fs
   \ (union)
48 / Uptobox
   \ (uptobox)
49 / WebDAV
   \ (webdav)
50 / Yandex Disk
   \ (yandex)
51 / Zoho
   \ (zoho)
52 / premiumize.me
   \ (premiumizeme)
53 / seafile
   \ (seafile)
Storage> 49
  • 輸入http://ip:5244/dav,本機(jī)可輸入http://127.0.0.1:5244/dav
Option url.
URL of http host to connect to.
E.g. https://example.com.
Enter a value.
url> http://127.0.0.1:5244/dav
  • 視情況而定選擇Other site/service or software
Option vendor.
Name of the WebDAV site/service/software you are using.
Choose a number from below, or type in your own value.
Press Enter to leave empty.
 1 / Fastmail Files
   \ (fastmail)
 2 / Nextcloud
   \ (nextcloud)
 3 / Owncloud
   \ (owncloud)
 4 / Sharepoint Online, authenticated by Microsoft account
   \ (sharepoint)
 5 / Sharepoint with NTLM authentication, usually self-hosted or on-premises
   \ (sharepoint-ntlm)
 6 / Other site/service or software
   \ (other)
vendor> 6
  • 輸入AList帳戶名
Option user.
User name.
In case NTLM authentication is used, the username should be in the format 'Domain\User'.
Enter a value. Press Enter to leave empty.
user> admin
  • 選擇y,輸入兩次密碼
Option pass.
Password.
Choose an alternative below. Press Enter for the default (n).
y) Yes, type in my own password
g) Generate random password
n) No, leave this optional password blank (default)
y/g/n> y
Enter the password:
password:
Confirm the password:
password:
  • 回車
Option bearer_token.
Bearer token instead of user/pass (e.g. a Macaroon).
Enter a value. Press Enter to leave empty.
bearer_token>
  • 回車
Edit advanced config?
y) Yes
n) No (default)
y/n>
  • 回車
Configuration complete.
Options:
- type: webdav
- url: http://127.0.0.1:5244/dav
- vendor: other
- user: admin
- pass: *** ENCRYPTED ***
Keep this "alist" remote?
y) Yes this is OK (default)
e) Edit this remote
d) Delete this remote
y/e/d>
  • q退出
Current remotes:

Name                 Type
====                 ====
alist                webdav
e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q> q
  • 查看連接是否成功
# 查看 alist 掛載的硬盤 <name> 前面設(shè)定的名字
rclone lsd <name>:

# 查看 alist 中的文件
rclone ls <name>:
  • 掛載到本地
# 建一個掛載點(diǎn)
mkdir /your/path
# 掛載
rclone mount <DriveName>:<Folder>  <LocalFolder> --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 --use-mmap

DriverName是你在配置rclone的時候設(shè)置的名字,Folder沒有需要求的話填/即可,LocalFolder是你本地掛載的地址,/tmp比較特殊,上傳時緩存目錄,其他類型掛載一般時不需要這個參數(shù)的,默認(rèn)/tmp地址即可,除非你的系統(tǒng)特殊。
例如:rclone mount alist:/ /webdav --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 --use-mmap --daemon

  • 解除本地掛載
# 解除本地掛載,后面跟的是掛載的本地目錄
# 當(dāng)自動取消掛載失敗時,也可以這樣手動取消掛載
fusermount -qzu /webdav

3.3 設(shè)置開機(jī)啟動

  • 創(chuàng)建 plist文件
vi ~/Library/LaunchAgents/com.example.mount_rclone.plist
  • 填寫以下內(nèi)容

rclone配置文件的位置為~/.config/rclone/rclone.conf

<USER>Mac本機(jī)用戶文章來源地址http://www.zghlxwxcb.cn/news/detail-758125.html

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
	<dict>
		<key>KeepAlive</key>
			<true/>
		<key>Label</key>
			<string>com.example.mount_rclone</string>
		<key>ProgramArguments</key>
			<array>
				<string>/usr/local/bin/rclone</string>
				<string>mount</string>
				<string>--allow-other</string>
				<string>--allow-non-empty</string>
				<string>--config=/Users/<USER>/.config/rclone/rclone.conf</string>
				<string>--copy-links</string>
				<string>--no-gzip-encoding</string>
				<string>--no-check-certificate</string>
				<string>--umask=000</string>
				<string>--use-mmap</string>
				<string><DriveName>:<Folder></string>
				<string><LocalFolder></string>	
			</array>
		<key>RunAtLoad</key>
			<true/>
		<key>StandardErrorPath</key>
			<string>/Users/<USER>/Documents/logs/rclone-mount.log</string>
		<key>StandardOutPath</key>
			<string>/Users/<USER>/Documents/logs/stdout</string>
	</dict>
</plist>
  • 加載配置項:launchctl load ~/Library/LaunchAgents/com.example.mount_rclone.plist
  • 啟動Rclonelaunchctl start ~/Library/LaunchAgents/com.example.mount_rclone.plist
  • 停止Rclonelaunchctl stop ~/Library/LaunchAgents/com.example.mount_rclone.plist
  • 卸載配置項:launchctl unload ~/Library/LaunchAgents/com.example.mount_rclone.plist
  • 查掛載結(jié)果
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos
  • 下載效果展示
    Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例,macos

4 其他

4.1 可行的 Rclone 配置命令

  • 最簡單的配置
rclone mount alist: /home/alist --allow-other
  • 基礎(chǔ)配置
rclone mount DriveName:Folder LocalFolder --cache-dir /tmp --allow-other --vfs-cache-mode writes --allow-non-empty

# 官方命令
rclone mount alist:/ /webdav  --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 --use-mmap
  • 后臺運(yùn)行
rclone mount tianyi:/video /tianyiwebdav –allow-other –vfs-cache-mode writes&

rclone mount tianyi:/video /tianyiwebdav –allow-non-empty –vfs-cache-mode full –vfs-cache-max-size 8G&

# 官方命令
# --daemon 強(qiáng)制后臺模式
rclone mount alist:/ /webdav  --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 --use-mmap --daemon
  • 如果包含阿里云盤,可能需要設(shè)置--header "Referer:"參數(shù)
rclone mount 遠(yuǎn)程名稱:/ 本地掛載路徑 --cache-dir /tmp --allow-other --vfs-cache-mode writes --header "Referer:https://www.aliyundrive.com/drive"

rclone mount ali:/ W: --vfs-cache-mode writes --cache-dir E:\aliyun --network-mode --no-check-certificate --default-permissions --header "Referer:https://www.aliyundrive.com/" --vfs-read-chunk-size-limit 1G --vfs-read-chunk-size 64M --dir-cache-time 12h --buffer-size 32M
  • 可能會提升流暢度的配置
# --network-mode至關(guān)重要,這個參數(shù)是影響都文件管理器打開掛載目錄的響應(yīng)速度。這個參數(shù)的原意是以網(wǎng)絡(luò)位置掛載即如下圖。如果沒有這個參數(shù),rclone就會掛載到設(shè)備和驅(qū)動器
# --header "Referer:"含阿里云盤時需要,否則掛載后打不開文件
# --buffer-size 512M緩存占用的最大內(nèi)存大小為512M,512可改為其他數(shù)字,不宜設(shè)置得過大,過大會導(dǎo)致文件過多的占用網(wǎng)絡(luò)和電腦內(nèi)存
# --vfs-fast-fingerprint使用快速的文件校驗檢測,加開文件打開速度
.\rclone mount alist: M: --network-mode --header "Referer:" --multi-thread-streams 8 --buffer-size 512M --vfs-fast-fingerprint

4.2 Rclone 啟動腳本

  • 如果不想開機(jī)啟動,又不想每次啟動輸入各種參數(shù),可以采用腳本啟動的方式
cd /your/scripts/path
vi mount_rclone.sh
  • /path/to/your/mount/point替換為掛載遠(yuǎn)程存儲的本地路徑,將your_remote_name替換為rclone配置文件中設(shè)置的遠(yuǎn)程存儲名稱
#!/bin/bash
RCLONE_CONFIG_PATH=~/.config/rclone/rclone.conf
MOUNT_POINT=/path/to/your/mount/point
REMOTE_NAME=your_remote_name

rclone mount --config $RCLONE_CONFIG_PATH --allow-non-empty --allow-other --vfs-cache-mode writes $REMOTE_NAME: $MOUNT_POINT &
  • 設(shè)置執(zhí)行權(quán)限
chmod +x mount_rclone.sh
  • 關(guān)于115網(wǎng)盤的下載
    115 網(wǎng)盤最令人難以接受的莫過于它的客戶端,要想下載、上傳必須使用其拉跨的客戶端,即使你是尊貴的會員也不例外。如果不相使用其客端也可以使用docker安裝其Linux客戶端,將其當(dāng)成下載工具使用。至于類似本文的掛載方式,也可以使用CloudMounter掛載AList,還可以使用CloudDrive直接掛載115網(wǎng)盤,不過這是一個人開發(fā)的工具,似乎并未開源,Rclone的二次開發(fā)版本也可以直接掛載115網(wǎng)盤。

參考文獻(xiàn)

  1. AList 手動安裝
  2. Alist配合aria2 實現(xiàn)離線下載
  3. MacOS下開啟NTFS讀寫
  4. MacOS下開啟NTFS讀寫 - FUSE for Mac
  5. Mac掛載其他文件系統(tǒng)
  6. rclone和alist掛載網(wǎng)盤到本地
  7. rclone和alist掛載網(wǎng)盤到本地
  8. macOS系統(tǒng)下自動掛載rclone遠(yuǎn)程存儲:實現(xiàn)開機(jī)啟動項
  9. Callumpy/macos-rclone-launchd
  10. Help setting up rclone.plist on macos Sierra
  11. Error on MacOS with launchd and default user directories
  12. 如何在 macOS 使用 AList + RCLONE 把網(wǎng)盤掛載到本地
  13. 在Linux(Centos)上使用EMBY管理Alist掛載的網(wǎng)盤,以夸克網(wǎng)盤為例
  14. 用用AALLiisstt掛掛載載天天翼翼云云盤盤來來搭搭建建私私有有的的影影音音庫
  15. windows使用alist生成各種網(wǎng)盤webdav,掛載到本地硬盤
  16. 將阿里云盤掛載為Webdav并使用rclone掛載到本地
  17. MacOS APP無法自啟動,手動添加自啟動APP
  18. 在群暉(Synology) 中運(yùn)行115網(wǎng)盤Linux版(docker)
  19. 115網(wǎng)盤Linux版本的Docker封裝
  20. 基于威聯(lián)通 QNAP 115 + Clouddrive + Plex/Emby 搭建視頻服務(wù)
  21. 隨時隨地保存115網(wǎng)盤文件到QNAP
  22. Mac 使用 Docker 部署 Alist 并通過 CloudMounter 本地掛載網(wǎng)盤
  23. 使用alist將云盤映射為WebDAV
  24. macOS 如何設(shè)置 AList、RCLONE、xTeVe 開機(jī)啟動后臺運(yùn)行
  25. Rclone - 設(shè)置谷歌網(wǎng)盤
  26. 玩轉(zhuǎn)網(wǎng)盤
  27. 新項目:使用rclone掛載115網(wǎng)盤為webdav或者文件夾
  28. 群暉搭建AList云盤文件列表,支持掛載本地,各大云盤
  29. Alist 多網(wǎng)盤掛載目錄程序搭建

到了這里,關(guān)于Mac環(huán)境下Alist+Aria2+Rclone打造網(wǎng)盤下載終極解決方案——以115網(wǎng)盤為例的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點(diǎn)僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點(diǎn)擊違法舉報進(jìn)行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費(fèi)用

相關(guān)文章

  • Linux下安裝aria2 + webui-aria2,搭建一個下載服務(wù)器

    Debian下通過如下命令可以一鍵安裝 通過git一鍵克隆到本地即可 運(yùn)行使用啟動aria2的rpc服務(wù)(建議使用screen后臺啟動) 為了方便以后使用,可以將以上命令放在腳本中使用 如果你的電腦安裝了nginx,你可以直接將webui-aria2目錄下的所有文件復(fù)制到你的nginx服務(wù)根目錄,然后在瀏覽器

    2024年02月19日
    瀏覽(58)
  • Linux使用Aria2命令下載BT種子/磁力/直鏈文件

    Linux使用Aria2命令下載BT種子/磁力/直鏈文件

    aria2c -S 009.torrent 列出種子內(nèi)容 aria2c xxx.torrnet 單個文件最大下載速度: 整體下載最大速度: 使用aria2的分段和多線程下載功能可以加快文件的下載速度,對于下載大文件時特別有用。-x 分段下載,-s 多線程下載,如: 這將使用2個連接和2個線程來下載該文件。

    2024年02月16日
    瀏覽(26)
  • 電腦Windows安裝Aria2配置詳細(xì)教程全能的下載神器

    電腦Windows安裝Aria2配置詳細(xì)教程全能的下載神器

    如今基本都是 磁力 、 BT 下載的天下,搭建開源軟件是當(dāng)下比較好的選擇,這里就需要Aria2這款下載神器了。aria2 是基于 GNU 協(xié)議開源的下載文件的工具。支持的協(xié)議有 HTTP (S)、FTP、SFTP、bt、 Metalink。,性能也相當(dāng)不錯,速度不比迅雷慢,但是它沒有自帶UI,需要搭配第三方

    2024年02月07日
    瀏覽(20)
  • python使用aria2下載視頻、使用JSON-RPC

    以下是一個使用Python和Aria2下載視頻并判斷是否下載成功的示例代碼: 在上面的代碼中,我們首先設(shè)置了Aria2的路徑和下載目錄,然后指定了要下載的視頻的URL。 我們使用了aria2c的一些參數(shù)來加速下載。 -x 和 -s 參數(shù)指定了同時下載的連接數(shù)和服務(wù)器數(shù)。 -k 參數(shù)指定了每個連

    2024年02月16日
    瀏覽(33)
  • linux下wget下載速度慢的解決方法wget => aria2

    配置mwget比較麻煩,會導(dǎo)致各種問題,那么有沒有更容易的配置方法替換呢,答案是肯定的 aria2是個輕量級的下載工具,支持HTTP/HTTPS、FTP、SFTP、BitTorrent,而且最重要的是支持多線程下載。因此一般來說它的下載速度比wget快得多。它還支持?jǐn)帱c(diǎn)續(xù)傳。使用示例請參見aria2的主

    2024年02月11日
    瀏覽(26)
  • 【Alist】Mac 使用 Docker 部署 Alist 并通過 CloudMounter 本地掛載網(wǎng)盤

    【Alist】Mac 使用 Docker 部署 Alist 并通過 CloudMounter 本地掛載網(wǎng)盤

    修改記錄: “添加存儲” 選擇 “阿里云盤” 官方已經(jīng)不建議使用:“不推薦使用該驅(qū)動,因為它不穩(wěn)定,隨時可能被屏蔽,我們會在以后的版本中移除。推薦使用官方API的驅(qū)動 Aliyundrive Open?!?AList 是一個支持多種存儲,支持網(wǎng)頁瀏覽和 WebDAV 的文件列表程序,由 gin 和

    2024年02月02日
    瀏覽(42)
  • 服務(wù)器 Docker Alist掛載到本地磁盤(Mac版)夸克網(wǎng)盤

    服務(wù)器 Docker Alist掛載到本地磁盤(Mac版)夸克網(wǎng)盤

    1.服務(wù)器下載alist 默認(rèn)有docker環(huán)境 2.生成容器 -v /home/alist:/opt/alist/data 這段意思是alist中的數(shù)據(jù)映射到docker 主機(jī)的文件夾,/home/alist就是我主機(jī)的文件夾,這個文件夾必須先創(chuàng)建 3.開通服務(wù)器的5244訪問 4.獲得Alist初始登錄密碼 5.登錄web服務(wù)器,輸入賬號密碼 6.配置夸克服務(wù)器 點(diǎn)

    2024年02月15日
    瀏覽(25)
  • 【Ubuntu20安裝aria2以及配置web端】

    下面是我的配置文件

    2024年02月11日
    瀏覽(16)
  • linux安裝Aria2和部署AriaNg Web服務(wù)

    linux安裝Aria2和部署AriaNg Web服務(wù)

    學(xué)習(xí)和記錄linux中安裝Aria2和部署AriaNg前端服務(wù)。 該命令下載文件到當(dāng)前目錄,下一步需要用到該文件 dir 修改為自己的下載目錄,其他配置可根據(jù)需求修改 創(chuàng)建配置目錄 將aria2.conf文件復(fù)制到 /etc/aria2.conf 順便創(chuàng)建會話文件,空文件即可 修改44行46行aria2.conf中session文件路徑 查

    2024年02月06日
    瀏覽(17)
  • 配置正確但是 Aria2 RPC 服務(wù)器錯誤解決方案 2023

    適用于 Windows 系統(tǒng) (Linux/MacOS 也不會遇到這些問題吧……) 檢查 hosts 文件中是否為 127.0.0.1 設(shè)置別名 localhost (可將 Aria2 JSON-RPC 地址的 localhost 改為 127.0.0.1 看是否可行) 檢查端口號是否對應(yīng)正確(默認(rèn) 6800 ) 檢查 Aria2 是否正常啟動(查看 aria2c log,把 ERROR 處理掉) Aria2

    2024年02月12日
    瀏覽(38)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包