Solaris UNIX Case-Insensitive Find File Search

To perform a case-insensitive find file search in Solaris, you can use the find command with the -iname option. The -iname option searches for files that match the given pattern case-insensitively. Here’s the basic syntax: find /path/to/search -iname “pattern” Here’s an example command that searches for all files in the current directory and its subdirectories … Read more

FreeBSD: Install bindgraph To Make Graphs About Queries Sent To BIND

bindgraph is a utility for BIND (Berkeley Internet Name Domain) that generates graphs about queries sent to BIND. To install bindgraph in FreeBSD, follow these steps: Open a terminal and log in as root. Install the bindgraph package using the following command: pkg install bindgraph This command will download and install the bindgraph package from … Read more

FreeBSD: NIC Bonding / Link Aggregation / Trunking / Link Failover Tutorial

Network Interface Card (NIC) bonding, also known as Link Aggregation, Trunking, or Link Failover, is a method of combining two or more network interfaces into a single logical interface. This can provide increased network bandwidth and redundancy, as well as improve network availability by providing automatic failover in the event of a network link failure. … Read more

How to display line number in vim

To display line numbers in Vim, you can use the following command in command mode: :set number This will display line numbers on the left-hand side of the screen. To turn off line numbering, use the following command: :set nonumber You can also use the short version of the above commands by replacing set with … Read more