Linux based Open Source ERP System - CK-ERP


 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Linux based Open Source ERP System - CK-ERP
# 1  
Old 06-25-2008
Linux based Open Source ERP System - CK-ERP

Hi, folks,

I have developed CK-ERP, which is an open source accounting / MRP / ERP / CRM system that runs on top of multiple middlewares. It provides accounting and back office functionalities to SMEs and utilizes the underlying middleware to administer accounts/groups.

Details about and demo of CK-ERP is available at, CK: Common Knowledge - to be shared and developed by all

Best Regards,
CK
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

CK-ERP (Open Source Edu / ERP / CRM / MRP) v.0.30.1 released

Hi, folks, A new release, v.0.30.1, of CK-ERP, has been posted, at SourceForge.Net, sourceforge.net/projects/ck-erp . New features comprise seven new modules (ck-teacher, ck-counsellor, ck-student, ck-applicant, ck-family, ck-registrar, ck-eduadmin) for deployment within educational... (0 Replies)
Discussion started by: chiukay
0 Replies

2. UNIX and Linux Applications

About CK ERP

Please Can u help me to installand configure CK ERP In UBUNTU Opearating System. I have UBUNTU 7.10 I Try 2 Install Mysql5.0.38 Apache2 Please i have 2 expose this topic in class in 11/03/2008 please can u help me if possible with screen printing and comments. thank u for all :) (1 Reply)
Discussion started by: hakim19
1 Replies
Login or Register to Ask a Question
ACCT(2) 						     Linux Programmer's Manual							   ACCT(2)

NAME
acct - switch process accounting on or off SYNOPSIS
#include <unistd.h> int acct(const char *filename); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): acct(): _BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE < 500) DESCRIPTION
The acct() system call enables or disables process accounting. If called with the name of an existing file as its argument, accounting is turned on, and records for each terminating process are appended to filename as it terminates. An argument of NULL causes accounting to be turned off. RETURN VALUE
On success, zero is returned. On error, -1 is returned, and errno is set appropriately. ERRORS
EACCES Write permission is denied for the specified file, or search permission is denied for one of the directories in the path prefix of filename (see also path_resolution(7)), or filename is not a regular file. EFAULT filename points outside your accessible address space. EIO Error writing to the file filename. EISDIR filename is a directory. ELOOP Too many symbolic links were encountered in resolving filename. ENAMETOOLONG filename was too long. ENFILE The system limit on the total number of open files has been reached. ENOENT The specified filename does not exist. ENOMEM Out of memory. ENOSYS BSD process accounting has not been enabled when the operating system kernel was compiled. The kernel configuration parameter con- trolling this feature is CONFIG_BSD_PROCESS_ACCT. ENOTDIR A component used as a directory in filename is not in fact a directory. EPERM The calling process has insufficient privilege to enable process accounting. On Linux the CAP_SYS_PACCT capability is required. EROFS filename refers to a file on a read-only file system. EUSERS There are no more free file structures or we ran out of memory. CONFORMING TO
SVr4, 4.3BSD (but not POSIX). NOTES
No accounting is produced for programs running when a system crash occurs. In particular, nonterminating processes are never accounted for. The structure of the records written to the accounting file is described in acct(5). SEE ALSO
acct(5) COLOPHON
This page is part of release 3.25 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2008-06-16 ACCT(2)