Unix Operating System
The Kernel
The kernel of UNIX is the hub of the operating system:
- it allocates time and memory to programs
- handles the filestore
- communications in response to system calls
The Shell
Commands
ls -la
: show owner, group, bytes, last modification, hidden & namecd My\ /Music
: cd My Musiccat temp.txt
: show contents of filechmod -options <FILE NAME>
: change permisions of filecat temp.txt | grep hound
: in temp.txt
, search for hound
ls | grep apple
: search files with apple in filename