V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
V2EX  ›  feedcode  ›  全部回复第 7 页 / 共 8 页
回复总数  148
1  2  3  4  5  6  7  8  
2023 年 3 月 30 日
回复了 bobryjosin 创建的主题 宽带症候群 关于 windows11 ipv6 的一个问题
如果不是经常换网络环境的话,可以关掉 Network Location Awareness , 然后根据 https://www.rfc-editor.org/rfc/rfc3484#section-10.3 手工调整优先级
netsh interface ipv6 set prefixpolicy ::ffff:0:0/96 10 4
2023 年 3 月 30 日
回复了 bobryjosin 创建的主题 宽带症候群 关于 windows11 ipv6 的一个问题
确保能访问 ipv6.msftconnecttest.com/connecttest.txt
如果 connect test 一直报错的话可以尝试关掉 ActiveProbing 只保留 PassivePolling

reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet\ /v EnableActiveProbing /d 0 /t REG_DWORD
2023 年 3 月 26 日
回复了 vmoewill 创建的主题 Kubernetes k3s 如何解决 ErrImagePull 拉取镜像超时
那个 issue 是关于 rancher desktop 的,github 里的代码逻辑还是在的,
https://github.com/k3s-io/kubernetes/blob/master/pkg/kubelet/kubelet.go#L319-L322

```
remote.NewRemoteRuntimeService(kubeCfg.ContainerRuntimeEndpoint, kubeCfg.RuntimeRequestTimeout.Duration, kubeDeps.TracerProvider);
```
2023 年 3 月 23 日
回复了 tracert 创建的主题 Windows Windows 自带截图工具存在漏洞,裁剪内容可被还原
中文翻译有问题.

current exploits only work with PNG images, not JPEGs.
A screenshot cropped with Snipping Tool and then saved over the original (the default behavior) adds a new IEND chunk to the PNG image but leaves a bunch of the original screenshot's data after the IEND chunk.
https://www.w3.org/TR/PNG-Structure.html

app https://acropalypse.app/
proof code: https://gist.github.com/DavidBuchanan314/93de9d07f7fab494bcdf17c2bd6cef02
如果你客户端 SLAAC 分配了 2 个 IPV6 地址的话 IPV6 有冲突,需要关掉一个光猫 ipv6
可以试下 air + dlv, remote debugging

# .air.toml
```
[build]
full_bin = "dlv exec --accept-multiclient --log --headless --continue --listen :2345 --api-version 2 the-progarm"

```
2023 年 2 月 25 日
回复了 goodboyG2 创建的主题 分享发现 今天 new bing 申请通过了
bing 的归属地判断是个迷,我 ssh 远程在墙外的机器里 curl bing.com 也给我重定向到 cn ,ipinfo.io 里显示的归属地为海外
2023 年 2 月 23 日
回复了 xiaomimix5 创建的主题 上海 不换号-10 元/月套餐-享 70G 流量+1400 分钟通话+300M 宽带
这个套餐里的副卡一张多少钱? 10 块还是 0.1
这个是楼主本人还是营业厅的朋友?永久三折这个靠谱吗?
加 label 或者 status 过滤,只选择需要 reconcile 的 object
2023 年 2 月 20 日
回复了 PhaSelEza 创建的主题 Linux btrfs 出现 corrupt leaf 的原因如何排查?
corrupt leaf 后面会跟原因的,如果是 invalid root item size 可以尝试更新下内核,之前有个 false alarm 被修掉了
https://github.com/torvalds/linux/commit/1465af12e254#diff-21b5c65ce5cabfab40b020cac0ef6a62950d31ccc43859879bf7981e3e0135ff
2023 年 2 月 15 日
回复了 AlphaTauriHonda 创建的主题 宽带症候群 移动精品网 CMIN2 AS58807 的国际出口开通了
移动的这个”国际加速包“ 是只有北京有吗?
2023 年 2 月 9 日
回复了 rayn32 创建的主题 Linux 请教 /root/目录下自己出现奇怪数字文件
首先确保 auditd 已经安装并且启动,然后加一条 audit 规则

```
auditctl -w /root -p w -k monitor_root_dir
```

日志会写到 /var/log/audit/audit.log 或者 /var/log/audit.log , 里面有 uid, gid, pid
网络设备在
ls /sys/class/net/
2023 年 2 月 8 日
回复了 lysS 创建的主题 Go 编程语言 容器化怎么 debug 啊?
2023 年 2 月 8 日
回复了 lysS 创建的主题 Go 编程语言 容器化怎么 debug 啊?
容器化是好大一块,看你用的是什么库和工具。本地测试可以参考 kubebuilder 的实现 https://pkg.go.dev/sigs.k8s.io/controller-runtime/pkg/envtest
2023 年 2 月 2 日
回复了 feedcode 创建的主题 上海 上海预约护照更新
@tfull 连崇明岛上的公安局都很快约满了,可想而知是多少人了
出处:
https://docs.oracle.com/en-us/iaas/Content/FreeTier/freetier_topic-Always_Free_Resources.htm
Reclamation of Idle Compute Instances

Idle Always Free compute instances may be reclaimed by Oracle. Oracle will deem virtual machine and bare metal compute instances as idle if, during a 7-day period, the following are true:

CPU utilization for the 95th percentile is less than 10%
Network utilization is less than 10%
Memory utilization is less than 10% (applies to A1 shapes only)
2022 年 10 月 20 日
回复了 yuedanwork 创建的主题 分享创造 [迫于一次奇葩的需求] 分享一下 pdf 页面分割实现
比起切割图像,pdf 更好操作,比如 A3 打印成 A4, 只要在原始页面创建 4 个引用,分别定义 4 个打印区域( CropBox )就可以了,新的文档大小并不会有太大变化,类似的 python 项目
https://pdfposter.readthedocs.io/en/stable/Examples.html
2022 年 6 月 1 日
回复了 idblife 创建的主题 Linux 如何用 vim 打开一个 10G 的文本。。。
vim 也提供了 arguments
-n No swap file will be used.
2022 年 6 月 1 日
回复了 idblife 创建的主题 Linux 如何用 vim 打开一个 10G 的文本。。。
1  2  3  4  5  6  7  8  
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2828 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 41ms · UTC 09:58 · PVG 17:58 · LAX 02:58 · JFK 05:58
♥ Do have faith in what you're doing.