Debian 是否有某种自动软件包更新过程?
我在一组无风扇 PC 上使用它,并注意到最近一台变得非常慢。检查时,网络 LED 显示出大量活动。最终系统变得无响应并需要冷启动。启动后,我查看/var/log/syslog
并找到了像这样的条目页面:
包:<某个包名>
自动安装:1
架构:armel
它似乎正在枚举已安装的软件包。最重要的是,我想知道它是否是一些我可以禁用的自动化过程。
我根本无法完成设置 - Alpine 似乎希望您连接到以太网以安装wireless-tools
和wpa_supplicant
.
这样对吗?我的问题是:我的路由器所在的位置没有显示器,所以这是一个先有鸡还是先有蛋的问题:无法连接到互联网,因为wireless-tools
没有配备 Alpine 的默认安装,并且无法安装它们,因为我我没有连接到互联网。
我最近在我的平台上安装了 Perf 工具,并想用它来分析我的平台。
我开始分析一个独立的应用程序。下面是我使用的命令:
perf start ./helloworld
Performance counter stats for './helloworld':
4.555957 task-clock # 0.000 CPUs utilized
1 context-switches # 0.219 K/sec
0 cpu-migrations # 0.000 K/sec
124 page-faults # 0.027 M/sec
<not supported> cycles
<not supported> stalled-cycles-frontend
<not supported> stalled-cycles-backend
<not supported> instructions
<not supported> branches
<not supported> branch-misses
60.005519331 seconds time elapsed
Run Code Online (Sandbox Code Playgroud)
现在我不确定我应该如何解释这个输出。它是否如预期的那样?
另外,我应该<not supported>
在这里制作什么字段,在运行命令之前我需要启用什么来支持这个字段?