Install postgresql 9.2 on debian wheezy (on virtualbox) -


i have virtualbox debian wheezy. i'm trying install postgresql 9.2 on it. when trying this instruction have next:

reading package lists... done building dependency tree reading state information... done packages not installed. may mean have requested impossible situation or if using unstable distribution required packages have not yet been created or been moved out of incoming. following information may resolve situation:  following packages have unmet dependencies:  postgresql-9.2 : depends: postgresql-common (>= 135~) not going installed                   depends: ssl-cert not installable e: unable correct problems, have held broken packages. 

when try install postgresql-common:

apt-get install postgresql-common 

i got next:

reading package lists... done building dependency tree reading state information... done packages not installed. may mean have requested impossible situation or if using unstable distribution required packages have not yet been created or been moved out of incoming. following information may resolve situation:  following packages have unmet dependencies:  postgresql-common : depends: ssl-cert (>= 1.0.11) not installable e: unable correct problems, have held broken packages 

when try install ssl-cert:

apt-get install ssl-cert 

i got next:

reading package lists... done building dependency tree reading state information... done package ssl-cert not available, referred package. may mean package missing, has been obsoleted, or available source  e: package 'ssl-cert' has no installation candidate 

i'm novice in linux, please me install postgresql 9.2

installing ssl-cert worked when added these repos sources.list (/etc/apt/):

deb http://ftp.de.debian.org/debian/ wheezy main non-free contrib deb-src http://ftp.de.debian.org/debian/ wheezy main non-free contrib 

then:

apt-get update aptitude install ssl-cert aptitude install postgresql-common aptitude install postgresql-9.2 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -