Image

知识库 → 使用 wget 在 Linux 控制台中下载文件

[虚拟服务器] [共享主机]
出版日期: 29.03.2024

要在 Linux 控制台中下载文件,我们建议使用 wget 实用程序。 默认情况下,它在虚拟服务器和共享主机中都可用。

请注意,在共享托管的情况下,只能以 BusinessBusiness + 资费通过 ssh 进行访问。

如果缺少该包,请安装它:

apt install wget

或(Rocky & Alma)

yum install wget

1. 以下是使用示例

1.1 下载文件

wget https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd/debian-12.5.0-amd64-DVD-1.iso

1.2 限速下载文件

wget --limit-rate=500K https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd/debian-12.5.0-amd64-DVD-1.iso

1.3 后台文件下载

wget -b https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd/debian-12.5.0-amd64-DVD-1.iso

1.4 中断时恢复文件下载

wget -c https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd/debian-12.5.0-amd64-DVD-1.iso

1.5 选择连接类型 IPv4 或 IPv6 下载文件

对于 IPv4:

wget -4 https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd/debian-12.5.0-amd64-DVD-1.iso

对于 IPv6:

wget -6 https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd/debian-12.5.0-amd64-DVD-1.iso

1.6 指定文件夹下载

wget -P /home/user https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd/debian-12.5.0-amd64-DVD-1.iso

1.7 下载多个文件

1.7.1 创建带有链接的文件

files.txt
https://cdimage.debian.org/debian-cd/current/amd64/iso-dvd/debian-12.5.0-amd64-DVD-1.iso
https://cdimage.debian.org/debian-cd/current/arm64/iso-cd/debian-12.5.0-arm64-netinst.iso

1.7.2 下载多个文件的命令格式

wget -i files.txt

1.8 通过FTP协议授权下载

wget --ftp-user=FTP_USER --ftp-password=FTP_PASSWORD ftp://domain.tld/filename.tar.gz

1.9 通过https下载,忽略证书验证

wget --no-check-certificate https://domain-with-invalid-ssl.tld/some-file-name.zip




暂时没有评论