Blog

shape
shape
shape
shape
shape
shape
shape
shape
Standard

Installing phpMyAdmin on Debian

phpMyAdmin is a computer program developed in PHP for administering MySQL over the Internet. Just use the following command in SHELL: apt-get install phpmyadmin Follow the instructions that appear on the screen. Once installed, move the phpmyadmin folder located in the “usr/share/phpmyadmin” directory to the root folder of your domain or any other folder of

Standard

How to restart Webmin

Sometimes Webmin becomes inaccessible and we have to restart it. When you do this, it will work normally again. To do this, just run the following command in SHELL: /etc/init.d/webmin restart After using the above command, you will see the following message: Stopping Webmin server in /usr/share/webmin Starting Webmin server in /usr/share/webmin Now Webmin will

Standard

Deleting Files in C

In this short post, I’ll show you how to delete a file using the C language. To delete a file we use the delete(“file_name”) function. In the example below, the program will delete the file masterdaweb.txt: #include int main() { delete(“masterdaweb.txt”); return 0; }

Standard

“Make Command Not Found” – Linux

When trying to compile and/or install, for example, a module on some Linux servers with the ‘make‘ and/or‘make install‘ command, we get the following error: Make Command Not Found To fix the problem, just run the following command in SHELL: apt-get install make

Latest news

Latest news directly from our blog.