# znc を Homebrew, apk, apt, dnf, MacPorts, Nix, pacman, zypper でインストール

znc のインストール経路、実行ファイル、メタデータ、AI エージェント向けセキュリティノートを確認します。

## インストール

```sh
sudo av install brew:znc
```

追加のインストールコマンド:

### macOS

- Homebrew (100%):

```sh
brew install znc
```

  証拠: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install znc
```

  証拠: MacPorts ports tree: irc/znc/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add znc
```

  証拠: Alpine Linux edge package indexes: znc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install znc
```

  証拠: Debian stable package indexes: znc from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install znc
```

  証拠: Fedora Rawhide package metadata: znc from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#znc
```

  証拠: nixpkgs package indexes: znc from https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/top-level/all-packages.nix

- pacman (92%):

```sh
sudo pacman -S znc
```

  証拠: Arch Linux sync databases: znc from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install znc
```

  証拠: openSUSE Tumbleweed package metadata: znc from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

## パッケージ情報

- **パッケージキー:** brew:znc
- **パッケージマネージャ:** Homebrew
- **バージョン:** 1.10.2
- **ソース概要:** Advanced IRC bouncer
- **ホームページ:** <https://wiki.znc.in/ZNC>
- **最終更新:** 2026-05-07T23:09:02Z
- **生成日時:** 2026-08-03T19:37:03+00:00

## 実行可能ファイル

- znc (エイリアス)
- znc-buildmod (エイリアス)

## インストール挙動

- Bottle: 利用不可

## バージョンと鮮度

- ページ生成日: 2026-08-03
- マネージャ版: 1.10.2
## プロジェクトの歴史と使われ方

ZNC is a long-running IRC bouncer: it stays connected to IRC networks on a user's behalf, lets clients disconnect and reconnect, replays buffers, and exposes a module system and web administration interface around that persistent session.

### プロジェクトの歴史

ZNC's own history page records an early commit date of 2004-07-20, and secondary summaries describe it as developing from July 2004 as an alternative to psyBNC. The GitHub repository was created later, in 2010, as the project moved into the modern public-forge era.

The project is written primarily in C++ and presents itself as an advanced IRC bouncer. Its README documents the core operating model: data under ~/.znc by default, znc.conf under configs, module data below the data directory, and extra modules loadable from user or installation paths.

ZNC's module system became one of its defining features. The README documents C++ modules built with znc-buildmod plus Perl and Python module support through ModPerl and ModPython. That gave administrators a way to extend a bouncer into web administration, logging, notifications, and network-specific behavior.

### 採用の歴史

ZNC became a standard answer to IRC's ephemerality. IRC clients traditionally only see messages while connected; a bouncer keeps the server-side session alive and lets one or more clients attach later. Opensource.com describes ZNC as a relatively popular and well-understood IRC bouncer for this problem.

ZNC's history is tied to changes in IRC client expectations. As clients and extensions improved buffer playback and timestamps, ZNC moved from simply keeping a nickname online toward preserving a multi-client chat session that felt less transient. It also remained relevant for bridges, where users wanted Matrix or other systems to connect through an existing IRC identity.

### 使われ方

A user runs znc as a daemon, creates one or more users and networks, then points IRC clients at the ZNC listener instead of directly at the IRC network. The client authenticates to ZNC, and ZNC connects onward, maintains channels, and replays buffered messages after reconnects.

Administrators commonly manage it through webadmin or controlpanel rather than editing znc.conf while the daemon is live. The same config file may contain network credentials, which is why the package's configuration and credential locations overlap.

### パッケージ好きにとっての重要性

ZNC is one of the archetypal always-on Unix userland daemons: small enough for a shell account or VPS, old enough to carry IRC culture, and modular enough to become personal infrastructure.

It matters to package nerds because it captures the pre-SaaS habit of solving chat persistence with a daemon you own, a config file in your home directory, and a client protocol that still works with many front ends.

### タイムライン

- 2004-07-20: ZNC history records the first commit timestamp.
- 2000s: ZNC develops as an alternative to earlier IRC bouncers such as psyBNC.
- 2010-01-09: The znc/znc GitHub repository is created.
- 2010s: ZNC's module ecosystem, web administration, SSL/TLS use, and client buffer behavior become central to everyday IRC bouncer use.
- 2020s: ZNC remains a maintained IRC bouncer and a common bridge point for persistent IRC sessions.

### Related projects

- psyBNC is the older IRC bouncer ZNC is often compared with historically.
- soju, IRCCloud, Quassel, The Lounge, and Heisenbridge occupy adjacent persistent-chat, bouncer, or bridge roles.
- HexChat, WeeChat, mIRC, and other IRC clients are common front ends that can connect through ZNC.

