INN:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
(未显示同一用户的19个中间版本)
第3行: 第3行:
== 安裝 ==
== 安裝 ==


== 設定 ==
  先安裝編譯需要的套件,並且把<code>news</code>帳號的環境 設定 好:
 
<syntaxhighlight lang="bash">
sudo apt install -y bsd-mailx build-essential libdb-dev libmime-tools-perl libperl-dev libpython-dev libssl-dev; sudo chsh -s /bin/bash news; sudo mkdir ~news; sudo cp /etc/skel/.[a-z]* ~news/; sudo chown -R news:news ~news
</syntaxhighlight>
 
再切到<code>news</code>帳號下下載檔案並且編譯:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
./configure --enable-tagged-hash --with-perl --with-python --with-bdb --with-openssl --with-zlib
sudo su - news -c "wget https://downloads.isc.org/isc/inn/inn-2.6.4.tar.gz; tar zxvf inn-2.6.4.tar.gz; cd inn-2.6.4; ./configure --prefix=/var/spool/news --enable-tagged-hash --with-perl --with-python --with-bdb --with-openssl --with-zlib; make"; cd ~news/inn-2.6.4; sudo make install
</syntaxhighlight>
</syntaxhighlight>
== 設定 ==
=== cycbuff.conf ===
=== inn.conf ===
* docnfsstat
* domain
* enableoverview
* noreader
* organization
* ovmethod
* pathhost
* port
* runasgroup
* runasuser
* server
* useoverchan
=== newsfeeds ===
=== storage.conf ===
=== readers.conf ===
== 相關連結 ==
* [[Cleanfeed]]


== 外部連結 ==
== 外部連結 ==

2021年2月15日 (一) 22:15的版本

INN是一套News Server。

安装

先安装编译需要的套件,并且把news帐号的环境设定好:

sudo apt install -y bsd-mailx build-essential libdb-dev libmime-tools-perl libperl-dev libpython-dev libssl-dev; sudo chsh -s /bin/bash news; sudo mkdir ~news; sudo cp /etc/skel/.[a-z]* ~news/; sudo chown -R news:news ~news

再切到news帐号下下载档案并且编译:

sudo su - news -c "wget https://downloads.isc.org/isc/inn/inn-2.6.4.tar.gz; tar zxvf inn-2.6.4.tar.gz; cd inn-2.6.4; ./configure --prefix=/var/spool/news --enable-tagged-hash --with-perl --with-python --with-bdb --with-openssl --with-zlib; make"; cd ~news/inn-2.6.4; sudo make install

设定

cycbuff.conf

inn.conf

  • docnfsstat
  • domain
  • enableoverview
  • noreader
  • organization
  • ovmethod
  • pathhost
  • port
  • runasgroup
  • runasuser
  • server
  • useoverchan

newsfeeds

storage.conf

readers.conf

相关连结

外部连结