Linux command
abrt-cli 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
List all detected problems
abrt-cli list
List only unreported problems
abrt-cli list -n
Show detailed info about a specific problem
abrt-cli info [problem_dir]
Report a problem to the configured bug tracker
abrt-cli report [problem_dir]
Remove a crash report
abrt-cli remove [problem_dir]
Show count of detected problems
abrt-cli status
Enable or disable auto-reporting
abrt-cli auto-report [on|off]
说明
abrt-cli is the command-line interface for the Automatic Bug Reporting Tool (ABRT) used on Fedora and RHEL systems. It manages detected application crashes, kernel oopses, and other software defects, allowing users to list, inspect, report, and remove problem data. Crash information includes identifiers, timestamps, package names, crash reasons, and report status/URLs when applicable.
参数
- list -n --detailed --since _NUM_ --until _NUM_
- Display detected crashes. -n shows only unreported problems. --detailed shows full report. --since/--until filter by timestamp.
- info -d -s _SIZE_ _PROBLEM_DIR_
- Show details of a specific problem. -d for detailed output. -s abridges text larger than SIZE bytes.
- report --delete --unsafe _PROBLEM_DIR_
- Submit a problem for analysis and reporting. --delete removes the problem dir after reporting. --unsafe ignores security checks.
- remove _PROBLEM_DIR_
- Delete a problem from the system.
- status -b --since _NUM_
- Show count of detected problems. -b prints only the count (bare mode).
- process --since _NUM_ --unsafe _PROBLEM_DIR_
- Analyze and report problems in batch.
- auto-report on|off
- Enable or disable automatic reporting of detected problems.
- -v, --verbose
- Increase verbosity.
- -V, --version
- Show version information.
FAQ
What is the abrt-cli command used for?
abrt-cli is the command-line interface for the Automatic Bug Reporting Tool (ABRT) used on Fedora and RHEL systems. It manages detected application crashes, kernel oopses, and other software defects, allowing users to list, inspect, report, and remove problem data. Crash information includes identifiers, timestamps, package names, crash reasons, and report status/URLs when applicable.
How do I run a basic abrt-cli example?
Run `abrt-cli list` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does list -n --detailed --since _NUM_ --until _NUM_ do in abrt-cli?
Display detected crashes. -n shows only unreported problems. --detailed shows full report. --since/--until filter by timestamp.