South African sister companies praise Linux-based accounting program


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News South African sister companies praise Linux-based accounting program
# 1  
Old 07-29-2008
South African sister companies praise Linux-based accounting program

07-29-2008 01:00 PM
Gospel Direct and Maranatha Record Co., sister companies based in South Africa, have exercised their faith in a Linux-based accounting program.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Web Development

Tidal Stations - South America

Tidal Stations - South America https://www.unix.com/members/1-albums112-picture633.png (0 Replies)
Discussion started by: Neo
0 Replies

2. Shell Programming and Scripting

Program based on hostname

Hi Can you help me get the script for below requirement. when i run below script ./script QM hostname script should be working in below here inputs are QM and hostname by taking inputs it should work like below QM=$1 if QM name ends with 1 $4 should be 51431 ends with ... (4 Replies)
Discussion started by: darling
4 Replies

3. UNIX for Advanced & Expert Users

Transition from Windows-based network to Linux-based

I am looking to make the switch from a Windows based network to a Linux (preferably Ubuntu, because I used it the most) based one. Currently the network includes a Windows 2003 server which acts as a domain controller and file server, a network shared printer (Canon 2300N) and 7 clients running... (2 Replies)
Discussion started by: larynx
2 Replies
Login or Register to Ask a Question
acct(2) 							System Calls Manual							   acct(2)

NAME
acct - Enables and disables process accounting SYNOPSIS
int acct ( char *path ); PARAMETERS
Specifies a pointer to the pathname of the file, or specifies a null pointer. DESCRIPTION
The acct() function enables and disables UNIX process accounting. When enabled, process accounting produces an accounting record on behalf of each terminating process. The path parameter specifies the pathname of the file to which an accounting record is written. When the path parameter is 0 (zero) or a null value, the acct() function disables the accounting routine. If the path parameter refers to a symbolic link, the acct() function writes records to the file pointed to by the symbolic link. If Network File System is installed on your system, the accounting file can reside on another node. To ensure accurate accounting, each node must have its own accounting file, which can be located on any node in the network. The calling process must have superuser privilege to enable or disable process accounting. RETURN VALUES
Upon successful completion, the acct() function returns a value of 0 (zero). Otherwise, a value of -1 is returned and errno is set to indicate the error. ERRORS
If the acct() function fails, errno may be set to one of the following values: The calling process does not have appropriate system privi- lege. The file named by the path parameter does not exist. The file named by the path parameter is not an ordinary file. Write permission is denied for the named accounting file. The named file resides on a read-only file system. RELATED INFORMATION
Functions: exit(2), sigaction(2), sigvec(2), expacct(3), raise(3) delim off acct(2)