Thursday, July 8, 2010

how to install pg_admin3 on debian

you can install easy postgres Sql on debian
just go on terminal and search postgres version
by following command

#aptitude search pgadmin
And select version
then run follow command

# aptitude install pgadmin3

and press enter

No comments:

Post a Comment

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...