-
How To Search File Using Extension In Linux
Search file using a file extension such as *.txt, *.png, *.mp4, *.java, *.py or *.yml etc. $ sudo find / -type f -name “*.mp4” OR $ sudo find / -type f -iname “*.mp4” Let’s Understand the above commands sudo: privileged escalation. -type f: Only search for files. -type d: Only search for directories or folders.…
-
Installation of OpenStack using DevStack
Install Linux virtual machine on your Virtualbox. Install any Linux System you like, If you do not have a preference, Ubuntu 18.04 will be the best choice as it is the most tested Linux Distro. Add Stack User DevStack should be run as a non-root user with sudo enabled else it will through an error…
-
How to view the Routing Table
Typical Fields in a Routing Table are, Subnet mask Destination IP Address Next Hop Address Flags U : route is up and running G : destination is in another network H : host-specific address D : added by redirection M : modified by redirection Interface To View Routing Table in Linux System following command is…
-
How to solve dpkg interrupted
Solution for dpkg interrupted can be following : remove all files from /var/lib/dkpg/updates sudo apt-get upgrade Manual Method sudo dpkg –configure -a sudo apt-get install -f