V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  feedcode  ›  全部回复第 5 页 / 共 6 页
回复总数  107
1  2  3  4  5  6  
2023-03-30 19:13:23 +08:00
回复了 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-03-26 11:49:30 +08:00
回复了 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-03-23 10:11:18 +08:00
回复了 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-02-25 18:21:25 +08:00
回复了 goodboyG2 创建的主题 分享发现 今天 new bing 申请通过了
bing 的归属地判断是个迷,我 ssh 远程在墙外的机器里 curl bing.com 也给我重定向到 cn ,ipinfo.io 里显示的归属地为海外
2023-02-23 10:17:40 +08:00
回复了 xiaomimix5 创建的主题 上海 不换号-10 元/月套餐-享 70G 流量+1400 分钟通话+300M 宽带
这个套餐里的副卡一张多少钱? 10 块还是 0.1
这个是楼主本人还是营业厅的朋友?永久三折这个靠谱吗?
加 label 或者 status 过滤,只选择需要 reconcile 的 object
2023-02-20 10:24:39 +08:00
回复了 PhaSelEza 创建的主题 Linux btrfs 出现 corrupt leaf 的原因如何排查?
corrupt leaf 后面会跟原因的,如果是 invalid root item size 可以尝试更新下内核,之前有个 false alarm 被修掉了
https://github.com/torvalds/linux/commit/1465af12e254#diff-21b5c65ce5cabfab40b020cac0ef6a62950d31ccc43859879bf7981e3e0135ff
2023-02-15 23:12:14 +08:00
回复了 AlphaTauriHonda 创建的主题 宽带症候群 移动精品网 CMIN2 AS58807 的国际出口开通了
移动的这个”国际加速包“ 是只有北京有吗?
2023-02-09 19:48:48 +08:00
回复了 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-02-08 13:41:56 +08:00
回复了 lysS 创建的主题 Go 编程语言 容器化怎么 debug 啊?
2023-02-08 11:50:14 +08:00
回复了 lysS 创建的主题 Go 编程语言 容器化怎么 debug 啊?
容器化是好大一块,看你用的是什么库和工具。本地测试可以参考 kubebuilder 的实现 https://pkg.go.dev/sigs.k8s.io/controller-runtime/pkg/envtest
2023-02-02 19:52:02 +08:00
回复了 feedcode 创建的主题 上海 上海预约护照更新
@tfull 连崇明岛上的公安局都很快约满了,可想而知是多少人了
2023-01-31 21:01:42 +08:00
回复了 idblife 创建的主题 云计算 惊闻 oracle cloud 永久免费要关闭空闲实例,求可部署系统
出处:
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 22:20:30 +08:00
回复了 yuedanwork 创建的主题 分享创造 [迫于一次奇葩的需求] 分享一下 pdf 页面分割实现
比起切割图像,pdf 更好操作,比如 A3 打印成 A4, 只要在原始页面创建 4 个引用,分别定义 4 个打印区域( CropBox )就可以了,新的文档大小并不会有太大变化,类似的 python 项目
https://pdfposter.readthedocs.io/en/stable/Examples.html
2022-06-01 23:01:49 +08:00
回复了 idblife 创建的主题 Linux 如何用 vim 打开一个 10G 的文本。。。
vim 也提供了 arguments
-n No swap file will be used.
2022-06-01 22:58:31 +08:00
回复了 idblife 创建的主题 Linux 如何用 vim 打开一个 10G 的文本。。。
2022-02-11 19:35:59 +08:00
回复了 FenixVu 创建的主题 Linux inode 没满,但是会随机报磁盘空间不足是啥问题?
遇到了哈希冲突,
ext4 uses half_md4 as a default hashing-mechanism. If I interpret my google-results correctly, this uses the md4-hash algorithm, but strips it to 32 bits.

https://blog.merovius.de/2013/10/20/ext4-mysterious-no-space-left-on.html
1  2  3  4  5  6  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   982 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 30ms · UTC 21:57 · PVG 05:57 · LAX 13:57 · JFK 16:57
Developed with CodeLauncher
♥ Do have faith in what you're doing.