Helsinki Finnish Linus Torvalds Linux Kernel
Helsinki Finnish Linus Torvalds Linux Kernel
Experiment No. - 1
Aim - History of linux.
04996402814
27/1/2016
Experiment No. - 2
Aim- To study the architecture of Linux.
Users System users, who interacts directly with the system and application
softwares.
04996402814
27/1/2016
Experiment No. 3
Aim - To study basic features of linux.
Open Source - Linux source code is freely available and it is community based
development project. Multiple teams works in collaboration to enhance the
capability of Linux operating system and it is continuously evolving.
Linux is fast, free and easy to use, power laptops and servers around the world. .
Live CD/USB: Almost all Linux distributions have Live CD/USB feature by
which user can run/try the OS even without installing it on the system.
Command
Description
Usage
man
displayreferencemanualpages
man cmd_name
BasicOptions:
-k locatescommandsbykeywordlookup
-s specifiesachapterorsectiontolookin
-u basicusagedescription
man -k keyword
man -schap# cmd_name
Application Support: Linux has its own software repository from where users
can download and install thousands of applications just by issuing a command
in Linux Terminal or Shell. Linux can also run Windows applications if needed.
04996402814
27/1/2016
Experiment No. - 4
Aim - To study various commands in linux
cat
concatenateanddisplayargumentsto
standardoutput
cat file
cd
changedirectory
cd path
BasicOption:
-hbasicusagedescription
cd -h
copyfiles
cp fromfile tofile
cp
ls
listthecontentsofadirectory
ls options files(s)
BasicOptions:
-aallfiles
-dlistdirectoriesnottheircontents
-Fmarkdirectorieswith/,executablefiles
with*,symboliclinkswith@,andsockets
with=
-llonglistingshowingprotections,number
oflinks,owner,size,andtimeoflast
modification
-ssizeinkilobytes
--helpbasicusagedescription
mkdir
createanewsubdirectoryinthecurrent
directory
mkdir subdir
createanewsubdirectory,intheindicated
targetdirectory
mv fromfile tofile
mv
moveorrenamefiles
pwd
displaythecurrentdirectory'sfullpathname
pwd
rm
remove(delete)files
rm file
BasicOptions:
-iinteractive,askbeforeremoval
-rrecursive,descendintosubdirectories
removingfilesandthencontaining
rm -i file
rm -r directory
directories.
touch
wc
displaythenumberoflines,wordsand
charactersinafile
wc filename
04996402814