# ping google.com
bash: ping: command not found

Fix:
- Open Terminal,
- Run command: sudo apt-get install inetutils-ping
- Once you are done installing the package, try out the ping command again,
Result:# ping google.com PING google.com (172.217.166.46): 56 data bytes 64 bytes from 172.217.166.46: icmp_seq=0 ttl=37 time=7.776 ms 64 bytes from 172.217.166.46: icmp_seq=1 ttl=37 time=18.756 ms 64 bytes from 172.217.166.46: icmp_seq=2 ttl=37 time=7.566 ms 64 bytes from 172.217.166.46: icmp_seq=3 ttl=37 time=7.184 ms 64 bytes from 172.217.166.46: icmp_seq=4 ttl=37 time=19.034 ms
- How to Assign Bash Command to Variable
- How to Kill a port using bash terminal command?
- Bash For Loop Example
- bash: netstat: command not found
- Bash getopts Command Example
- How to fix bash ping command not found error
- [Fix] bash: script.sh: /bin/bash^M: bad interpreter: No such file or directory
- [fix] bash: ssh: command not found
- Fix bash: script.sh: Permission denied Error
- bash: ls command to see list files in current directory all subdirectories
- How to see Created Accessed Modified and Changed dates of a file using bash terminal command
- How to use Autocomplete and Autosuggestion in Shell Commands
- Bash Hello World! Script Tutorial
- Install Bash Completion on macOS
- bash get year 2021 calendar
- How to create new user account in Windows bash
- Bash command to wait for seconds
- Know Bash shell version command
- How to start or open a new bourne-again shell (bash) session on Windows using Command Line CMD
- How to check your IP using bash for Windows?
- Bash Script to prefix files with sequential numbers in a directory
- How to Compare Strings in Bash
- Command to Sort File In Reverse Order [Unix/Linux/macOS]
- How to know the current shell you are logged in?
- List all Username and User ID using Bash Command
- Display ls command file sizes in KB (kilobytes) MB (megabytes) or GB (gigabytes) [Linux/macOS] - MacOS
- Install Docker Desktop on M1/M2 Apple Silicon ARM Chip Mac - Docker
- JavaScript: Generate Random Numbers between 1 and 3 - JavaScript
- Sign in as different user missing in SharePoint 2013 how to enable - SharePoint
- Add Custom External Link to SharePoint Site Navigation - SharePoint
- Code2care Daily: Your Source for Tech & Programming News - April 14th, 2023 - News
- Outlook - The mailbox isn't available. This may have occurred because the license for the mailbox has expired. - Microsoft
- Understanding and Handling NullPointerException in Java: Tips and Tricks for Effective Debugging - Java