if you want to install mysql on debian linux so following this step.
step 1. open terminal and run following command
first search mysql on terminal by command
#aptitude search mysql
and select following link
#mysql-admin
#mysql-client-5.0
#mysql-server-5.0
#mysql-query-browser
after select run this command
#aptitude install mysql-admin mysql-client-5.0 mysql-server-5.0 mysql-query-browser
and press enter
Subscribe to:
Post Comments (Atom)
How to find middle node of LinkedList without using extra memory in java
To find the middle node of a LinkedList without using extra memory in Java, you can use the "tortoise and hare" algorithm. This al...
-
import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.LinkedHashMap; import java....
-
import java.util.LinkedList; public class LinkedListReversePractice { public static void main(String[] args) { LinkedList<...
-
To find the middle node of a LinkedList without using extra memory in Java, you can use the "tortoise and hare" algorithm. This al...
No comments:
Post a Comment