「Screen Irssi Bitlbee」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(英語版から転載)
 
(一部翻訳)
6行目: 6行目:
 
{{Related articles end}}
 
{{Related articles end}}
   
  +
[[GNU Screen]]、[[Irssi]]、[[Bitlbee]]、および [[SSH]] を一緒に使用すると、IRC サーバーや他のチャットネットワークへの永続的な接続が可能になります。SSH を介して、どこからでもこの永続チャットスイートにアクセスできます。ピースを組み立てるのは難しくありません。このページでそれをガイドします。
Using [[GNU Screen]], [[Irssi]], [[Bitlbee]], and [[SSH]] together allows you to have a persistent connection to IRC servers and other chat networks. Via SSH, you can access this persistent chat suite from anywhere. Putting the pieces together is not difficult, and this page will guide you through it.
 
   
== Components ==
+
== コンポーネント ==
   
 
=== GNU Screen ===
 
=== GNU Screen ===
   
  +
まずは [[GNU Screen]] を紹介します。Screen では、シェルをアクティブに使用していないときでも、シェルを開いたままにすることができます。ここではこれを使用して IRC セッションを永続的に維持し、IRC クライアントを閉じることなくどこからでも再接続できるようにします。[[GNU Screen]] および {{man|1|screen}} を参照してください。
First we will introduce [[GNU Screen]]. Screen lets you keep shells open, even when you are not actively using them. We will be using it here to keep our IRC session persistent so that we can reconnect to it from anywhere without having to close the IRC client. See [[GNU Screen]] and {{man|1|screen}}.
 
   
 
=== Irssi ===
 
=== Irssi ===
   
  +
[[Irssi]] はコマンドライン IRC クライアントです。非常に柔軟でスクリプト化が可能です。当然、これを IRC クライアントとして使用します。
[[Irssi]] is a command-line IRC client. It is very flexible and scriptable. We will be using it, obviously, as our IRC client.
 
   
 
=== Bitlbee ===
 
=== Bitlbee ===
   
  +
[[Bitlbee]] は興味深いプロジェクトです。ローカルマシン上に IRC サーバーをセットアップし、さまざまなインスタントメッセンジャープロトコルに接続し、ログインユーザーを IRC ユーザーとして表します。
[[Bitlbee]] is an interesting project. It sets up an IRC server on your local machine, which connects to various instant messenger protocols, and represents logged-in users as IRC users.
 
   
 
=== SSH ===
 
=== SSH ===
   
  +
[[SSH]] が何であるかは誰もが知っています。これにより、Web アクセスがあればどこからでも常設チャットスイートを使用できるようになります。
Everyone knows what [[SSH]] is. This will let us use our persistent chat suite from anywhere with web access.
 
   
== Setting it up ==
+
== セットアップ ==
   
=== Installing ===
+
=== インストール ===
   
First, install {{Pkg|openssh}} {{Pkg|irssi}} {{Pkg|screen}} {{AUR|bitlbee}}.
+
まず、{{Pkg|openssh}}{{Pkg|irssi}}{{Pkg|screen}}{{AUR|bitlbee}} をインストールします。
   
=== Configuring SSH ===
+
=== SSH の設定 ===
   
  +
