Linux operation commands
Guides and help use Linux's basic control and Linux operation commands
Step by step example use Linux's basic orders
When you said about using Linux as Operating System, at least you must few known of Linux directive's basic which could help you doing configuration, preparation and manage Linux's box you use Linux's shell.
This reason is basic Linux commands step by step with example guide design like this is to explain more clearly what is this Linux's order can perform, and easier for us look for one order duly used to do a specific job. Under were several of collection for Linux's directive and Unix's directive presented with step by step examples.
ps ax # process status
ps ax | grep httpd # to show only httpd included list
top # computer status
ls -la # file list
cd directory # change directory
mkdir name # make directory
rmdir name # remove directory
pwd # present working directory
chown wonname fname # change owner
chgrp grpname fname # change group
chmod 777 fname # change permission mode
cat fname # show file content
cat fname | less # when the list is long(’q’ to end)
cp ofname dfname # copy file
mv ofname dfname # move file
rm file # remove file
rm -rf dname # remove directory recursively forced
find / -name filename # find
touch fname # make new file
useradd -d dir -g grp uname # add user specifing dir, grp
passwd uname # change user password
userdel uname # delete user
groupadd gname # add group
tar zxvf fname # extend complessed file
./configure # configure software
make # compile
make install # install
man item # manual for item
ifconfig # network interface confirmation
ping 172.16.160.111 # answer request(icmp)
nslookup # DNS confirmation(name resolution)
- 224 reads
Recent popular content



















