Free Download Manager 多线程下载工具

蓝鹰 | CentOS | 2024-05-30
下载地址: windows : https://lanying.lanzout.com/iM5yl208ctuh MAC : https://lanying.lanzout.com/iupXz208cyjg 下载后默认安装, 打开界面点上面的+号添加下载连接即可 [阅读全文]
ė0 浏览数 6Free Download Manager 多线程下载工具已关闭评论 0

linux中批量下载指定网址中的指定类型文件

蓝鹰 | CentOS | 2024-01-19
注意是批量下载连接中所有指定文件 -A 后面是指定的文件名辍 --no-check-certificate 忽略证书 wget -A mp3 -r -p -np -k --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36" --no-check-certificate URL 利用WGET下载文件,并保存到指定目录 而要让档案自动储存到指... [阅读全文]
ė0 浏览数 6linux中批量下载指定网址中的指定类型文件已关闭评论 0, , , , ,

Linux终端流量走socks5代理的方法

蓝鹰 | CentOS | 2024-01-18
临时使用方法: export http_proxy="socks5://127.0.0.1:1080" export https_proxy="socks5://127.0.0.1:1080" 也可以直接设置ALL_PROXY export ALL_PROXY=socks5://127.0.0.1:1080 对于程序员而言,在从GitHub中使用git clone 命令拉取代码比较慢的情况,也可以用它来加快git的速度, 具体配置命令如下: git config --global http.proxy 'socks5://1... [阅读全文]
ė0 浏览数 6Linux终端流量走socks5代理的方法已关闭评论 0,

Google Drive 被设置为 Read Only 的 PDF 文件的下载导出

蓝鹰 | CentOS | 2023-12-30
jsPDF 实现 Google 云端硬盘只读 PDF 文件下载导出 /* Via https://codingcat.codes/2019/01/09/download-view-protected-pdf-google-drive-js-code/ If the images are not complete, try zooming the page to get the full image. 1. Open Developer Tools on separate window and choose the Console tab 2. Paste the code below (and hit ent... [阅读全文]
ė0 浏览数 6Google Drive 被设置为 Read Only 的 PDF 文件的下载导出已关闭评论 0, , ,

openwrt uhttpd更改默认端口

蓝鹰 | CentOS | 2023-12-11
1. 修改uhttpd端口 vi /etc/config/uhttpd list listen_http 0.0.0.0:80 --> list listen_http 0.0.0.0:808 需要ipv6的端口也一并修改,保存,重启uhttpd /etc/init.d/uhttpd restart [阅读全文]
ė0 浏览数 6openwrt uhttpd更改默认端口已关闭评论 0, , ,

Linux下route add route del 用法

蓝鹰 | CentOS | 2023-12-07
显示现在所有路由 route -n 举例说明: 添加一条路由(发往192.168.62这个网段的全部要经过网关192.168.1.11) route add -net 192.168.62.0 netmask 255.255.255.0 gw 192.168.1.11 删除一条路由 route del -net 192.168.62.0 netmask 255.255.255.0 使用route 命令添加的路由,机器重启或者网卡重启后路由就失效了,方法: //添加到主机的路由 # route a... [阅读全文]
ė0 浏览数 6Linux下route add route del 用法已关闭评论 0, ,

openvpn客户端不使用远程网关

蓝鹰 | CentOS | 2023-12-07
在组网过程中, 有时候不需要网关, 可以在客户端配置中处理 #在client.ovpn配置文件添加以下选项来忽略网关重定向 pull-filter ignore "redirect-gateway" [阅读全文]
ė0 浏览数 6openvpn客户端不使用远程网关已关闭评论 0

centos7 网络改网桥模式(桥接模式)

蓝鹰 | CentOS | 2023-12-07
安装 yum install bridge-utils 设置 cd /etc/sysconfig/network-scripts/ 备份原来的网络设置 cp ifcfg-eth0 ifcfg-eth0.bak 修改原网卡配置配置文件 ifcfg-eth0 删除原来的IP及DNS配置行 修改为以下,模式为空,NM_CONTROLLED=no,意思为此网络不受NetworkManager控制,网桥名为br0: BOOTPROTO=none NM_CONTRLLED=no BRIDGE=br0 添加网桥配置文件 if... [阅读全文]
ė0 浏览数 6centos7 网络改网桥模式(桥接模式)已关闭评论 0, , , , , , ,

OPENWRT安装nohup

蓝鹰 | CentOS | 2023-12-05
命令行安装: opkg update opkg install coreutils-nohup 使用方法 nohup command > myout.file 2>&1 & [阅读全文]
ė0 浏览数 6OPENWRT安装nohup已关闭评论 0,

Ubuntu 22.04 设置开机自启脚本

蓝鹰 | CentOS | 2023-12-05
使用 rc-local.service rc-local.service 是系统自带的一个开机自启服务,但是在 ubuntu 20.04 上,该服务默认没有开启。 将rc-local服务设置为开机自启动(本文操作都在root用户下,或使用sudo)。 首先将rc-local.service文件复制到system目录下 cp /usr/lib/systemd/system/rc-local.service /etc/systemd/system/ 一般正常的启动文件主要分成三部分 [... [阅读全文]
ė0 浏览数 6Ubuntu 22.04 设置开机自启脚本已关闭评论 0, , ,
Ɣ回顶部