Cloud Network

Networking | Support | Tricks | Troubleshoot | Tips

Buymecoffe

Buy Me A Coffee

Thursday, May 4, 2017

Create a Disk Partition

May 04, 2017
Create a Disk Partition
In this Lab You Will be Learn About Partitions
How to Create a Disk Partitions in Ubuntu Desktop or Server 14.04, 15.04, 16.04 & 17.04. Same in Linux Mint 17.3 and Debian 8.
  1.  How to Check a Partition in Ubuntu
  2.  To Update the Kernel Without Restarting
  3.  Format the Partitions by Using File System
  4.  Create a Folder and Mount the Partition to Use
  5.  Write the Data Inside the Partition
Step1 :- How to Check a Partition Size, Device in Ubuntu.
Check How Many Partitions are there






















Step2 :-  To Update the Kernel Without Restarting



Step3 :-  Format the Partitions by Using File System
Step4 :-  Create a Folder and Mount the Partition to Use

 Step5 :-  Write the Data Inside the Partition



















Wednesday, May 3, 2017

User Administration

May 03, 2017
User Administration
How to Create a User Administration Account
How to Create a User Administration Account in Ubuntu, CentOS
User Administration

In this Tutorial You Will Be Learn About the Following ....
  1. New User with New & Existing Parameters
  2. Comment
  3. Shell
  4. View & New Properties
  5. Delete User With & Without Home Directory
  6. Change Login Name
  7. Lock Account and 
  8. Unlock Account
Click Here to Learn About:- Basic Commands of Linux

Click Here to Learn About:- Vi Editor Commands

Step1 :- Create a User itcloudnet with Following Parameters

Step2 :- 

Step3 :-

Step4 :- 

Step10 :-

Step11 :-

Step12 :- 

Visual Interface (VI) Editor

May 03, 2017
Visual Interface (VI) Editor

Monday, May 1, 2017

Basic Commands of Linux

May 01, 2017
Basic Commands of Linux
Redhat Linux Administration (Full Course, Training & Tutorial)

Step1:- How to Check the Present Working Directory (pwd)
          # pwd

Step2:- How to show the contents of a directory (folder)
          # ls

Step3:- How to See Full Permission of a directory (folder)
          # ls  -l

Step4:- How to See all contents including hidden files of a directory (folder)
          # ls -a


Step5:- How to See Tree Structure of nested directories
          # ls  -R /opt

Step6:-  How to See a file starting from i letter
           # ls  i*

Step7:- How to See a file whose length is 8 characters
          # ls  ????????

Step8:- How to create a file
          # cat > itcloudnet1

Step9:- How to see file content
          # cat  itcloudnet1

Step10:- How to append a file
           # cat  >> itcloudnet1
           # cat  itcloudnet1 itcloudnet2  >>  itcloudnet3
           # cat  itcloudnet3

Step11:- How to create a file using touch command
            # touch cloudnetwork cloudnetwork1 cloudnetwork2
            # ls

Step12:- How to creating a single directory
             # mkdir  ubuntu
             # ls

Step13:- How to creating multiple directory
             # mkdir ubuntu ubuntu1 ubuntu2
             # ls

Step14:- How to create nested directories
             # mkdir -p user1/user2/user3
             # cd user1/
             # ls
             # cd user2/
             # ls
Step15:- How to see the tree structure
             # ls -R user1/

Step16:- How to change a directory
             # cd ubuntu
             # cd ..
             # cd ../..
             #cd -
             # pwd
             # cd
             # pwd

Step17:- How to remove files
             # rm itcloudnet
             # ls

Step18:- How to remove an empty directory
             # rmdir ubuntu
             # ls

Step19:- How to remove a directory
             # rm -rf ubuntu
             # ls

Step20:- How to copy files
             # cp ubuntu ubuntu1
             # cat ubuntu1

Step21:- How to copy folders
             # sudo cp -r ubuntu2  /home/username/
             # ls /home/username

Step22:- How to rename directories and files
             # mv ubuntu3 u4
             # ls
Step23:- How to move directories and files
            # sudo mv ubuntu2  /opt
            # ls
            # cd /opt
Step24:- How to search a word from single or multiple file's
            # grep itcloudnet /etc/passwd  /etc/group  /etc/shadow
            # cat /etc/passwd | grep itcloudnet

Step25 :- How to see the type of file
             # file *

Step26 :- How to view the date
             # date
             # date -s"tus may 02 05:25:18 ist 2017"

Step27 :- How to view the calendar for completed year
             # cal 05 2017

Step28 :- How to  take help of command
              # man  mkdir

Step29 :- How to see the content screen wise
             # ls -l  /bin  |  less