V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  vonsy  ›  全部回复第 2 页 / 共 23 页
回复总数  450
1  2  3  4  5  6  7  8  9  10 ... 23  
Today, Streaks, Fabulous....同类的很多,而且很好用
价格,有买断的.
功能繁琐,并不繁琐.
提到的核心功能, 都有.
2023-03-09 10:51:47 +08:00
回复了 chenpei466 创建的主题 分享发现 纳税汇算清缴填赡养老人被拒了
可以填分摊,比例 1:99,或手工输金额
可以了
因为那会以 uid=1000,gid=1000 运行 qBittorrent, 它把文件夹 owner 部分修改为 1000 了.
然后再次以 uid=3000,gid=3000 运行时, 又会把 1000 修改回 3000,但部分成功,部分失败(TrueNAS acl 很多设置,还没搞清楚哪项导致的)
在 TrueNAS Datasets Permissions 中重置 owner,acl. 再次以 uid=3000,gid=3000 运行 qBittorrent 正常
2023-02-23 08:37:58 +08:00
回复了 Dik3047 创建的主题 MacBook Pro 第一台 mbp 用了两年 3 个月就报废了
或许灰多就是风扇一直全速吹出来的.
我的 rmbp 2013 late 现在还正常使用中.
2023-02-16 12:58:21 +08:00
回复了 xd880616 创建的主题 宽带症候群 阿里云盘 webdav 废了吗?
阿里云盘对数据接口进行全面加密升级,将影响非官方开发的部分应用。开发者如需更新为官方接口,戳我参与开放平台内测 https://survey.alibaba.com/apps/zhiliao/I9Dd1Nl89
2023-02-16 12:03:11 +08:00
回复了 pmgh10 创建的主题 问与答 Mac 如何自动激活 iPhone 热点功能
刚测试了下, 12.6 (21G115), iOS 16.3.1(20D64)竟然能自动连接上了.
记得以前 macOS 版本,如果是 iPhone 热点,Automatically join this network 是无法勾选的(能选择但保存不生效)

-----------
https://apple.stackexchange.com/questions/322400/how-to-automatically-connect-macs-wi-fi-to-iphones-hotspot
https://github.com/OnDaShouldersOfGiants/auto-hotspot
2023-02-12 03:03:54 +08:00
回复了 huiyanpohundh123 创建的主题 程序员 iptables 太他妈难用了
试了试,docker 可以当透明网关 /代理
用的是斐讯 N1,刷的 NDM, linux 应该也可以, macos 不行,好像 macvlan 有问题
# 创建网络,网卡混杂模式
ip link set eth0 promisc on
docker network create -d macvlan --subnet=2.2.2.0/24 --gateway=2.2.2.1 -o parent=eth0 macnet

# 转发用的 clash redir
docker run -d \
-it \
--name=clash \
--network macnet \
--ip 2.2.2.77 \
--mac-address 32:D8:E2:AE:93:77 \
--ulimit nofile=16384:65536 \
--cap-add=NET_ADMIN \
--privileged=true \
-e TZ=Asia/Shanghai \
-p 7892:7892 \
golang:latest \
/bin/sh

# 安装,配置 clash
go install github.com/Dreamacro/clash@latest
vi ./bin/config.yaml
bin/clash -f bin/config.yaml

# 来自 https://github.com/shadowsocks/shadowsocks-libev#transparent-proxy
iptables -t nat -N SHADOWSOCKS
iptables -t mangle -N SHADOWSOCKS
# VPS 服务器不转发
iptables -t nat -A SHADOWSOCKS -d 54.250.148.164 -j RETURN
# 局域网地址不转发
iptables -t nat -A SHADOWSOCKS -d 0.0.0.0/8 -j RETURN
iptables -t nat -A SHADOWSOCKS -d 10.0.0.0/8 -j RETURN
iptables -t nat -A SHADOWSOCKS -d 127.0.0.0/8 -j RETURN
iptables -t nat -A SHADOWSOCKS -d 169.254.0.0/16 -j RETURN
iptables -t nat -A SHADOWSOCKS -d 172.16.0.0/12 -j RETURN
iptables -t nat -A SHADOWSOCKS -d 192.168.0.0/16 -j RETURN
iptables -t nat -A SHADOWSOCKS -d 224.0.0.0/4 -j RETURN
iptables -t nat -A SHADOWSOCKS -d 240.0.0.0/4 -j RETURN
iptables -t nat -A SHADOWSOCKS -d 2.2.2.0/24 -j RETURN

