phenomeno / apue

Advanced Programming in the UNIX Environment notes + c programs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Developer instructions

  • compile C program
gcc -Wall filename.c -o filename
  • lookup functions
man getpid
  • find header files
ls /usr/include/signal.h
find /usr/include/ -name types.h
  • check ubuntu version
lsb_release -a
  • check linux version
uname -r
  • adjust system limits
# as root
sudo bash
ulimit -a

About

Advanced Programming in the UNIX Environment notes + c programs


Languages

Language:C 100.0%