Find Files and Directories Based on Size in Linux

find command linux

Find Files and Directories Based on Size in Linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. To find all 50MB files, use. # find / … Read more

Find Files and Directories Based on Modification Time in Linux

find command linux

Find Files and Directories Based on Modification Time in Linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. Find Last 50 Days Modified Files … Read more

Search Files Based On Owners and Groups in Linux

find command linux

Search Files Based On Owners and Groups in Linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. To find all or single file called testdata.txt under / root … Read more

Find Files by Modification Time in linux

find command linux

Find Files by Modification Time in linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. The find command contains the ability to filter a directory hierarchy … Read more

Find Files Based on their Permissions in Linux

find command linux

 Find Files Based on their Permissions in Linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. Let’s have some example Find Files With 777 … Read more

Find Linux Command : Basic

find command linux

In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. Find is a command for recursively filtering objects in the file system based on a simple … Read more

http 400 BAD REQUEST

http 400 bad request

http 400 BAD REQUEST The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). The 400 Bad Request error is an HTTP status code that means that the request you sent to the … Read more

http service uptime

http service uptime

http service uptime We all know about uptime command purpose in Linux, it is used to check system uptime like, how long the system has been running without reboot and down. Each services has their own commands to check the service uptime, also we can check the services uptime using ps command. It will shows … Read more

MySQL service uptime

MySQL Cluster

MySQL service uptime   Sometimes, we need to check the uptime for MySQL in our server. There are multiple method to check the uptime status of mysql server. Let see some of them. mysqladmin status [root@localhost ~]# mysqladmin -u root -p********* status Uptime: 225921 Threads: 10 Questions: 18469911 Slow queries: 0 Opens: 12466 Flush tables: 1 … Read more

Replication with Different Master and Slave Storage Engines

mysql master - slave replication

Replication with Different Master and Slave Storage Engines It does not matter for the replication process whether the source table on the master and the replicated table on the slave use different engine types. In fact, the default_storage_engine and storage_engine system variables are not replicated. Even this provides a number of benefits in the replication … Read more