# TCP
iptables -t nat -A SHADOWSOCKS -p tcp -j REDIRECT --to-ports 7892
# UDP
ip route add local default dev lo table 100
ip rule add fwmark 1 lookup 100
iptables -t mangle -A SHADOWSOCKS -p udp --dport 53 -j TPROXY --on-port 7892 --tproxy-mark 0x01/0x01
# 生效
iptables -t nat -A PREROUTING -p tcp -j SHADOWSOCKS
iptables -t mangle -A PREROUTING -j SHADOWSOCKS

# 可能用到的包
apt update
apt install -y vim iptables iproute2 iputils-ping curl net-tools ca-certificates
update-ca-certificates

# 安装包可能要临时翻
export http_proxy=http://2.2.2.77:7890
export https_proxy=http://2.2.2.77:7890
unset http_proxy
unset https_proxy

# 测试有没有生效
curl https://ipinfo.io/
curl https://ifconfig.co/
@liuidetmks 今天试了试,可以修改了.
2022-12-22 15:14:54 +08:00
回复了 weishao666 创建的主题 问与答 mac 上解压个 200 多 G 的文件
用 Keka 解过 200G 的包. 但感觉你卡住不是软件的原因.
我的也这样, 框里都是空的. 换浏览器等无效, outlook 的 bug 吧
2022-12-05 17:12:39 +08:00
回复了 zonas 创建的主题 NGINX 请教如何排查 nginx 未响应情况
https://mmonit.com/monit/
装个监控, 持续监视 CPU,内存,IO,网络, Nginx 端口, 设置个邮件通知.
2022-12-04 14:45:07 +08:00
回复了 daqin 创建的主题 硬件 这会是 gen10 plus 可以用的最低功耗 cpu 吗?
B610-4E
华硕 RT-AC86U
N1

55W 也包含上面三个
2022-12-04 14:43:18 +08:00
回复了 daqin 创建的主题 硬件 这会是 gen10 plus 可以用的最低功耗 cpu 吗?
i9-9900T
Crucial 32GB Single DDR4 2666 MT/s CL19 DIMM 288-Pin Memory - CT32G4DFD8266 * 2
WD WUH721818ALE6L4 18T * 1
Intel® SSD D3-S4610 Series 960GB * 1
NVIDIA T600
HPE MicroServer Gen10 Plus iLO Enablement Kit,SKU

功率 55W
2022-12-02 17:21:55 +08:00
回复了 JusticeIsHere 创建的主题 分享创造 Go File: 基于 Go 的文件分享工具
@JusticeIsHere
上传了一个 50G 的 tar.gz 文件,50G 已经上传完成了,浏览器显示处理中,一会就停止了,没有文件上传记录,服务器 upload 下创建了 17G 文件.
最后是 curl –u name:passwd -T file.tar.gz ftp://ip:port/ 上传到 ftp
2022-12-01 19:39:52 +08:00
回复了 Socrazy 创建的主题 Apple TV 给使用 Apple TV+emby+infuse 的提个醒, emby 有可能走了外网
https://support.plex.tv/articles/216766168-accessing-a-server-through-relay/
Limitations
When relaying a connection through us, there are limitations for the streaming qualities you can use:

Free users are limited to 1 Mbps maximum for streams
Plex Pass subscribers are limited to 2 Mbps maximum for streams

如果外网用 infuse 连接 plex 也会带宽不足
2022-11-28 17:02:35 +08:00
回复了 liaotonglang 创建的主题 分享创造 做了个服务器资源监控程序
2022-11-25 09:12:28 +08:00
回复了 yuyu2140 创建的主题 Apple TV Apple TV 128GB 初体验
@w526433357 很久没看了, 上次看 See, Finch 时不翻看不了, 晚上试试
2022-11-25 07:29:16 +08:00
回复了 yuyu2140 创建的主题 Apple TV Apple TV 128GB 初体验
看 Apple TV+, Amazon Prime Video,UI 和视频画质真是享受, 虽然流量哗哗的没了
1  2  3  4  5  6  7  8  9  10 ... 23  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2298 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 34ms · UTC 12:00 · PVG 20:00 · LAX 05:00 · JFK 08:00
Developed with CodeLauncher
♥ Do have faith in what you're doing.