Posts tagged 'linux'
How to split zip files into parts with specific size in linux command
To split/archive files into a zip file with multiple parts of same size, you can use file compression software such as WinZip or 7-Zip. You can use the "zip" command to do the same in Linux.
How to get supervisord or supervisorctl status
Supervisor is a process manager. As it name suggests, the job of supervisor command is to supervise a process. It just monitors a process and make sure that process is running and restarts the process in case if it is terminated unexpectedly in the server.
p7zip not showing files in mounted directory or outside home directory
p7zip or p7zip-desktop by default do not show any other files in other mounted drives or outside home directories. This can be fixed by using simple command
How to find & replace a string in multiple files recursively using sed
I had to replace a string in multiple files in one of my project and i have to do it recursively because the files in the inner directories also contains that word. I intented to do this using sed command in linux, rather than going for the options available in the editor.
Cannot find autoconf Please check your autoconf installation
Recently i tried to install development version lampp. While running phpize command during the installation, i got "Cannot find autoconf Please check your autoconf installation" and the $PHP_AUTOCONF environment variable.
configure: error: no acceptable C compiler found in $PATH
This error usually occurs when you installing a program and its missing gcc compiler location in the $PATH variable, one of dependencies for the program you are installing.
How to delete multiple files containing certain string/extension linux
As we seen in our previous articles we can use grep command in combination with two other commands to delete multiple files which has certain string in the file name or same extension in linux.