- Kali Linux commands the basic you must learn
- Kali Linux commands list for Beginners Updated 2021
- Frequently used Kali Linux Commands
- Important Kali Linux Commands List Part 1 in Hindi
- Important Kali Linux Commands List Part 2 in Hindi
- Overview of Kali Linux commands:
- How to finish Kali Linux using Gap?
- Kali Linux commands Categories:
- System Commands in Kali Linux:
- A to Z Basic Kali Linux commands in 2020:
- 1# Arch Command:
- 2# Arp Command:
- #3 arping Command
- 4# Aspell Command:
- 5# awk command”
- 6# bg command
- 7# basename command
- 8# Bzip2
- 9# cal command:
- 10# cat command
- 11# cksum command
- 12# Clear command
- 13# cmp Command:
- 14# comm Command
- 15# cp command:
- 16# Crontab Command:
- 16# cut Command:
- 16# Date Command:
- 17# dc command:
- 18# Dd command
- 19# df command
- 20# diff command
- 21# diff3 command
- 22# dig command
- 23# dir Command
- 24# echo command:
- 25# Egrep Command
- 26# Eject Command
- 27# ethtool Command
- 28# whoami command:
- 29# pwd command:
- 30# ls command:
- 31# cd command:
- 32# mkdir command:
- 33# mv command:
- 34# rm command:
- System Basic Kali Linux commands
- 35# uname command:
- 36# uptime command:
- 37# users command:
- 38# Less Command
- 39#More Command
- 40# Sort command
- 41# VI Command
- 42# Free command
- 43# history command:
- System Advanced Kali Linux commands
- 44#: Find Command
- 45# apt-get command:
- #46 dpkg command
- #47 Du Command
- #48 Curl command
- #49 Adduser command
- #50 passwd command To change password
- #51 usermod command
- #52 lsb_release command to check the version of Kali Linux
- #53 SCP command
- #54 unzip command
Kali Linux commands the basic you must learn
Last Updated on May 19, 2021 by Kalitut 7 Comments
New to Kali Linux ? or to Linux at all …
Welcome to this new experience I’m sure you will enjoy once you start playing with your terminal … Kali Linux commands are nothing special from Linux commands they are the same so what you are going to learn here will work in every Linux system you may use, try over and over we are learning at the end and this is the most important part of it,
Commands are almost everything in Linux so you must learn at least the basic commands we are not in Windows to click we are in Linux to type!
so here is a list for some of the basic commands for Kali Linux
kali linux commands
you are looking for Kali Linux Chart Sheet Check this article
let’s start with details of commands
1.Command: ls
The command “ls” stands for (List Directory Contents), List the contents of the folder, be it file or folder, from which it runs. The most common options are -a (all files) and -l (long or details)
Tab completion is supported and may be configured with .inputrc
When output to file the files are listed one per line.
By default, colour is not used to distinguish types of files. That is equivalent to using –color=none.
Using the –color option without the optional WHEN argument is equivalent to using –color=always.
With –color=auto, color codes are output only if standard output is connected to a terminal (tty).
A.Command “ls -a“, list the content of folder, including hidden files the hidden files is colored white
- Command: lsblk
The “lsblk” stands for (List Block Devices), print block devices by their assigned name (but not RAM) on the standard output in a tree-like fashion.
The “lsblk -l” command list block devices in ‘list‘ structure (not tree like fashion).
Note: lsblk is very useful and easiest way to know the name of New Usb Device you just plugged in, especially when you have to deal with disk/blocks in terminal.
3.sudo Command
The “sudo” (super user do) command allows a permitted user to execute a command as the superuser or another user, as specified by the security policy in the sudoers list.
sudo add-apt-repository ppa:tualatrix/ppa
Note: sudo allows user to borrow superuser privileged, while a similar command ‘su‘ allows user to actually log in as superuser. Sudo is safer than su.
It is not advised to use sudo or su for day-to-day normal use, as it can result in serious error if accidentally you did something wrong, that’s why a very popular saying in Linux community is:
“To err is human, but to really foul up everything, you need root password.”
4.mkdir Command
The “mkdir” (Make directory) command create a new directory with name path. However is the directory already exists, it will return an error message “cannot create folder, folder already exists”.
mkdir Kalitut
Note: Directory can only be created inside the folder, in which the user has write permission. mkdir: cannot create directory `Kalitut‘: File exists
(Don’t confuse with file in the above output, you might remember what i said at the beginning – In Linux every file, folder, drive, command, scripts are treated as file).
5.chmod Command
The Linux “chmod” command stands for (change file mode bits). chmod changes the file mode (permission) of each given file, folder, script, etc.. according to mode asked for.
There exist 3 types of permission on a file (folder or anything but to keep things simple we will be using file).
Read (r)=4
Write(w)=2
Execute(x)=1
So if you want to give only read permission on a file it will be assigned a value of ‘4‘, for write permission only, a value of ‘2‘ and for execute permission only, a value of ‘1‘ is to be given. For read and write permission 4+2 = ‘6‘ is to be given, ans so on.
Now permission need to be set for 3 kinds of user and usergroup. The first is owner, then usergroup and finally world.
rwxr-x–x abc.sh
Here the root’s permission is rwx (read, write and execute).
usergroup to which it belongs, is r-x (read and execute only, no write permission) and
for world is –x (only execute).
To change its permission and provide read, write and execute permission to owner, group and world.
chmod 777 abc.sh
only read and write permission to all three.
chmod 666 abc.sh
read, write and execute to owner and only execute to group and world.
chmod 711 abc.sh
Note: one of the most important commands useful for sysadmin and user both. On a multi-user environment or on a server, this command comes to rescue, setting wrong permission will either make a file inaccessible or provide unauthorized access to someone.
6.tar Command
The “tar” command is a Tape Archive is useful in creation of archive, in a number of file format and their extraction.
Note: A ‘tar.gz‘ means gzipped. ‘tar.bz2‘ is compressed with bzip which uses a better but slower compression method.
7.cp Command
The “copy” stands for (Copy), it copies a file from one location to another location.
8.mv Command
The “mv” command moves a file from one location to another location.
Note: mv command can be used with wildcard characters. mv should be used with caution, as moving of system/unauthorised file may lead to security as well as breakdown of system.
9.pwd Command
The command “pwd” (print working directory), prints the current working directory with full path name from terminal.
Note: This command won’t be much frequently used in scripting but it is an absolute life saver for newbie who gets lost in terminal in their early connection with nux. (Linux is most commonly referred as nux or nix).
10.cd Command
Finally, the frequently used “cd” command stands for (change directory), it change the working directory to execute, copy, move write, read, etc. from terminal itself.
Note: cd comes to rescue when switching between directories from terminal. “Cd
” will change the working directory to user’s home directory, and is very useful if a user finds himself lost in terminal. “Cd ..” will change the working directory to parent directory (of current working directory).
Now I will leave you with few more commands
File Operations:
pwd Print Name Of Current/Working Directory
The pwd is an acronym for print working directory. The pwd command is considered as one of the most frequently used commands on Linux, AIX, HP-UX, *BSD, and other UNIX like operating systems along with the ls, and cd commands. It can be used for the following purposes under Apple OS X or UNIX or Linux operating systems:
- Find the full path to the current directory.
- Store the full path to the current directory in the shell variable.
- Verify the absolute path.
- Verify the physical path i.e exclude.
- cd Changing The Working Directory
- cp Copy Files Or Directory
- rm Remove Files And Directory
- ls List Of Directory Contents
- mkdir Make Directory
- cat Concatenate Files And Print On Standard Output
- mv Move Files
- chmod Change Files Permissions
Know Your System
- uname Print System Information
- who Show Who Is Logged On
- cal Displays Calculator
- date Print System Date And Time
- df Report File System Disk Space Usage
- du Estimate File Space Usage
- ps Displays Information Of Current Active Processes
- kill Allows To Kills Process
- clear Clear The Terminal Screen
- cat /proc/cpuinfo Cpuinfo Display CPU Information
- cat /proc/meminfo Display Memory Information
Compression commands
- tar Store and Extract Files From An Archive File
- gzip Compress Or Decompress Named Files
Network commands
- ifconfig To Config Network Interface
- ping Check Other System are reachable from The Host System
- wget Download Files From Network
- ssh Remote Login Program
- ftp Download/Upload Files From/To Remote System
- last Displays List Of Last Logged In User
- telnet Used To Communicate With Another Host Using THe Telnet Protocol
Searching Files commands
- grep Search Files(s) For Specific Text
- find Search For Files In A Directory Hierarchy
- locate Find Files By Name
again those are not just kali linux commands those commands work in every Linux system
make sure to check the updated Basic Kali Linux Commands 2020 in this article
Источник
Kali Linux commands list for Beginners Updated 2021
The easiest way to use Kali Linux by commands but you should know there are thousands of the Kali Linux commands. And the biggest problem for the new user to learn these commands.
Frequently used Kali Linux Commands
Important Kali Linux Commands List Part 1 in Hindi
Important Kali Linux Commands List Part 2 in Hindi
Overview of Kali Linux commands:
Kali Linux is an operating system similar to other Linux based operating systems. So basic Kali Linux commands are similar to others.
This Operating system is designed for penetration testing and Ethical hacking. Of course, It has a bunch of ultimate Free Hacking Tools used by black hat hackers.
So basic kali Linux commands are similar to other Linux operating systems but Advance commands are different and awesome.
Commands are made Kali Linux more Attractive and awesome
In this article, I am going to cover how to use Kali Linux commands exactly without knowing anything about the tool.
Many students want to learn Kali Linux free of cost, but due to lack of resources, They can’t. If you are one of them then this article is useful for you.
And they start searching online, and they find lots of articles written by multiple experts, These are available online, but most articles are related on How to install Kali Linux on VirtualBox, how to use tools of Kali Linux.
There is a big difference between the installation of the Kali Linux and using the Kali Linux tools. The gap is how to use Kali Linux commands still exist.
How to finish Kali Linux using Gap?
In this tutorial I will try to remove that gap, so you can complete your journey from installation to using the tools and get involved in penetration testing. In the last article, I have written about Kali Linux hacker so if you want to know more about Kali Linux you can go there and read about it. otherwise, you have another option to know about Kali Linux go on Official website Kali Linux
Before writing this article I think about lots of factor about commands, and find out that:
Kali Linux commands Categories:
- System commands
- Tool commands
- Switches Or Sub-tools
System Commands in Kali Linux:
System commands are basic commands which are used for a system administration, these commands are helpful to manage the Kali Linux operating system.
You can use these commands to manage another Linux Operating system, for example, Ubuntu, Mint, RHEL, etc.
As I have told you in my previous post “Kali Linux system is the combination of Linux OS and Hacking tools”. So all the basic commands are similar to other Linux System.
In this tutorial, I am going to describe basic and advanced Kali Linux commands to manage the operating system.
So good news here, First you will learn basic commands, then you can go for advanced kali Linux commands.
In the sense of meaning, all commands are the same for a normal user, sudo user, and Root user.
A to Z Basic Kali Linux commands in 2020:
Kali Linux commands start from “a”. I know there are many Kali Linux command start from “a”.
Do you want to know? How many commands start from a?
It is very simple to open the terminal and type “a” and press the “tab” tab key from your keyword twice you will see all command start from “a” word.
I find 222 commands start from “a” at the time of writing this article. See in the image below.
Very basic commands can be used by Normal user. The identification of normal user ‘$’ sign, you can see in the following image [email protected]:
1# Arch Command:
You can use the arch command to know computer architecture. Arch command prints things such as “i386, i486, i586, alpha, arm, m68k, mips, sparc, x86_64, etc.
You can use the following Syntax to check your system architecture:
2# Arp Command:
ARP stands for Address Resolution Protocol, which is used to find the address of a network neighbor for a given IPv4 address.
arp command is used to show the arp table of your Kali Linux system. You can use this command on other Linux systems as well as Windows operating systems.
arp without any option will print the current content of the ARP (MAC/CAM) table.
#3 arping Command
arping command is similar to ping command but it is working on an Ethernet layer. arping command gives the result of reachability and round-trip time on an IP address in a local network.
#arping -I eth0 -c 5 IPADDRESS
4# Aspell Command:
aspell is a spell checker command in Kali Linux, you can give file name or anything from standard input to check for misspellings.
Syntax: aspell check [options] filename
#aspell -c filename.txt
5# awk command”
awk command is used to manipulate data and generate a report in the scripting language. It allows the user to use a variable, functions both numeric and functions and logical operators.
You can write tiny and effective programs in the form of a statement by using awk utility in Kali Linux.
What can you do with awk?
- AWK Operations:
(a) Scans a file line by line
(b) Splits each input line into fields
(c) Compares input line/fields to pattern
(d) Performs action(s) on matched lines
awk is Useful For:
(a) Transform data files
(b) Produce formatted reports - Programming Constructs:
(a) Format output lines
(b) Arithmetic and string operations
(c) Conditionals and loops
awk options ‘selection _criteria
6# bg command
bg command is used to control shell jobs. It resumes execution of a stoped or suspended process and bg command used to restart a stopped background process
Example
I used ping command followed by technicalustad.com then pressed CTRL +z to stop the service.
Next, I used jobs commands to see available jobs.
Again I used bg command to restart the stoped command “ping technicalustad.com”
7# basename command
You can use basename command to remove base directory information and suffixes from the file names. You can print any file name with any leading directory components removed
#basename NAME [SUFFIX]
or
#basename OPTION NAME
8# Bzip2
Bzip2 is a basic utility for compress and decompress files. It is pre-installed in kali Linux as other commands.
#bzip2 [Options] [filename]
I used cat command to create a new file name with the filename.txt
Later I used bzip2 command followed by -z (option for compress file) and file name.
Next option -d, I used for decompressing “filename.txt.bz2”
When you use bzip2 command to compress file, The new file will be created with .bz2 extension. You will decompress any file with .bz2 extension by using bzip2 command.
9# cal command:
Cal command is used to display calendar
$cal
10# cat command
This tutorial for hackers, So if you will get access to any computer of the drive then you will 100% find some files. so cat command is used to see, edit matter inside the file. You can create a file and add content inside the file.
How is it possible?
$cat > ‘New File’ [Create a new file or overwrite data on the desired file]
$cat “file name” [See matter inside file]
$ cat >> “filename” [add some data into file]
11# cksum command
cksum command stands for checksum is used to calculates a CRC (cyclic redundancy check) and byte count for each input file, and writes it to standard output.
In a simple way, this command is used to check file’s data for being corrupted when transferred one location to another.
Command syntax is simple and straight forward
12# Clear command
Clear command is used to clear the terminal screen when you are running multiple commands in terminal the terminal screen getting full.
So use the clear command and enjoy a clean screen again.3
13# cmp Command:
the cmp command is used to compare two files byte by byte. If a difference is found, it reports the byte and line number where the first difference is found.
If no differences are found, by default, cmp returns no output.
Basic syntax of cmp command
#cmp file1.txt file2.txt
14# comm Command
you can use comm command to compare two sorted files line by line. The basic syntax to use this command:
#comm file1.txt file2.txt
15# cp command:
Cp command is used to copy one or more files from one location to another location.
#cp /source/location/path /destination/location/path
If you are copying file from the current working directory then give a file name and source address.
#cp filename /destination/location/path
Use the cp command carefully because it will overwrite files without asking. It means if the destination file name already exists, its data will be erased. you can use -i option to prompt for confirmation.
This is big command and can be used in different ways. here you can read more about https://www.computerhope.com/unix/ucp.htm
16# Crontab Command:
In kali Linux operating systems, The crontab command is used to view or edit the table of commands to be run by cron. The cron table is the list of tasks scheduled to run at regular time intervals on the Linux system.
The daemon which reads the crontab and executes the commands at the right time is called cron.
Crontab command examples
#crontab -e
Edit your crontab.
#crontab -l
Display (“list”) the jobs of your crontab.
#crontab -r
Remove your crontab.
#crontab -u technicalustad -e
Edit crontab for user technicalustad.
16# cut Command:
cut command is used to cut parts of lines from specified files or piped data and print the result to standard output. It can be used to cut parts of a line by delimiter, byte position, and character
The basic syntax for the cut command is as follows:
cut OPTION… [FILE]…
You can use cut command followed and specified with filed
for the example:
#cut -f 1,3 file.txt
16# Date Command:
date command is used for checking the current date and time.
the date can be changed by running the following code
$ date –set=’20 September 2019 13:09′
but the normal user can’t change system time, Then you are thinking about “how to change system time” Of-course I will teach you in this article, dont worry about it.
Some examples of date command:
$ date -d now
$ date -d today
$ date -d yesterday
$ date -d tomorrow
$ date -d sunday
$ date -d last-sunday
17# dc command:
The desk calculator works with postfix notation; rather like many HP Calculators. Basic arithmetic uses the standard + – / * symbols but entered after the digits.
dc [-V] [–version] [-h] [–help] [-e scriptexpression]
[–expression=scriptexpression] [-f scriptfile] [–file=scriptfile]
18# Dd command
dd stands for data duplicator, which is mainly used to copy and convert data. but this tool can be used for:
- Backing up and restoring an entire hard drive or a partition.
- Creating virtual filesystem and backup images of CD or DVDs called ISO files
- Copy regions of raw device files like backing up MBR (master boot record).
- Converting data formats like ASCII to EBCDIC.
- Converting lowercase to uppercase and vice versa.
dd command is not basic command so you must be superuser to execute it.
Syntax of dd command is
dd if= of= [Options]
19# df command
The df command stands for Disk Free is used to reports file system disk space usage. It displays the amount of disk space available on the file system of Kali Linux. The df command reports how much free disk space we have in our system.
20# diff command
Diff command is used to display the differences between two files.
#diff file1.txt file2.txt
21# diff3 command
Diff3 command is used to show differences among the three files.
#diff3 file1.txt file2.txt file3.txt
22# dig command
dig command is a powerful command in kali Linux used to for DNS lookup. Simple use and simple syntax
You will get all the information related DNS of the website.
23# dir Command
dir command is used to print the content list of a directory. Most of Linux user use ls command instead of dir command. but you can use it.
Basic Syntax:
#dir [OPTION] [FILE]
24# echo command:
Display message on the screen
The echo command is one of the most basic commands in Linux used to display a message on the screen. The arguments passed to echo are printed to the standard output.
echo is commonly used in shell scripts to display a message or output the results of other commands.
#echo Hello world!
25# Egrep Command
The egrep command is used to search files for lines that match a text pattern. It performs the match by using extended regular expressions. Running egrep is equivalent to running grep with the -E option.
Basic Example:
#egrep “support|help|windows” myfile.txt
Search for patterns of support help and windows in the file myfile.txt.
26# Eject Command
Eject command is used to remove a removable media (typically a CD-ROM, floppy disk, tape, or JAZ or ZIP disk) under software control. You can eject DVD by pressing a button, but you can remove it without touching button just type the following command:
Use the following command, in the case above command, is not working:
27# ethtool Command
ethtool is a networking utility used to configure ethernet devices on Kali Linux.
#ethtool [ethernet card]
If you want to display network usage statistics with ethtool by using the following command
where eth0 is a card name
28# whoami command:
it is looking something difference command but it is used to tell about you. For example if you forget “which user is logged in?“. This command will tell you who are you current.
29# pwd command:
pwd command is used for print working directory. It means “On what location you are“. here location meaning is directory and sub-directory.
The parent directory is “/” called root directory.
Don’t be confused with /root directory, this root directory “/root” is home directory for root user.
30# ls command:
ls command is used to see files and directory inside a directory. using ‘ls’ without any location will list the files and folders inside the current directory.
If you want to look up inside another directory, you will have to specify location.
31# cd command:
the cd command is a very useful command and plays a very important role for Linux user. This command is used for changing directory. And the basic syntax will be as below:
cd /desired/location
If you use blank ‘cd’ without location then you will move in the user’s home directory. so see the power of cd commands and enjoy!
$cd /desired/location ($cd /home/vijay)
32# mkdir command:
Do you know about the directory? It is a term used for the folder. You can say windows folder is a directory in Linux It is very easy to create a folder in Windows” but not in Linux. T
The graphical interface is really awesome, but the command interface is not less. The command-line interface is the fastest way to operate a Linux based Operating System. Linux users love it.
mkdir command is used to create a directory. if want to create a directory within the current directory, just use mkdir ‘directory name’.
if you want to create a directory in the desired location then
$mkdir /desired/location/directory name.
33# mv command:
If you don’t like files and folders on the current location and want to move to another location, then mv command is useful for you. mv command work as a cut and paste in windows.
$mv /Source_location /destination/location
mv source location if the file or directory does not exist in current location if the file/folders within current location then us mv file/folder name [space] destination location
mv command is also used for rename the file and folder
$mv ‘old filename’ ‘new filename’
34# rm command:
rm command is used to remove files and folders. In other words this command for deleting files and folders.
System Basic Kali Linux commands
35# uname command:
Do you want to know the name of your Linux? if yes then use uname command
The “uname” stands for (Unix Name), displays detailed information about the machine name, Operating System and Kernel.
36# uptime command:
this command is used to check how long your system is running. uptime for your system, this command can be used for forensics also.
37# users command:
users command is used to check current logged in user, On my Kali Linux system I have logged in with root user and later I switched to vijay user.
38# Less Command
less command is used for quickly view file on terminal. user can page up and down. Press ‘q‘ to quit from less window.
39#More Command
more command is used for quickly view file and shows details in percentage. Press up and down arrow for page up and down. Press ‘q‘ to quit out from more window.
40# Sort command
You can sort lines of text files in ascending order. with -r options will sort in descending order.
$sort filename.txt [ascending order]
$sort -r filename.txt [descending order]
41# VI Command
Vi is a most popular text editor used for most of the UNIX-like OS. Here is a great article for vi editor
42# Free command
The free command shows free, total and swap memory information in bytes.
Free with -t options shows total memory used and available to use in bytes.
43# history command:
The history command is used to check recent running commands. Oh really it is useful because Forgetting is the nature of human. IF you forget previous running command, you can use history command.
System Advanced Kali Linux commands
44#: Find Command
The find command is used for search files in Linux. Searching any files and folders in Windows is easy but in Linux.
To find a file by name, size, type, etc in the graphical interface is quite easy, And it is not really so easy in CLI (Command Line Interface)
Find is a command-line utility that allows you to search for files and directories in a directory hierarchy based on user-given expression and applies user-specified action on each matched file
Usage: find [-H] [-L] [-P] [-Olevel] [-D debugopts] [path…] [expression]
45# apt-get command:
apt-get is a package manager used to install, remove, purge, and update packages.
the apt-get command is a most popular command for Debian based operating systems including Kali Linux.
All the available options are below with apt-get command.
#46 dpkg command
dpkg command is used to Install deb File in Kali Linux. You can remove packages by using dpkg command as well.
Kali Linux is a Debian based operating system so you can install .deb files only.
For example: you can install Nessus on Kali Linux by using dpkg because the Nessus files do not exist in the repository.
You can run the following command to install packages on Kali Linux by using dpkg command
#dpkg -i package_name
#47 Du Command
The du command is used to display the amount of disk space used by files and directories.
If you run command du without specified path then it will give the result behalf of the current working directory.
If you run du command followed by a specific path, it will summarize disk usage of each file and subdirectories in that directory.
I used the du command without any argument and path. I got a shocking result. You run the command now, check the result and tell me our experience in the comment box.
#48 Curl command
Curl is a command-line utility to transfer data from or to a server. You can say it is used to download and upload files and data by using one of the supported protocols (DICT, FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET and TFTP). The command is designed to work without user interaction.
curl offers a busload of useful tricks like proxy support, user authentication, FTP upload, HTTP post, SSL connections, cookies, file transfer resume, Metalink, and more. As you will see below, the number of features will make your head spin! See libcurl(3) for details
Use the following command to know more about #curl
More Details: What is Curl in Linux, How to use? You should check these methods
#49 Adduser command
Adduser command is used to add a new user. You can create multiple users by using adduser command.
#50 passwd command To change password
Username and password are the basic security of the Kali Linux operating system. You are working on cybersecurity / ethical hacking.
You must keep in mind all security points, and managing password is one of them.
passwd command is used to change the password of a normal user / sudo user/ root user.
Basic example: You are login with root user and want to change current user password then simple syntax as follows:
As you hit enter, you get the screen to enter a new password twice. You will not see anything on the screen at the time of entering a password. Don’t worry at all.
Give a new password and hit enter, again enter the same password and hit enter. Your password for the current user will be updated.
#51 usermod command
usermod command is used to modify a user in a group.
By default, Kali Linux is operated by the root user, but it is a loophole of security. So You must use kali Linux with normal user.
But the problem starts from here, lots of tools are required administrative permission. Normal user can not run these tools.
You can run these tools by the root user or sudo user. usermod command will help to promote normal user to sudo user by running following command
#52 lsb_release command to check the version of Kali Linux
lsb_relase command is used to check the version of Kali Linux. There are multiple switches are used with this command.
#53 SCP command
scp command is used to copy files from one device to another device securely. There are multiple ways to transfer files from one system to another.
But scp copy files over ssh protocol. One system should have an ssh server running.
Hacker used this command when the compromised system and transfer files. Basic syntax as bellow.
#54 unzip command
Now you are a Kali Linux user, and you are using Kali Linux. You will download many files from different -2 sources.
You will find most of the files in zip format, you can’t use them. You have the challenge to extract files. unzip command will help you get extracted files.
Источник