access - How To Check If A File Is Available For An Action SpecifiedReturn To Top
clock June 23rd, 2008

<b>access</b> - How To Check If A File Is Available For An Action Specified

You can use access to check to see whether a file is available for the action specified with in the mode argument. The modes arguments are: r (read) w (write) x (execute) This is used mainly when you are scripting. Access works better than test because it uses a direct system call, rather than looking at the file permission. Looking at file permissions can be misleading when a files system is mounted 'read-only'.

Here is the syntax for access:

access [mode] [filename]

Here are the options you can use with access:

--help (Display help message, then quit.)

--version (Display version, then quit.)



Tags:access, linux command, check a file

aclocal - GNU autoconf ToolReturn To Top
clock June 22nd, 2008

<b>aclocal</b> - GNU <b>autoconf</b> Tool

GNU autoconf tool. Place m4 macro definitions needed by autoconf into a single file. The aclocal command first scans for macro definitions in m4 files in its default directory (/usr/share/aclocal on some systems) and in the file acinclude.m4. It next scans for macros used in the configure.in file. It generates an aclocal.m4 file that contains definitions of all m4 macros required by autoconf.

Here is the syntax for aclocal:

aclocal [options]

Here are the options for aclocal:

--acdir=dir (Look for macro files in directory dir instead of the default directory.)

--help (Print help message, then exit.)

-I dir (Additionally, search directory dir for m4 macro definitions.)

--output=file (Save output to file instead of aclocal.m4.)

--print-ac-dir (Print the name of the directory to be searched for m4 files, then exit.)

--verbose (Print names of files being processed.)

--version (Print version number, then exit.)



Tags:aclocal, linux gnu autoconf tool

aconnect - How to Connect Ports in MIDI Hardware and Software to Route EventsReturn To Top
clock June 22nd, 2008

<b>aconnect</b> - How to Connect Ports in MIDI Hardware and Software to Route Events

Like its GUI relative alsa-patch-bay, aconnect connects ports in MIDI hardware and software to route events, similar to running patch cables between different mixers and synthesizers in an all-hardware audio system. aconnect is part of the ALSA (Advanced Linux Sound Architecture) system.

Here is the syntax for aconnect:

aconnect [options] [sender] [receiver] aconnect [options]

Here are the options for aconnect:

-d,--disconnect (Undo the connection described.)

-e,--exclusive (The connection being created must be exclusive: the sender and receiver ports may not connect to any other port.)

-i,--input (List all input (sender) ports. This flag is used without any other arguments or flags.)

-o, --output (List all output (receiver) ports. This flag is used without any other arguments or flags.)

-r, --real queue-name (All events processed through this connection get new timestamps from the named real-time queue. The receiving port must have access to, and use, the real-time queue.)

-t, --tick queue-name (All events processed through this connection get new timestamps from the specified tick queue.)

-x, --remove-all (Cancel all connections. This flag is used without any other arguments or flags.)



Tags:aconnect, connect ports midi, route events, linux command aconnect

acpi - Display Info About the ACPIReturn To Top
clock June 22nd, 2008

<b>acpi</b> - Display Info About the ACPI

acpi displays information about the ACPI (Advanced Configuration and Power Interface) system, based on the /proc/acpi file. Most kernels after 2.4 support ACPI hardware, and in both hardware and software, ACPI is gradually replacing the older APM (Advanced Power Management) system. Some operating systems, including SUSE, ship a combined ACPI/APM power interface called powersaved. Most, however, require either ACPI or APM software.

Note that some ACPI systems have special events that are not available on others. For example, IBM laptops have events related to their docking stations and keyboard lights that are not used on nondocking or unlighted laptops. On all systems, the /proc/acpi directory must be present for acpi commands to work.

Here is the syntax for acpi:

acpi [options]

Here are the options to use with acpi:



-b, --battery (Display battery information.)

-B, --without-battery (Do not display battery information.)

-t, --thermal (Display temperature information.)

-T, --without-thermal (Do not display temperature information.)

-a, --ac-adapter (Show whether the AC adapter is connected.)

-A, --without-ac-adapter (Do not show information about the AC adapter.)

-V, --everything (Show all information on every device.)

-s, --show-empty (Display information even on devices that are not available or not installed, such as empty slots for extra batteries.)

-S, --hide-empty (Do not display information on devices that are not operational or not installed.)

-c, --celcius (Use degrees Celsius as the temperature unit. This is the default unit.)

-d, --directory /path (Use the specified path to ACPI information. The default path is /proc/acpi.)

-f, --fahrenheit (Use degrees Fahrenheit as the temperature unit.)

-h, --help (Display help information.)

-k, --kelvin (Use degrees Kelvin as the temperature unit.)

-v, --version (Display version information.)



Tags:acpi, display information about acpi

acpi_available - How to See if ACPI is PresentReturn To Top
clock June 23rd, 2008

acpi_available - How to See if ACPI is Present

You can determine whether ACPI functionality exists on your Linux server by using acpi_available. It returns a 0 for true and a 1 for false.

