Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Cover image for 7 Pro Unix Command have you checked?😎
DevOps Descent
DevOps Descent

Posted on • Edited on

     

7 Pro Unix Command have you checked?😎

🚀 7 Essential CLI Tools for Better AWS EC2 Management 🖥️

Managing your AWS EC2 instance efficiently requires the right set of tools. In this post, we’ll explore seven essential command-line tools that can make your workflow more effective. Each tool has a unique purpose, from disk usage monitoring to HTTP benchmarking.

1. 📊duf - Disk Usage/Free Utility

duf is a user-friendly alternative todf. It shows disk usage in a clean and colorful format.

sudo apt install duf  # Install duf on Ubuntuduf                   # Run the command to check disk usage

Example output:

Image description

2. 🌱dust - More Intuitive du Command

dust is a Rust-based tool that displays disk usage with directory sizes in a user-friendly, tree-like format.

sudo apt install cargo   # Install Rust package managercargo install du-dust     # Install dustdust                      # Run the dust command

Example output:

Image description

3. 💾dua - Disk Usage Analyzer

dua (Disk Usage Analyzer) is a fast and intuitive tool for analyzing disk usage in your terminal.

sudo apt install dua-cli    # Install duadua                          # Run dua to see your disk usage

Example output:

Image description

4. 📚bat - A Better 'cat' Command

bat is a drop-in replacement forcat but with syntax highlighting and Git integration, making it great for reading code files in your terminal.

sudo apt install bat        # Install bat on Ubuntubat ~/.bashrc                # Example usage to display a file

Example output:

Image description

5. 🌐HTTPie - User-Friendly HTTP Client

HTTPie simplifies API testing and interacting with HTTP servers. It’s a modern alternative tocurl.

sudo apt install httpie   # Install HTTPiehttp GET https://api.github.com/repos/httpie/httpie   # Example GET request

Example output:

Image description

6. ⚡oha - HTTP Load Testing Tool

oha is a fast, terminal-based HTTP load testing tool, useful for benchmarking APIs and web services.

sudo apt install oha      # Install ohaoha -n 1000 -c 50 https://example.com   # Example load test

Example output:

Image description

7. 📈ctop - A Top for Containers

ctop provides a real-time overview of your running containers, including metrics like CPU, memory, and network usage.

sudo apt install ctop     # Install ctopctop                       # Run ctop to monitor container usage

Example output:

Image description

🚀 Conclusion

With these seven tools, managing your AWS EC2 instance becomes much easier. Whether you're checking disk usage, testing HTTP endpoints, or managing Docker containers, these tools can significantly improve your workflow.

Feel free to share your favorite CLI tools in the comments below! 😄

Support if you found this helpful😉

NoMoney 🙅🏻‍♀️ justSubscribe

Do check:https://linktr.ee/DevOps_Descent
Youtube:https://shorturl.at/lVi2G

Top comments(4)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss
CollapseExpand
 
martinbaun profile image
Martin Baun
Tech Lead and Founder Baunit.comLearn development, software, business, and process building!Checkout our tools below.Goleko.com | Duckist.com | VideoFeedbackr.com | ToolBun.com | ElegantDoc.com
  • Location
    Sofia, Bulgaria
  • Work
    CTO -BaunIT
  • Joined

Used dua on my Macbook to clean up some space, what an impressive terminal app!

CollapseExpand
 
devops_descent profile image
DevOps Descent
🚀 DevOps and Cloud Enthusiast | Cloud and DevOps Engineer
  • Location
    India
  • Pronouns
    She/Her
  • Work
    DevOps Engineer
  • Joined

Glad it helped 😉

CollapseExpand
 
cavo789 profile image
Christophe Avonture
Markdown, WSL and Docker lover ~ PHP developer ~ Insatiable curious.
  • Location
    Racour, Belgium
  • Joined

Didn't know oha. Very nice. Thanks for the tip.

CollapseExpand
 
devops_descent profile image
DevOps Descent
🚀 DevOps and Cloud Enthusiast | Cloud and DevOps Engineer
  • Location
    India
  • Pronouns
    She/Her
  • Work
    DevOps Engineer
  • Joined

Thanks for the appreciation 😉

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

🚀 DevOps and Cloud Enthusiast | Cloud and DevOps Engineer
  • Location
    India
  • Pronouns
    She/Her
  • Work
    DevOps Engineer
  • Joined

More fromDevOps Descent

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp