postgresql原始碼安裝man的內容
pg原始碼安裝man的內容
當原始碼安裝pg時,如果沒有安裝doc內容,則手動安裝一次:
[root@oem10g ~]# cd postgresql-9.4.1/doc/
[root@oem10g doc]# make
make -C src all
make[1]: Entering directory `/root/postgresql-9.4.1/doc/src'
make -C sgml all
make[2]: Entering directory `/root/postgresql-9.4.1/doc/src/sgml'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/root/postgresql-9.4.1/doc/src/sgml'
make[1]: Leaving directory `/root/postgresql-9.4.1/doc/src'
[root@oem10g doc]# make install
make -C src install
make[1]: Entering directory `/root/postgresql-9.4.1/doc/src'
make -C sgml install
make[2]: Entering directory `/root/postgresql-9.4.1/doc/src/sgml'
/bin/mkdir -p '/usr/local/pgsql/share/doc/'/html '/usr/local/pgsql/share/man'/man1 '/usr/local/pgsql/share/man'/man3 '/usr/local/pgsql/share/man'/man7
cp -R `for f in ./html; do test -r $f && echo $f && break; done` '/usr/local/pgsql/share/doc/'
cp -R `for f in ./man1; do test -r $f && echo $f && break; done` `for f in ./man3; do test -r $f && echo $f && break; done` `for f in ./man7; do test -r $f && echo $f && break; done` '/usr/local/pgsql/share/man'
make[2]: Leaving directory `/root/postgresql-9.4.1/doc/src/sgml'
make[1]: Leaving directory `/root/postgresql-9.4.1/doc/src'
安裝完成後,man的內容在/usr/local/pgsql/share/man下,然後再修改/etc/man.config,增加MANPATH行;
#
# This file is also read by man in order to find how to call nroff, less, etc.,
# and to determine the correspondence between extensions and decompressors.
#
# MANBIN /usr/local/bin/man
#
# Every automatically generated MANPATH includes these fields
#
MANPATH /usr/man
MANPATH /usr/share/man
MANPATH /usr/local/man
MANPATH /usr/local/share/man
MANPATH /usr/X11R6/man
MANPATH /usr/local/pgsql/share/man
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16976507/viewspace-2133053/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 原始碼安裝postgresql原始碼SQL
- PostgreSQL 10.12 安裝系列 - 原始碼安裝SQL原始碼
- openeuler原始碼安裝Postgresql 16原始碼SQL
- PostgreSQL-原始碼安裝(一)SQL原始碼
- 【PG安裝】postgresql10 for linux 原始碼安裝SQLLinux原始碼
- PostgreSQL 13 原始碼安裝(#1.1)-202103SQL原始碼
- postgresql 12.5軟體原始碼安裝SQL原始碼
- PostgreSQL技術大講堂 - Part 2:PostgreSQL原始碼安裝SQL原始碼
- Cygwin 安裝最新的 man pages
- POSTGRESQL10.8原始碼安裝主從搭建SQL原始碼
- POSTGRESQL10.3原始碼安裝主從搭建SQL原始碼
- PostgreSQL原始碼學習 win10原始碼編譯安裝SQL原始碼Win10編譯
- MySQL 5 - 8 各版本快速安裝指令碼內容MySql指令碼
- CentOS 7.4 環境下原始碼編譯安裝 postgreSQL 11.4CentOS原始碼編譯SQL
- 在Oracle Linux 7.1中使用原始碼來安裝PostgreSQL 9.6OracleLinux原始碼SQL
- Oracle安裝光碟內容的檔案說明Oracle
- nginx原始碼安裝Nginx原始碼
- 原始碼安裝GO原始碼Go
- 原始碼安裝openresty原始碼REST
- Nginx 原始碼安裝Nginx原始碼
- 【推薦 - 原始碼安裝】nginx - 安裝原始碼Nginx
- 怎麼修改網站內容原始碼網站原始碼
- Ubuntu下PostgreSQL的安裝UbuntuSQL
- 原始碼編譯安裝的原理原始碼編譯
- PostgreSQL共享記憶體裡的內容(initCommunication)SQL記憶體
- linux安裝python3(原始碼安裝)LinuxPython原始碼
- Mysql for Linux安裝配置之—— 原始碼安裝MySqlLinux原始碼
- yum安裝與原始碼安裝比較原始碼
- linux-原始碼的編譯安裝和解除安裝Linux原始碼編譯
- Postgresql——postgis安裝SQL
- postgresql安裝(source)SQL
- macbook 原始碼安裝 redisMac原始碼Redis
- macbook 原始碼安裝 nginxMac原始碼Nginx
- MySQL 5.7.28 原始碼安裝MySql原始碼
- docker原始碼安裝NginxDocker原始碼Nginx
- paramiko 2.4.1原始碼安裝原始碼
- PostgreSQL:Redhat 8.5 + PostgreSQL 14.5 安裝SQLRedhat
- Mac/Linux 安裝中文版 man 幫助命令MacLinux
- python怎麼在windows系統中安裝 的內容PythonWindows