[[SSH|SSH wiki ページ]] の指示に従って SSH を設定します。ここで要約するにはあまりにも複雑すぎます。
Follow the directions on [[SSH|SSH's wiki page]] to set up SSH. It is far too involved to summarize here.
 
   
=== Configuring bitlbee ===
+
=== bitlbee の設定 ===
   
  +
本当に設定が必要なアプリケーションは Bitlbee だけです。必要に応じて、[[Bitlbee|Bitlbee の wiki ページ]] の指示に従ってください。実際に行う必要があるのは、/etc/bitlbee/bitlbee.conf を参照して、好みに合わせて設定することだけです。以下に、注目に値するいくつかの変更を示します。
The only application which really requires you to configure is Bitlbee. You can follow the directions on [[Bitlbee|Bitlbee's wiki page]] if you like. All you really need to do is go through /etc/bitlbee/bitlbee.conf and configure it how you like. Below are some modifications worth pointing out.
 
   
  +
これにより、Bitlbee がデーモンとして実行され、参加するユーザーごとに新しいプロセスがフォークされます。これは、xinetd を介して実行するよりも簡単なので、お勧めします。
This will have Bitlbee run as a daemon, which forks a new process for each user that joins. This is simpler than running it through xinetd, so I suggest it.
 
 
RunMode = ForkDaemon
 
RunMode = ForkDaemon
   
  +
これにより、デーモンは起動時に起動した後に root 権限を削除します。セキュリティのためにこれを実行してください。Bitlbee を root として実行する理由はありません。
This will have the daemon drop root priveledges after it launches on boot. Do this for security; there is no reason for Bitlbee to run as root.
 
 
User = bitlbee
 
User = bitlbee
   
  +
ここで必ずパスワードを変更してください。
Be sure to change the password here.
 
 
OperPassword =
 
OperPassword =
   

2024年4月23日 (火) 00:00時点における版

関連記事

GNU ScreenIrssiBitlbee、および SSH を一緒に使用すると、IRC サーバーや他のチャットネットワークへの永続的な接続が可能になります。SSH を介して、どこからでもこの永続チャットスイートにアクセスできます。ピースを組み立てるのは難しくありません。このページでそれをガイドします。

コンポーネント

GNU Screen

まずは GNU Screen を紹介します。Screen では、シェルをアクティブに使用していないときでも、シェルを開いたままにすることができます。ここではこれを使用して IRC セッションを永続的に維持し、IRC クライアントを閉じることなくどこからでも再接続できるようにします。GNU Screen および screen(1) を参照してください。

Irssi

Irssi はコマンドライン IRC クライアントです。非常に柔軟でスクリプト化が可能です。当然、これを IRC クライアントとして使用します。

Bitlbee

Bitlbee は興味深いプロジェクトです。ローカルマシン上に IRC サーバーをセットアップし、さまざまなインスタントメッセンジャープロトコルに接続し、ログインユーザーを IRC ユーザーとして表します。

SSH

SSH が何であるかは誰もが知っています。これにより、Web アクセスがあればどこからでも常設チャットスイートを使用できるようになります。

セットアップ

インストール

まず、opensshirssiscreenbitlbeeAUR をインストールします。

SSH の設定

SSH wiki ページ の指示に従って SSH を設定します。ここで要約するにはあまりにも複雑すぎます。

bitlbee の設定

本当に設定が必要なアプリケーションは Bitlbee だけです。必要に応じて、Bitlbee の wiki ページ の指示に従ってください。実際に行う必要があるのは、/etc/bitlbee/bitlbee.conf を参照して、好みに合わせて設定することだけです。以下に、注目に値するいくつかの変更を示します。

これにより、Bitlbee がデーモンとして実行され、参加するユーザーごとに新しいプロセスがフォークされます。これは、xinetd を介して実行するよりも簡単なので、お勧めします。

RunMode = ForkDaemon

これにより、デーモンは起動時に起動した後に root 権限を削除します。セキュリティのためにこれを実行してください。Bitlbee を root として実行する理由はありません。

User = bitlbee

ここで必ずパスワードを変更してください。

OperPassword =

Using Irssi in Screen

Open up a terminal and run screen. After the copyright message (read the wiki to disable that message), you should find yourself at a plain terminal. Launch irssi in this terminal.

Irssi is a full-fledged IRC client, so we cannot list a complete tutorial here. Use Google to find more information on what irssi can do for you. Now's the time to connect to whatever IRC networks you like.

Connecting to Bitlbee

Bitlbee sets up an IRC server on your local machine. To connect to it, run this in irssi:

/connect localhost <optional port>

You should immediately join a channel called &bitlbee. Here you will see a brief introduction to Bitlbee. Type help to get started. Set up Bitlbee to connect to your instant messenger accounts. You will see your contacts join the channel.

Using It

Now that we have got Irssi, Bitlbee, and Screen all running, what can we do with it?

First, the whole point of this exercise was to create a persistent chat session that can be accessed from anywhere. From another computer, SSH into your server. Type in

screen -raAd 

and watch as irssi, with all of your channels and IM connections, pops up. Any messages left for you while you were away are visible, just as if you were at your server.

Launching the Setup

Since it is slow to manually connect to each IRC network, join channels, connect to Bitlbee, and have Bitlbee connect to your messaging accounts every time you you log in, set up some scripts to help you out.

First, create a screen initialization file. Here is an example:

~/irc_screen
source ~/.screenrc
screen -t IRC 1 irssi

This will launch irssi in window 1 and title the screen session 'IRC'.

Then set up a short script to launch screen with that configuration file:

~/bin/irc_start
#!/bin/sh
screen -d -m -c ~/irc_screen

The command line switches -d -m start screen in detached mode, so that it launches in the background. -c ~/irc_screen uses ~/irc_screen as the rc file for this session.

To launch and connect to the Screen session:

~/bin/irc_start
screen -raAd

Doing More

Look into configuring irssi to behave more like you want: https://www.quadpoint.org/articles/irssi

Auto-away on screen detach

Using the screen-away script, you can have yourself marked "away" on BitLBee when you disconnect your screen session. By default the script affects all servers but can easily be modified to only affect BitLBee.

Read more about scripts at the URL in 'Doing More'. Find the screen-away.pl script at https://scripts.irssi.org/

Modifying screen-away.pl for BitLBee

First you need the server tag for BitLBee. You can get this by typing "/server" in irssi. The tag is the first word on the line. For me, the tag is "BitLBee". On the line following

foreach $server (Irssi::servers()) {

(which occurs twice) insert the line

next unless ( $server->{chatnet} eq 'TAG' );

replacing TAG as necessary. In the current version, those occur on lines 181 and 206. To use the script you need to load it - unless if if autoloaded, and set it active.

/script load screen_away
/set screen_away_active on

Persisting the chat client through suspends and connectivity changes

If you use a laptop, you likely suspend and change wireless networks often, which causes your ssh client to lose connection. This can be annoying for a chat client you expect to always be available.

To fix this, try Mosh, which is a shell that seamlessly deals with reconnection after resuming or changing wireless networks.