### ソース

- <https://api.github.com/repos/znc/znc>
- <https://en.wikipedia.org/wiki/ZNC>
- <https://github.com/znc/znc>
- <https://opensource.com/article/21/6/irc-matrix-bridge-znc>
- <https://wiki.znc.in/History>
- <https://wiki.znc.in/Introduction>


## セキュリティノート

formula declares a Homebrew service.

- **Geiger リスク:** orange / 中
- formula declares a Homebrew service


## Configuration and credential file locations

These source-backed paths show where this package keeps local settings or durable credentials. Automic Vault can use them as review targets for secret scanning, migration, and command approval.


## Configuration files

- Unix: ~/.znc/configs/znc.conf

## Credential files

- Unix: ~/.znc/configs/znc.conf
## 他のパッケージマネージャ記録

- Debian apt - znc - 1.9.1-2+b3: normalized package name match | Debian stable package indexes: znc from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | advanced modular IRC bouncer | https://www.znc.in/
- Debian apt - znc-backlog - 0.20180824+1.9.1-2+b3: normalized package name match | Debian stable package indexes: znc-backlog from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | module for requesting backlog from znc bouncer | https://github.com/FruitieX/znc-backlog
- Debian apt - znc-dev - 1.9.1-2+b3: normalized package name match | Debian stable package indexes: znc-dev from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | advanced modular IRC bouncer (development headers) | https://www.znc.in/
- Debian apt - znc-perl - 1.9.1-2+b3: normalized package name match | Debian stable package indexes: znc-perl from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | advanced modular IRC bouncer (Perl extension) | https://www.znc.in/
- Debian apt - znc-push - 1.0.0+git20190521.78d0385+1.9.1-2+b3: normalized package name match | Debian stable package indexes: znc-push from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | znc plugin to send push notification to various services | https://github.com/jreese/znc-push
- Debian apt - znc-python - 1.9.1-2+b3: normalized package name match | Debian stable package indexes: znc-python from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | advanced modular IRC bouncer (Python extension) | https://www.znc.in/
- Debian apt - znc-tcl - 1.9.1-2+b3: normalized package name match | Debian stable package indexes: znc-tcl from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | advanced modular IRC bouncer (Tcl extension) | https://www.znc.in/
- Nix - znc: normalized package name match | nixpkgs package indexes: znc from https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/top-level/all-packages.nix
- Ubuntu apt - znc - 1.9.0-2build3: normalized package name match | Ubuntu 24.04 LTS package indexes: znc from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | advanced modular IRC bouncer | https://www.znc.in/
- Ubuntu apt - znc-backlog - 0.20180824+1.9.0-2build3: normalized package name match | Ubuntu 24.04 LTS package indexes: znc-backlog from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | module for requesting backlog from znc bouncer | https://github.com/FruitieX/znc-backlog
- Ubuntu apt - znc-dev - 1.9.0-2build3: normalized package name match | Ubuntu 24.04 LTS package indexes: znc-dev from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | advanced modular IRC bouncer (development headers) | https://www.znc.in/
- Ubuntu apt - znc-perl - 1.9.0-2build3: normalized package name match | Ubuntu 24.04 LTS package indexes: znc-perl from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | advanced modular IRC bouncer (Perl extension) | https://www.znc.in/
- Ubuntu apt - znc-push - 1.0.0+git20190521.78d0385+1.9.0-2build3: normalized package name match | Ubuntu 24.04 LTS package indexes: znc-push from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | znc plugin to send push notification to various services | https://github.com/jreese/znc-push
- Ubuntu apt - znc-python - 1.9.0-2build3: normalized package name match | Ubuntu 24.04 LTS package indexes: znc-python from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | advanced modular IRC bouncer (Python extension) | https://www.znc.in/
- Ubuntu apt - znc-tcl - 1.9.0-2build3: normalized package name match | Ubuntu 24.04 LTS package indexes: znc-tcl from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | advanced modular IRC bouncer (Tcl extension) | https://www.znc.in/
- apk - znc - 1.10.2-r0: normalized package name match | Alpine Linux edge package indexes: znc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Advanced IRC bouncer | https://wiki.znc.in/ZNC


## Combined YAML source

View the package source record on GitHub. [combined/znc.yml](https://github.com/mxcl/pkgdb/blob/main/combined/znc.yml)


## ソース

- pkg.so package database
- Geiger risk classifier
- curated configuration and credential file locations
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
