我正在查看不同磁盘的 SMART 属性数据,并注意到一些磁盘报告以下属性,而其他磁盘则没有:
- 241 0xF1 写入的 LBA 总数
- 242 0xF2 读取的 LBA 总数
是什么决定了这个属性是否可用于给定的驱动器,有没有办法通过查看 smartctl 或 hdparm 输出来判断这一点?
我正在查看不同磁盘的 SMART 属性数据,并注意到一些磁盘报告以下属性,而其他磁盘则没有:
是什么决定了这个属性是否可用于给定的驱动器,有没有办法通过查看 smartctl 或 hdparm 输出来判断这一点?
我正在尝试运行 gdb 来调试我的 Ubuntu 9.10 Apache2 安装并遇到一些问题:
Ubuntu 为 Apache2 安装的软件包似乎不包含调试符号;我应该使用不同版本的软件包进行开发/调试吗?
当我尝试运行 gdb 时,我收到一个错误,似乎是由于缺少一些环境变量引起的。我应该将其他选项传递给“运行”以使其正常工作吗?
这是调试器会话的输出:
root@aj-ubuntu:/usr/sbin# gdb apache2
GNU gdb (GDB) 7.0-ubuntu
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /usr/sbin/apache2...(no debugging symbols found)...done.
(gdb) run -X
Starting program: /usr/sbin/apache2 -X
[Thread debugging using libthread_db enabled]
apache2: bad user name ${APACHE_RUN_USER}
Program exited with code 01.
(gdb)
在此先感谢,-aj