# time sosreport
(补充:这里以显示 sosreport 命令所需执行时间为例)
# time sosreport
(补充:这里以显示 sosreport 命令所需执行时间为例)
# hammer content-view list
----------------|---------------------------|--------------------------------------|-----------|---------------------|---------------------------------------------------------------------------------
CONTENT VIEW ID | NAME | LABEL | COMPOSITE | LAST PUBLISHED | REPOSITORY IDS
----------------|---------------------------|--------------------------------------|-----------|---------------------|---------------------------------------------------------------------------------
10 | test_CV | test_CV | false | 2022/06/23 20:20:20 | 61525, 16812, 61524, 16814, 16813, 16811, 16816, 16817, 6578, 231, 8, 9, 131,...
# hammer content-view info --id 10
(补充:这里以显示 ID 为 10 的 Content View 的信息为例)
if: Expression Syntax. then: Command not found.
此时终端没有使用 bash 解释器,而是使用了简化版 sh 解释器
> exec bash ; source ~/.bashrc
当 /usr/bin/su 文件的权限设置不正确时,会出现运行 su 命令时正确密码输入无效的情况
# chown root:root /usr/bin/su ; chmod 4755 /usr/bin/su
/usr/bin/sudo must be owned by uid 0 and have the setuid bit set
当 /usr/bin/sudo 文件的权限设置不正确时,会出现运行 sudo 命令时报错的情况
# chown root:root /usr/bin/sudo ; chmod 4755 /usr/bin/sudo