mkdir : linux command
The mkdir command in the Unix, DOS, OS/2, and Microsoft Windows operating systems and in the PHP scripting language is used to make a new directory.
The mkdir command in the Unix, DOS, OS/2, and Microsoft Windows operating systems and in the PHP scripting language is used to make a new directory.
UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY means there is some file system error in the disk. Try this: fsck /dev/sda1 (where /dev/sda1 is the partition mentioned) And enter Yes(y) to all errors Then reboot and it should be fine.
There is a minor difference between the working of while and do while loops. This difference is the place where the condition is tested. The while tests the condition before executing any of the statements within the while loop. As against this, the do-while tests the condition after having executed the statements within the loop. … Read more
The myisamchk utility gets information about your database tables or checks, repairs, or optimizes them. myisamchk works with MyISAM tables (tables that have .MYD and .MYI files for storing data and indexes). The use of myisamchk with partitioned tables is not supported. How to run this Utility – myisamchk myisamchk [options] tbl_name The options specify … Read more
The keyword continue allows us to take up the control to the beginning of the loop, bypassing the statements inside the loop, which have not yet been executed. When continue is encountered inside any loop, control automatically passes to the beginning of the loop. A continue is usually associated with an if. Let’s consider the following … Read more
Try to add this line in [mysql] in my.cnf max_allowed_packet = 16M
Putty : Connect Linux Server from Windows Computer Here is video to show how to connect Linux server from Window Putty is free tool to connect Linux server. You can down putty from below link: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
HI every one there are lot of confusion about curl may be you understand easily … $url= “phone=$phone&leadid=$leadid”; //initialized other variable $header = array(“Accept: application/json”); //optional for json format. $ch = curl_init(); … Read more
While writing C program, We often come across situations where we want to jump out of a loop instantly, without waiting to get back to the conditional test. The keyword break allows us to do this. When break is encountered inside any loop, control automatically passes to the first statement after the loop. A break … Read more
Uses of Odd Loop In real life programming one comes across a situation when it is not known beforehand how many times the statements in the loop are to be executed. This situation can be programmed as shown below: /* Execution of a loop an unknown number of times */ main( ) { char another … Read more