Here is the syntax for acpi_available:

acpi_available

There are no options available for this command.



Tags:is ACPI present, acpi available

acpid - Advanced Confirguration and Power Interface DaemonReturn To Top
clock June 29th, 2008

acpid - Advanced Confirguration and Power Interface Daemon

The linux command acpidv is a daemon that informs user-space programs about ACPI (Advanced Configuration and Power Interface) events, such as battery warnings, power-supply changes, and laptop lid closings.

Here is the syntax:

acpid [options]

Here are the options:

-c directory, --confdir=directory

Set the directory used for configuration files. The default directory is /etc/acpi/events. All files in this directory, except those beginning with a period (.), are parsed as configuration files. Typically, a single file is used for each ACPI event to be acted upon.
In the configuration files, blank lines and those beginning with # are ignored. Other lines are expected to consist of a regular expression and a command to be executed when an ACPI event matches the expression.

-d, --debug
Debug mode: run the daemon in the foreground and send all log output to stderr and stdout, rather than a logfile.

-e filename, --eventfile=filename
Set the file used to find events. Normally this is /proc/acpi/event.

-g group,--socketgroup=group
Set the group ownership of the socket to which acpid publishes events. This allows you to restrict which users on the system can access ACPI event information.

-l filename,--logfile=filename
Set the logfile location. Normally, it is /var/log/acpid.

-m mode,--socketmode=mode
Set the permission mode of the socket. Normally, it is 666, with the sticky bit off.

-s filename,--socketfile=filename
Set the file used to define the socket. Normally, this is /var/run/acpid.socket.

-S,--nosocket
Tells acpid not to open a socket at all. Overrides all other socket options.

-v,--version
Print version information and quit.

-h,--help
Print help message and quit.



Tags:Advanced Confirguration and Power Interface

addr2line - How to Translate Hexadecimal Program Addresses Into FilenamesReturn To Top
clock June 29th, 2008

addr2line - How to Translate Hexadecimal Program Addresses Into Filenames

The addr2line command allows you to translate hexadecimal program addresses into filenames and line numbers for the executable given with the -e option, or a.out if -e is not specified. If addresses are given on the command line, display the filename and line number for each address. Otherwise, read the addresses from standard input and display the results on standard output (useful for use in a pipe). addr2line prints two question marks (??) if it cannot determine a filename, and 0 if it cannot determine the line number. addr2line is used for debugging.

Here is the syntax:

addr2line [options] [addresses]

Here are the options:

-b bfdname, --target=bfdname

Set the binary file format using its binary file descriptor name, bfdname. Use the -h option for a list of supported formats for your system.

-C, --demangle[=style]
Decode (demangle) low-level symbol names into usernames. See the -h help output for a list of styles supported by your compiler.

-e file, --exe=file
Specify the filename of the executable to use. The default filename is a.out.

-f, --functions
Display function names in addition to filenames and line numbers.

-h, --help
Display help information and exit.

-s, --basenames
Strip directories off filenames and show only the basenames.



Tags:translate hexadecimal, addre2line

addresses - Allows You to Connect to a PalmOS Device and Move AddressesReturn To Top
clock June 29th, 2008

addresses  - Allows You to Connect to a PalmOS Device and Move Addresses

The addresses command allows you to connect to the PalmOS device on the specified port, and dump the addresses from the address book to stdout. This is part of the pilot-link package of tools for managing PalmOS devices.

Here is the syntax:

addresses [-p port]



Tags:palmos linux, addresses linux command

Plesk Control Panel - Parallels.com - A Scam - A JokeReturn To Top
clock July 15th, 2008

Plesk Control Panel - Parallels.com - A Scam - A Joke

Listen... I know that we all use server control panels from time to time for their convenience. It cuts down admin time, etc. However, DO NOT use Plesk, Plesk 7.5.2, Plesk 8.x, or Plesk 8.2. Here's why.

The company's entire support operation is fielded out of Russia. They don't give a damn about you, how much you've spent, and what the downtime is they have caused. There are MAJOR incompatibility issues between Plesk 7.5 and Plesk 8.x, specifically with restoring from backups.

It seems as if these geniuses have made it virtually impossible to restore a Plesk 8.x server with a Plesk 7.5 backup. They made a command called backup-convert. It doesn't convert a distributed backup

Forget trying to pickup the phone. They want you to first pay for support, then open a ticket, and then wait 12 - 24 hours to speak to the same idiot Russians.

Someone seriously needs to throw down the gauntlet and say enough is enough. Everyone complains about how bad Microsoft is. Yeah? Well Paralells Support for Plesk 7.5 and Plesk 8.x SUCKs. Save yourself a headache and STAY AWAY from them. If you don't and find yourself in a mission critical situation? Forget about support. They don't give a damn.



Tags:Plesk, Plesk 7.5, Plesk 8.2, Plesk 8.1, Plesk 8.x. Plesk Sucks

Page 1 2


designreviews 2008 © Copyright