🐧Linux Utility🧰 Commands
47. gzip
The gzip command is used to reduce the file size. It is a compressing tool. It replaces the original file by the compressed file having '.gz' extension.
By default the gzip will delete the original files after compressing them. If you don't want the files to get deleted you use the -d option. Image
48. gunzip
The gunzip command is used to decompress a file. It is a reverse operation of gzip command. Image
49.find
The find command is used to find a particular file within a directory. It also supports various options to find a file such as by name, type, date, and more.
(.) : current directory name
(/) : root
/dir1/dir1/dirn: search files in folder dir

Ex: Find all text files Image
50. locate
The locate command is used to search a file by file name. It is quite similar to find command. The locate command searches the file in the database, whereas the find command searches in the file system.
This command is faster than the find command. To find the file with the locates command, keep your database updated. To update the database you use the updatedb command. Image
51. date
The date command is used to display date, time, time zone, and more. Image
52. cal
The cal command is used to display the current month's calendar with the current date highlighted. This utility might not be installed on your system to install it run:
sudo apt install ncal
This depends with your distro. Image
53. sleep
The sleep command is used to hold the terminal by the specified amount of time. By default, it takes time in seconds. In this example another promt will show after 3 seconds. Image
54. time
The time command is used to execute a command and prints a summary of real-time, user CPU time and system CPU time spent by executing a command when it terminates. Image
55. zip
zip is used to compress and archive files Image
56. unzip
unzip is the opposite of zip command Image
57. zipinfo
list detailed information about a ZIP archive Image
58. zcat Command
The zcat command is used to display the contents of compressed files. Image
59. df Command
The df command is used to display the disk space used in the file system. It displays the output as in the number of used blocks, available blocks, and the mounted directory. The -H options makes it human readable. Image
60. du
The du command is a command line utility for displaying file system disk space usage. It can be used to find out disk usage for files and folders and to show what is taking up space.
The `-a, --all` will allow du to write counts for all files, not just directories Image
61. free
Display amount of free and used memory in the system. The -h option makes it human readable. Image
62. exit
Linux exit command is used to exit from the current shell, If the current shell is the last shell it will just close the terminal. It takes a parameter as a number and exits the shell with a return of status number. Image
63. clear
Linux clear command is used to clear the terminal screen. CTRL + L can do the job real quick too, the advantage of this shortcut is that it can clear your terminal without disturbing what you have already written on the promt. Image
🐧Linux Network🌐 Commands
64. host
The host command is used to display the IP address for a given domain name and vice versa. It performs the DNS lookups for the DNS Query. Image
65. ping
The ping command is used to check the connectivity between two nodes, that is whether the server is connected. It is a short form of "Packet Internet Groper. Image
66. ip
Linux ip command is an updated version of the ipconfig command. It is used to assign an IP address, initialize an interface, disable an interface Image
67. ssh Command
Linux ssh command is used to create a remote connection through the ssh protocol. Image
68. wget
wget is used to download files from the internet Image
69. curl
cURL stands for client URL, is a command line tool that is used to transfer data to and from a server. Image
70. scp
SCP stands for a secure copy it is used to transfer files to and from a remote/local machine over ssh.
Here is an example of copying file to remote machine. Image
Here's an example of copying the file from the remote machine. Image
That's it for today's thread⌛️. Glad you reached this far🥳🥳Hope you found this thread🧵 useful!

If you like content like this:
🏄follow me(@xtremepentest)
🔁RT the first part of thread so more people can benefit!
💌Like
Thanks❤️‍🔥 for reading!🧾

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Traw | XtremePentesting

Traw | XtremePentesting Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @xtremepentest

9 Dec
Websites/Platforms 🌐 to learn to hack 🕵️

⚗️Cybersecurity training platform

→ Hackthebox
→ Hacxpert
→ Tryhackme
→ Pentester Lab
→ Vulnhub
→ Cybrary
→ CybersecLabs
→ Root Me
→ OverTheWire
→ Vulnmachines
→ RangeForce
→ certifiedsecure
→ EchoCTF
→ Try2Hack

thread
🌐Web Exploitation
→ Hacxpert
→ Portswigger Web Security Academy
→ Bug Bounty Hunter
→ Pentester Lab
application.security
→ OWASP Juice Shop
→ OWASP WebGoat
→ bWAPP
→ OWASP Broken Web Application
🏁CTF Based Learning
→ CTFTime
→ PicoCTF
→ 247CTF
→ Hackthissite
→ WeChall
→ W3challs
→ Hacker101
→ IO wargame
Read 11 tweets
8 Dec
70+ basic Linux🐧 commands explained.

Hey everyone👋! I am finally BACK with another Linux🐧 thread!

In today's thread🧵, I will be going over basics commands every Linux user should know !

A Mega🧵 thread
Have grouped these commands so you can easily Identify their usage.

- Linux Manual/Help Commands
- Linux File Commands
- Linux Directory Commands
- Linux File Content Commands
- Linux User Commands
- Linux Filter Commands
- Linux Utility Commands
- Linux Networking Commands
Pro tip💡: There is no need to memorize all the commands options/arguments, just make use of the help menu or manual pages to find the usage of a specific command/option you want.

continue to read👇
Read 59 tweets
26 Nov
A thread of my Linux threads🧵
1. Useful Linux🐧 Terminal Keyboard⌨️ Shortcut Keys To Boost🚀 Your Productivity📈

2. Basic Linux 🐧Commands📜 For Text Manipulation.

Read 20 tweets
24 Nov
Simple Bash/ZSH GOD-LIKE History Tricks Every Linux User Should Know!

A thread 🧵

Hello everyone👋. For today's Linux thread🐧, I'll be showing some GOD-LIKE bash/zsh history tricks which will save you plenty of time⏰ and doing your day to day tasks on the Linux terminal. Image
Effectively using bash history will save you plenty of time in the Linux terminal. Not only this will save you plenty of time, but it will also make your life much easier when you are using the Linux Terminal to perfom day to day tasks as regular user, penterser, dev or sysadmin.
1⃣View the Bash History
The simplest way to view commands you have used earlier is to use the history bash built in command. Image
Read 22 tweets
21 Nov
Useful Linux🐧 Terminal Keyboard⌨️ Shortcut Keys To Boost🚀 Your Productivity📈

A thread🧵

Hello everyone👋, Today I'll be doing another quick, easy to follow thread🧵on a few Linux terminal keyboard shortcuts keys that will help you to complete a few tasks real quick.
1. CTRL + A⌨️
2. CTRL + E⌨️
Read 14 tweets
19 Nov
Useful Linux🐧 Networking🌐 Commands📜 for Sysadmins/Regular Users🧑‍💻

A thread🧵
Hello everyone👋, Today I'll be doing another quick, easy to follow thread🧵 on some of the most used command-line tools and utilities for network management in Linux

#infosec #CyberSecurity #Linux
1. Ifconfig🌐
Ifconfig stands for Interface Configurator, it is one of the most used commands for finding network details, nitialize an interface, assign IP address, enable or disable an interface. It also display route and network interface.
2. Ip🌐
ip command is the latest version of ifconfig. It is more powerful than ifconfig command as it can perform several other tasks that the ifconfig cannot do. The utility is used for displaying and manipulating routing, network devices, interfaces.
Read 21 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Too expensive? Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us on Twitter!

:(