How To List Users in CentOS 7?
Viewed 1515 times since Tue, Jan 31, 2023
To get a simple list of usernames. Enter the command given below: cut -d: -f1 /etc/passwd This command gives us a list of users assigned to this CentOS server including system users like: root daemon operator sshd systuser cpanel clamav...
Read More
Where is path for rh-php73 in CentOS
Viewed 779 times since Fri, Feb 5, 2021
Internet Speed Test in Linux
Viewed 555 times since Thu, Oct 8, 2020
Copy "speedtest" -bash attached to /usr/bin and change it permission to X command: $ sudo speedtest Ref: Navel.ir
Read More
Add cron jobs directly to Scheduled Cron Jobs
Viewed 529 times since Tue, Jul 19, 2022
if you like working with VIM, then you know you can manually add them.Open the crontab in edit mode (crontab -e) add the cron jobs and save, that's all.
Read More
How to Install ionCube Loader in CentOS 7
Viewed 519 times since Fri, Feb 5, 2021
zend_extension = /usr/lib64/php/modules/ioncube_loader_lin_5.4.so
Read More
How do I find all files containing specific text on Linux?
Viewed 494 times since Mon, Jan 17, 2022
~]# grep -rnw '/path/to/somewhere/' -e 'pattern'Ref:https://stackoverflow.com/questions/16956810/how-do-i-find-all-files-containing-specific-text-on-linux
Read More