Linux Demos: Programmer's Corner

This entire sub-domain is a private effort of free information.
There are no cookies, no advertisements, and nothing is for sale.
non-code Linux resources can be found here
Caveat:
  1. The information presented here is intended for educational use by qualified Linux programmers.
  2. The information presented here is provided free of charge, as-is, with no warranty of any kind.
  3. To the best of my knowledge, the programs presented here compile, link and run properly. Please send me an email if they do not (I only support this stuff in my spare time).
Updated: 2024-04-12

Introduction

Both the C and C++ programming languages are designed to be portable BUT I noticed that some C applications written for other platforms (Unix, Windows, OpenVMS) cannot always be moved to Linux with zero effort. This is especially true if moving from cc (c compile) to gcc (gnu compiler collection). Hopefully the information provided here will help others. 

General

File Notes
hello_linux_world.c hello world in both 32 and 64 bits
flock.c Linux finally has a system-wide lock manager with queuing
gcc-32-bit-compile-on-64-bit-rhel.txt Native 64-bit compiles are easy; 32-bit compiles are less so
procmail (coming soon) a few demo scripts to intercept then process email (coming soon)
sequencer.c a helper application for use with procmail and munpack
crc8_demo_100.c create a static data table
crc8_demo_101.c use the table to generate a crc8 for specific data
mysql_demo_01.c mysql demo to test building an app in c (gcc)
mysql_demo_02.cpp mysql demo to test building an app in c++ (g++)

GnuCOBOL

gSOAP

File Notes
gmtserver.cpp gmtclient.cpp (from the old currenttime demo in samples)
gmtserver.cpp (works from Apache cgi-bin without a plugin)
calcserver.c calclient.c (from the old calc demo in samples)
calcserver.c
  • calcserver (works interactively from the command line)
  • calcserver2 (works from Apache cgi-bin without a plugin)
  • calcserver3.so (works from Apache-2.x via the mod_gsoap plugin)
build Apache from sources
(coming)
shows how to build a second copy of Apache so you can use apxs rather than gcc
  • apxs is a tool required to produce mod_gsoap.so for Apache-2.x
  • apxs is a tool required to build calcserver3.so for Apache-2.x
note: you do not need to build second Apache on Linux.
Typing: "yum install httpd-devel.x86_64" will provide apxs
click here for a detailed overview

Back to Home
Neil Rieck
Waterloo, Ontario, Canada.