To Learn how to work in Dos
To create folder in Dos which we called directory
C:\> md and put the folder Name
To change the directory
c:\ >cd directory name
To Delete a file
C:\> rd the file name
To Delete Directory
C:\> del directory name
To Create Subdirectory
C:\>directory name \md subdirectory name
To Create File within a Directory
C:\> copy con filename
Copy file within the subdirectory
C:\ directory name\subdirectoryname > copy con filename.txt
Move file you created to another location
C:\directory name> move filename.txt the directory name
To Rename File
C:\directory> ren filename.txt filename.txtTo see all the directory you created
C:\> dirTo Learn how to work in script shell
you login as a super user which is intended for administrative use only
su root Enter
Add Users
sudo adduser Username
Create Group
Sudo groupadd groupname
Add user to a Group
Sudo adduser username groupnameCreate password for user
sudo passwd usernameTo list member of a group
Cat /etc/groupTo see All of the User
Cat /etc/passwd