{"id":147,"date":"2017-07-04T15:30:32","date_gmt":"2017-07-04T15:30:32","guid":{"rendered":"https:\/\/newdelhihosting.co.in\/blog\/?p=147"},"modified":"2024-10-22T10:48:02","modified_gmt":"2024-10-22T10:48:02","slug":"basic-commands","status":"publish","type":"post","link":"https:\/\/www.newdelhihosting.co.in\/blog\/basic-commands\/","title":{"rendered":"A-Z Linux commands"},"content":{"rendered":"<p style=\"text-align: left;\">\u00a0 \u00a0 \u00a0 There are Countless number of commands in linux.In this article,we will introduce you a list of most frequently used Linux Commands with their examples for easy learning.For Basic Refer this link\u00a0<a href=\"https:\/\/newdelhihosting.co.in\/blog\/basic-commands-2\/\">COMMANDS<\/a><br \/>\n[five_sixth]<br \/>\n<strong id=\"a\">A:-<\/strong><\/p>\n<ol>\n<li><strong>adduser\/addgroup<\/strong><\/li>\n<\/ol>\n<p style=\"text-align: left;\">\u00a0 \u00a0 \u00a0 \u00a0To add a new user,you have to follow &#8220;useradd&#8221; or &#8220;adduser&#8221; with &#8216;Username&#8217;.The &#8216;Username&#8217; is a user login name,this is used by user to login into the system.<\/p>\n<pre>useradd user<\/pre>\n<p style=\"text-align: left;\"><strong>2.alias<\/strong><br \/>\nThe bellow command will create an alias called home for \/home\/tecmint\/public_html directory.whenever you type home in the prompt,it will put you in the home\/folder\/public_html<\/p>\n<pre>alias home='home\/folder\/public_html<\/pre>\n<p><strong>3.anacron command<\/strong><br \/>\nIn contrast,cron allows job to run as often as every minute while anacron will remember the job(if system is down)and execute it when system is up.<\/p>\n<p style=\"text-align: left;\"><strong>4.apropos command<\/strong><\/p>\n<p style=\"text-align: left;\">\u00a0 \u00a0 \u00a0It is used to search the man page files in OS.It is particularly useul when searching for commands without knowing their exact names.<\/p>\n<p style=\"text-align: left;\"><strong>5.aptitude command<\/strong><\/p>\n<p style=\"text-align: left;\">\u00a0 \u00a0 \u00a0It is a Powerful text-based interface to Linux package management system.It can be used to install,remove,or upgrade software packages on a system.<\/p>\n<pre>sudo aptitude update<\/pre>\n<p><strong>6.arch command<\/strong><br \/>\narch ia a simple cmd for displaying about machine architecture or hardware name(like uname -m)<br \/>\n<strong>7.arp command<\/strong><\/p>\n<p style=\"text-align: left;\">\u00a0 \u00a0 \u00a0It displays the kernel&#8217;s ipv4 network.ARP stands for Address Resolution Protocol,which is used to find the address of a network neighbor for a given IPV4 address.<\/p>\n<p style=\"text-align: left;\"><strong>8.at command<\/strong><\/p>\n<p style=\"text-align: left;\">\u00a0 \u00a0 \u00a0 It is used to schedule task to run in a future time.It si alternative to cron and anacron.howerver it runs a task once at a given future time without editing \u00a0any config files.<\/p>\n<p>For example,to shutdown the system at 22.50 today,run:<\/p>\n<pre>sudo echo \"shutdown -h now\" | at -m 22:50<\/pre>\n<p><strong>9.atq command<\/strong><br \/>\natq command is used to view jobs in at command queue:<\/p>\n<pre>$ atq<\/pre>\n<p><strong>10.atrm command<\/strong><br \/>\nIt is used to remove\/delete jobs from command queue:<\/p>\n<pre>$ atrm 2<\/pre>\n<p><strong id=\"b\">B:-<\/strong><br \/>\n<strong>1.batch Command \u00a0<\/strong><\/p>\n<p style=\"text-align: left;\">\u00a0 \u00a0 It is also used to schedule task to run a future time,similar to the <strong>&#8220;at command&#8221;<\/strong><\/p>\n<p><strong>2.Basename Command<\/strong><\/p>\n<p style=\"text-align: left;\">\u00a0 \u00a0 \u00a0It helps to print the name os the file of directories in the absolute path<\/p>\n<p><strong>3.bc Command<\/strong><\/p>\n<p style=\"text-align: left;\">\u00a0 \u00a0 \u00a0bc ia a \u00a0simple CLI calculator language which can be used:<\/p>\n<pre>echo 10.05 + 10.00 | bc<\/pre>\n<p><strong>4.bg Command<\/strong><\/p>\n<p style=\"text-align: left;\">\u00a0 \u00a0 \u00a0It is used to send the process to the background.<\/p>\n<pre>tar -czf home.tar.gz.bgjobs<\/pre>\n<p><strong>5.bzip2 Command<\/strong><br \/>\nIt is used to compress or decompress files<\/p>\n<pre>bzip2 -z filename #compress<\/pre>\n<p><strong id=\"c\">C:-<\/strong><br \/>\n<strong>1.cal command<\/strong><br \/>\nCal cmd print a calendar on the standard output<\/p>\n<pre>cal<\/pre>\n<p><strong>2.cat command<\/strong><br \/>\nIt is used to view contents of a file and display it on standard output<\/p>\n<pre>cat file.txt<\/pre>\n<p><strong>3.chgrp command<\/strong><br \/>\nIt is used to change the group ownership of a file.provide the new group name as its first argument and the name of the file as the second argument like this<\/p>\n<pre>chgrp xxx user.txt<\/pre>\n<p><strong>4.chmod command<\/strong><br \/>\nIt is used to change\/update file access permissions like this<\/p>\n<pre>chmod +x sysinfo.sh<\/pre>\n<p><strong>5.chown command<\/strong><br \/>\nchown cmd changed\/updates the user and group ownership of a file like:<\/p>\n<pre>chown -R www-data:www-data \/var\/www\/html<\/pre>\n<p><strong>6.clear command<\/strong><br \/>\nClear cmd lets you clear the terminal screen,simply type<\/p>\n<pre>clear<\/pre>\n<p><strong>7.cmp command<\/strong><br \/>\nIt performs a byte-by-byte comparison of two files like this<\/p>\n<pre>cmp file1 file2<\/pre>\n<p><strong>8.comm command<\/strong><br \/>\nIt is used to compare two sorted files line by line as shown below<\/p>\n<pre>comm file1 file2<\/pre>\n<p><strong>9.cp command<\/strong><br \/>\nIt is used for copying files and directories from one location to another<\/p>\n<pre>cp \/home\/..\/file1 \u00a0\/home\/..\/personal\/<\/pre>\n<p><strong id=\"d\">D:-<\/strong><br \/>\n<strong>1.date command<\/strong><br \/>\nIt displays\/set the system date and time like<\/p>\n<pre>date\r\ndate --set=\"8 JUN 2027 12:00:00\"<\/pre>\n<p><strong>2.df command<\/strong><br \/>\nIT is used to show file system disk space usage a follows<\/p>\n<pre>df -h<\/pre>\n<p><strong>3.diff command<\/strong><br \/>\nIt is used to compare two files line by line.<\/p>\n<pre>diff file1 file 2<\/pre>\n<p><strong>4.dir command<\/strong><br \/>\nIt works like Linux ls command.It list the content of a directory<\/p>\n<pre>dir<\/pre>\n<p><strong>5.dmidecode command<\/strong><br \/>\nIt is a tool for retrieving hardware information of any linux system<\/p>\n<pre>sudo demidecode --type system<\/pre>\n<p><strong>6.du command<\/strong><br \/>\nIt is used to show disk space usage of files present in the directory as well as its sub-directories as follows<\/p>\n<pre>du \/home\/xxxx<\/pre>\n<p><strong id=\"e\">E:-<\/strong><br \/>\n<strong>1.echo command<\/strong><br \/>\nThis command prints a text of line provided to it.<\/p>\n<pre>echo \"This is VPS\"<\/pre>\n<p><strong>2.eject command<\/strong><br \/>\nIt is used to eject removable media such ad DVD\/CD ROM or floppy disk from the system<\/p>\n<pre>eject \/dev\/cdrom<\/pre>\n<p><strong>3.env command<\/strong><br \/>\nIt is list all the current environment variables and used to set them as well.<\/p>\n<pre>env<\/pre>\n<p><strong>4.exit command<\/strong><br \/>\nIt is used to exit a shell like so<\/p>\n<pre>exit<\/pre>\n<p><strong>5.expr command<\/strong><br \/>\nIt is used to an calculate an expression as shown below<\/p>\n<pre>expr 20+30<\/pre>\n<p><strong id=\"f\">F:-<\/strong><br \/>\n<strong>1.factor command<\/strong><br \/>\nIt is used to show the prime factors of a number<\/p>\n<pre>factor 10<\/pre>\n<p><strong>2.find command<\/strong><br \/>\nIt is used to search files in a directory as well as its sub-directoried. It searches for files by attributes such as permission,users,groups,file-type,date,size .<\/p>\n<pre>find \/home\/vps -nme vps.txt<\/pre>\n<p><strong>3.free command<\/strong><br \/>\nIT shows the system memory usage including swap space.&#8221;-h&#8221; options to display output in the human friendly format.<\/p>\n<pre>free -h<\/pre>\n<p><strong id=\"g\">G:-<\/strong><\/p>\n<p><strong>1.grep command<\/strong><br \/>\nThis command searches for special pattern in a file and displays in output lines containing that pattern as follows<\/p>\n<pre>grep 'vps' \u00a0*.txt<\/pre>\n<p><strong>2.group command<\/strong><br \/>\nIt displays all the names of groups a user is a part of like this<\/p>\n<pre>groups<\/pre>\n<p><strong>3.gzip command<\/strong><br \/>\nIt is helps to compress a file,replaces it with one having a .gz extension as shown below<\/p>\n<pre>gzip *.txt \r\ncat file1 filw2 | gzip&gt;*.gz<\/pre>\n<p><strong>4.gunzip command<\/strong><br \/>\nIt expands or restore file compressed with gzip command like<\/p>\n<pre>gunzip *.gz<\/pre>\n<p><strong id=\"h\">H:-<\/strong><\/p>\n<p><strong>1.head command<\/strong><br \/>\nIt is used to show first lines(10 lines by default)of the specified file or stdin to the screen<\/p>\n<pre>ps -eo pid,ppid,cmd,%mem,%cpu --sort=-%mem | head<\/pre>\n<p><strong>2.histroy command<\/strong><br \/>\nIt is used to getinfo about command executed by a user<\/p>\n<pre>history<\/pre>\n<p><strong>3.hostname command<\/strong><br \/>\nIt is used to print or set system hostname in linux<\/p>\n<pre>hostname\r\nhostname NEW_HOSTNAME<\/pre>\n<p><strong>4.hostnameectl command<\/strong><br \/>\nIt is used to print or modify the system hostname and related settings<\/p>\n<pre>hostnamectl\r\nsudo hostnamectl set-hostname NEW_HOSTNAME<\/pre>\n<p><strong>5.hwclock<\/strong><br \/>\nIt is used to probe for the hardware present in a linux system like<\/p>\n<pre>sudo hwclock\r\nsudo hwclock --set --date 8\/06\/2017<\/pre>\n<p><strong>6.hwinfo command<\/strong><\/p>\n<pre>hwinfo<\/pre>\n<p><strong id=\"i\">I:-<\/strong><br \/>\n<strong>1.id command<\/strong><br \/>\nIt shows user and group information for the current ise name as shown below<\/p>\n<pre>id user<\/pre>\n<p><strong>2.ifconfig command<\/strong><br \/>\nIt s used to configure a linux system network interfaces.It is used to configure,view and control network interfaces<\/p>\n<pre>$ ifconfig\r\n$ sudo ifconfig eth0 up\r\n$ sudo ifconfig eth0 down\r\n$ sudo ifconfig eth0 172.16.25.125<\/pre>\n<p><strong>3.ionice command<\/strong><br \/>\nIt is used to set or view process I\/O scheduling class and priority of the specified process<\/p>\n<pre>$ ionice -c 3 rm \/var\/logs\/syslog\r\n<\/pre>\n<p><strong>4.iostat command<\/strong><\/p>\n<pre>iostat<\/pre>\n<p><strong>5.ip comand<\/strong><\/p>\n<pre>$ sudo ip addr add 192.168.56.10 dev eth1<\/pre>\n<p><strong>6.ip tables<\/strong><\/p>\n<pre>$ sudo iptables -L -n -v<\/pre>\n<p><strong>7.iw command<\/strong><\/p>\n<pre>$ iw list<\/pre>\n<p><strong>8.iwlist command<\/strong><\/p>\n<pre>$ iwlist wlp1s0 scanning<\/pre>\n<p><strong id=\"k\">K:-<\/strong><\/p>\n<p><strong>1.kill command<\/strong><br \/>\nIt is used ti kill a process using PID(Process ID) by sending a signal to it.<\/p>\n<pre>kill -15 pid<\/pre>\n<p><strong>2.killall command<\/strong><br \/>\nIt is used to kill process by its name<\/p>\n<pre>killall firefox<\/pre>\n<p><strong>3.kmod command<\/strong><br \/>\nIt is used to list all currently loaded modules.<\/p>\n<pre>kmod list<\/pre>\n<p>&nbsp;<\/p>\n<p><strong id=\"l\">L:-<\/strong><br \/>\n<strong>1.last command<\/strong><br \/>\nIt display a listing of last logged users.<\/p>\n<pre>last<\/pre>\n<p><strong>2.locate command<\/strong><br \/>\nIt is used to find a file by name<\/p>\n<pre>locate file1 dir1<\/pre>\n<p><strong>3.login command<\/strong><br \/>\nIt is used to create a new session with the system.<\/p>\n<pre>sodo login<\/pre>\n<p><strong>4.ls command<\/strong><br \/>\nIt is used to list contents of directory.<\/p>\n<pre>ls -l file1\r\n<\/pre>\n<p><strong>5.lshw command<\/strong><br \/>\nIt is used to get detailed information of hardware configuration of the machine.<\/p>\n<pre>sudo lshw\r\n<\/pre>\n<p><strong>6.lscpu command<\/strong><br \/>\nIt is used to dislpay system&#8217;s CPU architecture information like cpu,threads,cores.<\/p>\n<pre>lscpu<\/pre>\n<p><strong id=\"m\">M:-<\/strong><br \/>\n<strong>1.man command<\/strong><br \/>\nIt is used to view the manual pages for commands\/programs like<\/p>\n<pre>man du\r\nman df<\/pre>\n<p><strong>2.mkdir command&#8217;more command<\/strong><br \/>\nIt is used to create single or more directories.<\/p>\n<pre>mkdir dirname<\/pre>\n<p><strong>3.mv command<\/strong><br \/>\nIt is useful to move a file from one location to another.<\/p>\n<pre>mv file.sh file1.sh<\/pre>\n<p><strong id=\"n\">N:-<\/strong><br \/>\n<strong>1.nano command<\/strong><br \/>\nIt is a popular,free and friendly text editor for linux.<\/p>\n<pre>nano file.txt<\/pre>\n<p><strong>2.nproc command<\/strong><br \/>\nIt shows the number of prcessing units present to the current process.<\/p>\n<pre>nproc<\/pre>\n<p><strong id=\"o\">O:-<\/strong><\/p>\n<ol>\n<li><strong>openssl command<\/strong><\/li>\n<\/ol>\n<p>It will create an archive of all the files in the current directory and encrypt the contents of the archive file.<\/p>\n<pre>$ tar -czf - * | openssl enc -e -aes256 -out backup.tar.gz<\/pre>\n<p><strong id=\"p\">P:-<\/strong><br \/>\n<strong>1.passwd command<\/strong><br \/>\npasswd command is used to create and update passwords for user accounts.Note that normal system users may only change the password of their own account, while root may modify the password for any account.<\/p>\n<pre>passwd vps<\/pre>\n<p><strong>2.pidof command<\/strong><br \/>\npidof displays the process ID of a running program\/command.<\/p>\n<pre>pidof init<\/pre>\n<p><strong>3.ping command<\/strong><br \/>\nping command is used to determine connectivity between hosts on a network<\/p>\n<pre>ping google.com<\/pre>\n<p><strong>4.pwd command<\/strong><br \/>\npwd command displays the name of current\/working directory as below.<\/p>\n<pre>pwd<\/pre>\n<p><strong id=\"r\">R:-<\/strong><br \/>\n<strong>1.reboot command<\/strong><br \/>\nreboot command reboot a system as follows<\/p>\n<pre>reboot<\/pre>\n<p><strong>2.rename command<\/strong><br \/>\nrename command is used to rename many files at once. If you have a collection of files with \u201c.html\u201d extension and you want to rename all of them with \u201c.php\u201d extension, you can type the command below.<\/p>\n<pre>$ rename 's\/\\.html$\/\\.php\/' *.html<\/pre>\n<p><strong>3.rm command<\/strong><br \/>\nrm command is used to remove files or directories<\/p>\n<pre>$ rm file1\r\n$ rm -rf my-files<\/pre>\n<p><strong>4.rmdir command<\/strong><br \/>\nrmdir command helps to delete\/remove empty directories<\/p>\n<pre>$ rmdir \/backup\/all<\/pre>\n<p><strong id=\"s\">S:-<\/strong><br \/>\n<strong>1.shutdown command<\/strong><br \/>\nIt schedules a time for the system to be powered down.<\/p>\n<pre>shutdown --poweroff<\/pre>\n<p><strong>2.sleep command<\/strong><br \/>\nIt is used to delay for specified amount of time<\/p>\n<pre>$ check.sh; sleep 5; sudo apt update\r\n<\/pre>\n<p><strong>3.split command<\/strong><br \/>\nIt is used to split the large file in to small file<br \/>\n<strong>4.stat command<\/strong><br \/>\nIt is used to show a file or file system status like this<\/p>\n<pre>stat file1<\/pre>\n<p><strong id=\"t\">T:-<\/strong><br \/>\n<strong>1.tac command<\/strong><br \/>\nThis command concatenates and displays files in reverse.Its simply prints each file to standard output,showing last line first.<\/p>\n<pre>tac file.txt<\/pre>\n<p><strong>2.tail command<\/strong><br \/>\nIt is used to display the last(default 10 lines)line of each file to standard output<br \/>\n<strong>3.talk command<\/strong><br \/>\nIt is used to talk to another system\/network user.<\/p>\n<pre>$ talk person [name]<\/pre>\n<p><strong>4.tar command<\/strong><br \/>\nIt is for archiving file in linux<\/p>\n<pre>\u00a0$ tar -czf home.tar.gz .<\/pre>\n<p><strong>5.time command<\/strong><br \/>\nIts runs programs \u00a0system resource usage<\/p>\n<pre>$ time wc \/etc\/hosts<\/pre>\n<p><strong>6.touch command<\/strong><br \/>\nIt is used to create a file.<\/p>\n<pre>touch file.txt<\/pre>\n<p><strong id=\"u\">U:-<\/strong><br \/>\n<strong>1.uname command<\/strong><br \/>\nIt display system information such us OS,Hostname,Kernel name,releases and etc.<\/p>\n<pre>uname<\/pre>\n<p><strong>2.uniq command<\/strong><br \/>\nIt displays repeated lines from standard input.<br \/>\n<strong>3.uptime command<\/strong><br \/>\nIt shows how long the system has been running<\/p>\n<pre>uptime<\/pre>\n<p><strong>4.users command<\/strong><br \/>\nIt shows the usernames of the users logged into the current host like<\/p>\n<pre>users<\/pre>\n<p><strong id=\"v\">V:-<\/strong><br \/>\nvim\/vi command<br \/>\nIt is used to edit all kind of plain text and program files.<\/p>\n<pre>vim file<\/pre>\n<p><strong id=\"w\">W:-<\/strong><br \/>\n<strong>w command<\/strong><br \/>\nIt display the system uptime,load avf and information about the users currently on the machine like<\/p>\n<pre>w<\/pre>\n<p><strong>wall command<\/strong><br \/>\nIt is used to send\/displays a messages to all the users on the system as follows<\/p>\n<pre>wall \"Hai all\"<\/pre>\n<p><strong>watch command<\/strong><br \/>\nIt is used to watch changes to a file\/directory.<\/p>\n<pre>watch -d ls -l<\/pre>\n<p><strong>wc command<\/strong><br \/>\nIt is used to display newline,word,and byte counts for each file specified.<\/p>\n<pre>wc filename<\/pre>\n<p><strong>wget command<\/strong><br \/>\nIt is used to download files from the web.<\/p>\n<pre>wget <u><a href=\"http:\/\/wordpress.org\/latest.tar.gz\" target=\"_blank\" rel=\"noopener\">http:\/\/wordpress.org\/latest.tar.gz<\/a><\/u><\/pre>\n<p><strong>which command<\/strong><br \/>\nIt display the absolute path of files<\/p>\n<pre>which who<\/pre>\n<p><strong>who command<\/strong><br \/>\nIt shows the information about the user.<\/p>\n<pre>who<\/pre>\n<p><strong>whereis command<\/strong><br \/>\nIt helps up locate the binary,source and manual files for commands<br \/>\n<strong id=\"x\">X:-<\/strong><\/p>\n<ol>\n<li><strong>xargs command<\/strong><\/li>\n<\/ol>\n<p>It is useful utility for reading items from the standard input.<\/p>\n<p><strong id=\"y\">Y:-<\/strong><\/p>\n<ol>\n<li><strong>yes command<\/strong><\/li>\n<\/ol>\n<p>It is uesd to display a string repeatedly until when terminated or killed using &#8220;cntrl+C&#8221;as follows<\/p>\n<pre>$ yes \"This is-Learn<\/pre>\n<p><strong>2.youtube-dl command<\/strong><br \/>\nIt is light weight command line programe t download videos<\/p>\n<pre>$ youtube-dl --list-formats https:\/\/www.youtube.com\/watch?v=iR<\/pre>\n<p><strong id=\"z\">Z:-<\/strong><br \/>\n<strong>1.zcmp\/zdiff command<\/strong><br \/>\nIt is used to compare compressed files as shown below.<\/p>\n<pre>$ zcmp domain-list.txt.zip basic_passwords.txt.zip\r\n$ zdiff domain-list.txt.zip basic_passwords.txt.zip<\/pre>\n<p><strong>2.zip command<\/strong><br \/>\nIt is silmple and easy to use utility used to package and compress files<\/p>\n<pre>\"tar cvzf \u00a0*.tar.gz dirname\/\"<\/pre>\n<p><strong>3.zz command<\/strong><br \/>\nThis offers quick access to files and directories in linux.<\/p>\n<pre>zz<\/pre>\n<p>[\/five_sixth]<strong>On this Page<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td><a href=\"#a\">A<\/a><\/td>\n<td><a href=\"#b\">B<\/a><\/td>\n<td><a href=\"#c\">C<\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"#d\">D<\/a><\/td>\n<td><a href=\"#e\">E<\/a><\/td>\n<td><a href=\"#f\">F<\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"#g\">G<\/a><\/td>\n<td><a href=\"#h\">H<\/a><\/td>\n<td><a href=\"#i\">I<\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"#k\">K<\/a><\/td>\n<td><a href=\"#l\">L<\/a><\/td>\n<td><a href=\"#m\">M<\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"#n\">N<\/a><\/td>\n<td><a href=\"#o\">O<\/a><\/td>\n<td><a href=\"#p\">P<\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"#q\">R<\/a><\/td>\n<td><a href=\"#r\">S<\/a><\/td>\n<td><a href=\"#s\">T<\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"#t\">U<\/a><\/td>\n<td><a href=\"#u\">V<\/a><\/td>\n<td><a href=\"#w\">W<\/a><\/td>\n<\/tr>\n<tr>\n<td><a href=\"#x\">X<\/a><\/td>\n<td><a href=\"#y\">Y<\/a><\/td>\n<td><a href=\"#z\">Z<\/a><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00a0 \u00a0 \u00a0 There are Countless number of commands in linux.In this article,we will introduce you a list of most frequently used Linux Commands with their examples for easy learning.For Basic Refer this link\u00a0COMMANDS [five_sixth] A:- adduser\/addgroup \u00a0 \u00a0 \u00a0 \u00a0To add a new user,you have to follow &#8220;useradd&#8221; or &#8220;adduser&#8221; with &#8216;Username&#8217;.The &#8216;Username&#8217; is&#8230;<\/p>\n","protected":false},"author":1,"featured_media":448,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"categories":[12],"tags":[],"class_list":["post-147","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-vps"],"jetpack_featured_media_url":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-content\/uploads\/2017\/07\/a-z-1.jpg","_links":{"self":[{"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/posts\/147"}],"collection":[{"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/comments?post=147"}],"version-history":[{"count":68,"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/posts\/147\/revisions"}],"predecessor-version":[{"id":712,"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/posts\/147\/revisions\/712"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/media\/448"}],"wp:attachment":[{"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/media?parent=147"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/categories?post=147"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.newdelhihosting.co.in\/blog\/wp-json\/wp\/v2\/tags?post=147"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}