Windows必备软件
Windows 和 Office 激活 AAct_x64https://wwm.lanzouw.com/i6fvi0dr7m1g 密码:awc9 办公:WPS 2016 单文件极简版https://wwsf.lanzouw.com/imZaI0uyptkj 密码:hg7d WPS 2019 免激活专业增强版10154链接: https://pan.baidu.com/s/1Gc4XJH_r3LoWMCfPDLCa4A?pwd=fhrd 提取码: fhrd 复制这段内容后打开百度网盘手机App,操作更方便哦 WPS 2023 政府版链接:https://pan.quark.cn/s/b5a792595137 提取码:vABV 播放器:PotPlayer_1.7.21620https://wwm.lanzouw.com/ihNhp09dqopi 密码:29td 输入法:搜狗拼音https://wwm.lanzouw.com/iev4I09dqpji 密码:9rf0 浏览器:Chrome https://wwm.lanzouw.com/i7P4X09dssba 密码:c7i1 360安全浏 ...
苹果 iPhone iPad iOS 必备 APP
淘宝淘宝官方多开_10.13.0链接: https://pan.baidu.com/s/1VYJQHIfr0JwYKP7-vwcjqw?pwd=55rm 提取码: 55rm 复制这段内容后打开百度网盘手机App,操作更方便哦 闲鱼闲鱼多开_7.9.50@iPA库iPA.PUB_iPAKU.CC_iPAKU.CNhttps://www.123pan.com/s/zuYeVv-VkKbd.html提取码:AA0w 闲鱼官方多开 7.4.70链接: https://pan.baidu.com/s/1N1FEY8_sTWzU13TguPQpqw?pwd=pnrk 提取码: pnrk 复制这段内容后打开百度网盘手机App,操作更方便哦 抖音抖音++_99.9.9.ipa链接: https://pan.baidu.com/s/1bTlJ-3HGRcYSqdGy5TdFJQ?pwd=xbdr 提取码: xbdr 复制这段内容后打开百度网盘手机App,操作更方便哦 抖音_22.4.0净化哥哥版.ipa链接: https://pan.baidu.com/s/1WSaPzXoER9EnZI5rhHoKOA ...
安卓 Android 必备 APP
WPShttps://wwm.lanzouw.com/iWYNl0bycepc 密码:5ka8 下载工具迅雷去广告不限速https://wwm.lanzouw.com/i2OTZ0bxlw5i 密码:86ec 手机迅雷2022最新版本v9.9.9带云盘版https://wwm.lanzouw.com/ie9cU0crlm2f 密码:1ibx 安卓迅雷(无需登录就可以满速下载)https://wwm.lanzouw.com/i5fRz0crllif 密码:25vi 迅雷 7.3.0 Pro mod.apkhttps://wwm.lanzouw.com/ipEoU0dr2gji 密码:atbc 迅雷_10.00.0.1000.apkhttps://wwm.lanzouw.com/iOPb60dr2huf 密码:guzn 迅雷_v7.30.0.7664.apkhttps://wwm.lanzouw.com/iZEJD0dr2kfi 密码:2isi 域·下载器v1.3.3高级版https://wwm.lanzouw.com/iXuG40dr56ob 密码:8bbw 冰冰bt磁力下载器v1.1. ...
Mac 必备软件
电脑管家1.CleanMyMac X2.iStat Menus For Mac读写NTFS格式的硬盘1.Paragon NTFS For Mac2.Tuxera NTFS for MacPDF工具1.Adobe Acrobat Pro DC for mac2.PDF Reader Pro for Mac视频编辑1.Final Cut Pro For Mac2.Adobe Premiere Pro For Mac3.VideoProc4.Compressor For Mac虚拟机1.Parallels Desktop2.VMware Fusion pro for mac下载工具1.迅雷 for mac 永久会员加速开心版2.xunleiThunderQ.pkghttps://wwm.lanzouw.com/iavWh0cn1ofg 密码:8idq 3.Thunder_6.6.6_(6666)__machttps://wwm.lanzouw.com/iIBlw0cn1o3e 密码:hk3z 4.Thunder-8.8.8无限制版.dmghttps://wwm.lanzouw.com/iYT ...
debian卸载iptables安装nftables
卸载 iptables 并安装 nftables 的步骤如下(请根据您的 Linux 发行版选择相应的命令): 对于 Debian/Ubuntu 系统: 卸载 iptables: 12apt remove --purge iptables iptables-persistentapt autoremove --purge 选项会同时删除配置文件。iptables-persistent 通常用于保存和恢复 iptables 规则,建议也一并移除。autoremove 会移除不再需要的依赖包。 安装 nftables: 12apt updateapt install nftables 启用并启动 nftables 服务: 12systemctl enable nftablessystemctl start nftables
sing-box的tproxy模式配置方法
所有设备的网关填写透明网关的ip透明网关作为客户端的sing-box入站配置12345678910"inbounds": [ { "type": "tproxy", "tag": "tproxy-in", "listen": "::", "listen_port": 12345, "tcp_fast_open": true, "udp_fragment": true }], iptables(旧版)防火墙配置123456789101112131415161718192021222324252627282930313233343536373839404142###################### 路由表设置ip route add local default dev lo table 100ip rule add fwmar ...
debian卸载nftables安装iptables
在 Debian 12 上卸载 nftables 并安装 iptables,你可以按照以下步骤操作: 卸载 nftables: 打开终端并执行以下命令来移除 nftables 软件包及其相关依赖。 1apt purge --autoremove nftables purge 命令会移除软件包及其配置文件,--autoremove 会移除不再需要的依赖包。 安装 iptables: 执行以下命令来安装 iptables 及其相关的传统工具: 1apt install iptables iptables-persistent iptables 是核心软件包,iptables-persistent 用于在系统重启后保存和加载 iptables 规则。 切换到 iptables-legacy: Debian 12 默认可能仍然将 iptables 命令指向 nftables 的兼容层。为了确保你使用的是传统的 iptables,你需要更新 alternatives 配置: 12update-alternatives --set iptables /usr/sbin/iptables- ...
sing-box的实验性clash-api和缓存配置方法
1234567891011121314151617"experimental": { "clash_api": { "external_controller": "0.0.0.0:9090", "external_ui": "metacubexd", "external_ui_download_url": "https://github.com/MetaCubeX/metacubexd/archive/refs/heads/gh-pages.zip", "external_ui_download_detour": "🚀 节点选择", "default_mode": "rule" }, "cache_file": { "enabled&qu ...
sing-box的tun模式配置方法
sing-box配置(客户端用tun模式入站)12345678910111213141516"inbounds": [ { "type": "tun", "tag": "tun-in", "interface_name": "tun0", "address": [ "172.18.0.1/30", "fdfe:dcba:9876::1/126" ], "mtu": 9000, "auto_route": true, "strict_route": true, "endpoint_independent_nat": false, "stack": "mixed" }], ...
删除Windows下samba保存的用户名和密码
当我们访问Windows共享目录或者NAS共享盘时,Windows会提示输入共享用户名和密码,这时如果我们选择了“记住我的凭据”,Windows就会将认证凭证保存到计算机中,这样下次再访问共享时,就不需要再输入共享用户名和密码了,方便的用户的使用。但是如果一旦共享的密码修改了,我们无法再访问共享了。本文就是以Windows7为例,为您展示如何删除之前保存到计算机中的Windows共享认证凭据。 1、常情况下,我们在Windows资源管理器里输入“\IP地址\共享目录*”或者通过Windows资源管理器中的“网络”访问共享盘的时候,Windows会提示输入共享用户名和密码,为了避免重复输入共享用户名和密码,我们一般会选择“*记住我的凭据**”,这样下次访问时,就不需要再重新输入了。 2、但是当我们访问的共享盘修改了共享用户名或密码,Windows是不知道的。所以当我们重新访问共享资源时,Windows会提示没有访问权限,因为Windows依然是在尝试使用之前我们保存的用户名和密码连接共享资源。 3、我们需要将之前保存的共享资源用户凭证删除掉,再重新访问,就可以输入新的用户名密码了。要 ...