Basic Usage: Syntax: du [options] [directory/file] Basic Examples: du /path/to/file: Displays disk usage of the specified file. du /path/to/directory: Shows disk usage of all the files and directories under the specified directory and its subdirectories Common Options: h or -human-readable: Prints sizes in human-readable format (e.g., 1K, 234M, 2G). s or -summarize: Displays only the …
RHCSA Practice Exam A Here are some tips to ensure your exam starts with a clean environment: You do not need external servers or resources. Do not register or connect to external repositories. Install a new VM according to the instructions in each practice exam. No sample solutions are provided for these practice exams. On …
Cómo verificar la dirección IP en Linux En el entorno de Linux, es esencial poder verificar la dirección IP de su sistema. La dirección IP es un identificador único asignado a cada dispositivo conectado a una red, lo que le permite comunicarse con otros dispositivos en la red. Verificar la dirección IP en Linux puede …
The RHCSA (Red Hat Certified System Administrator) exam is a performance-based certification exam offered by Red Hat. It is designed to validate the skills and knowledge required to effectively administer Red Hat Enterprise Linux systems in various enterprise environments. The RHCSA certification is highly recognized in the IT industry and serves as a benchmark for …
This article is part of the following series. 4 Ways to Find network interfaces in Linux 5 useful Linux network troubleshooting commands 3 Easy Ways to Find IP address in Linux 3 Ways to Find MAC Address In Linux Understanding MAC address in Linux In Linux, a MAC address (Media Access Control address) is …
There are a few different ways to search files by size in Linux. One way is to use the find command. The find command is a powerful tool that can be used to search for files based on a variety of criteria, including size. Search files by size in Linux To search for files by …
The error “could not load server certificate file ‘server.crt’: No such file or directory” in PostgreSQL indicates that the server is unable to find the server.crt file, which is required for SSL connections. If you don’t need that, set “ssl = off”, then PostgreSQL won’t complain. If you want transport encryption with TLS, you have …
Enabling SSL in PostgreSQL is a straightforward process that only requires three simple steps: Make sure we have the server certificate and key files available Enable the SSL configuration (ssl = on) Make sure the pg_hba.conf file rules are updated accordingly Obtain server certificate and key files for Postgres On PostgreSQL server, we need …
Preserve file permissions using -p option in cp command To preserve the file permissions when copying files or directories using the cp command, you can use the -p or –preserve option. The -p option will preserve the following attributes of the source file or directory: File mode (permissions) Access time Modification time User ID (UID) …
The error message “cp: Permission denied” typically occurs when the user doesn’t have permission to access the source file or the destination directory. Here are the errors we usually meet with “cp Permission denied” error in Linux: Error Description cp: cannot create regular file ‘destination/path’: Permission denied Indicates that the user does not have permission …