Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

acpidump-acpica(1) [centos man page]

ACPIDUMP(1)						      General Commands Manual						       ACPIDUMP(1)

NAME
acpidump - ACPI table dump utility SYNOPSIS
acpidump [<option>...] DESCRIPTION
This manual page briefly documents the acpidump command. The option list is taken from the interactive help. The acpidump command extracts the ACPI tables currently in use from the running kernel in a form usable for later processing by the acpix- tract command. Invocation of acpidump without parameters will dump all available ACPI tables. Multiple mixed instances of the -a , -f , and -n parameters can be used. OPTIONS
-b Dump tables in binary format (versus the default human-readable form) -h | -? Display this help message -o <file> Redirect output to a file. This file can be used later by acpixtract to examine the contents of the ACPI tables. -s Print table summaries only. -v Print the version of this utility. -z Verbose mode. -a <address> Get a table from a physical address (must be superuser and you must be careful which address you use -- dmesg will typically report the addresses for the various tables). -f <binary-file> Get a table from a binary file (see the -b option). -n <signature> Get a table via it's name or signature (e.g., MADT or SSDT). SEE ALSO
acpixtract(1) AUTHOR
acpidump was written by Robert Moore <robert.moore@intel.com> and Chao Guan <chao.guan@intel.com>. This manual page was written by Al Stone <ahs3@redhat.com> for the Fedora project (but may be used by others). July 24, 2013 ACPIDUMP(1)

Check Out this Related Man Page

ACPIHELP(1)						      General Commands Manual						       ACPIHELP(1)

NAME
acpihelp - ACPI help utility SYNOPSIS
acpihelp <option>... [<name-prefix>|<hex-value>] DESCRIPTION
This manual page briefly documents the acpihelp command. The option list is taken from the acpihelp interactive help. acpihelp provides descriptive text for AML and ASL keywords, methods, and opcodes. Much more detailed documentation may be found at http://www.acpica.org/documentation/. If neither a <name-prefix> or a <hex-value> is provided, acpihelp will do the logical equivalent of a "display all." A default search (that is, a search with no options) and a <name-prefix> can mean two different things: (1) if <name-prefix> does not start with an underscore, find ASL operator names, or (2) if <name-prefix> does start with an underscore, find ASL predefined method names. OPTIONS
ACPI Names and Symbols -k [<name-prefix>] Find/Display ASL non-operator keyword(s) -m [<name-prefix>] Find/Display AML opcode name(s) -p [<name-prefix>] Find/Display ASL predefined method name(s) -s [<name-prefix>] Find/Display ASL operator name(s) ACPI Values -e [<hex-value>] Decode ACPICA exception code -i Display known ACPI Device IDs (_HID) -i [<hex-value>] Decode hex AML opcode AUTHOR
acpihelp was written by Robert Moore <robert.moore@intel.com>. This manual page was written by Al Stone <ahs3@redhat.com> for the Fedora project (but may be used by others). January 23, 2013 ACPIHELP(1)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

viewing tables

I have completely blanked out on this and I have done it a million times. I need to modify some tables in unix. What is the command for opening/viewing the tables? Thanks so much. :o (2 Replies)
Discussion started by: itldp
2 Replies

2. Shell Programming and Scripting

Reading in two inputs from a file

Hi all, I've been assigned the task of modifying a script which reads in names of tables from a list file, exports a 30 days worth of data from these tables, then deletes the table. The list file will now contain a table name and a number next to it indicating how many days to archive. I need... (1 Reply)
Discussion started by: MadHatter
1 Replies

3. UNIX for Dummies Questions & Answers

finding out tables not used in scripts.

Hi all, Please see my requirement and post me asap. Spool all the tables names into a file . Take each table name and check if it is present in any of the scripts in a directory using grep -il command. The script has to loop through the tables list and take each table and find it's presence... (7 Replies)
Discussion started by: Vasundhara
7 Replies

4. BSD

dmesg giving errors

When running dmesg, the output is a long list of the following: ACPI Error: No object attached to node 0xffffff00016622e0 20090521 exresnte-211 ACPI Error (uteval-0329): Method execution failed (Node 0xffffff00016622e0), AE_AML_NO_OPERAND As a workaround I resort to sysctl, which gives... (0 Replies)
Discussion started by: figaro
0 Replies

5. Shell Programming and Scripting

Make process parallel

Hi, I have a file which has a list of 200 tables e.g: table.txt I need to do a count for each table and store it in a file. So I did something like this: for TABLE in `cat table.txt` do T_CNT=$(sqlplus -s -l / as sysdba <<EOF set echo off heading off feadback off SELECT count(*) FROM... (1 Reply)
Discussion started by: wahi80
1 Replies