12,301
edits
(9 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[File:Bauhaus.fm IRC log in Opera.png|thumb|IRC in Opera]] | [[File:Bauhaus.fm IRC log in Opera.png|thumb|IRC in Opera]] | ||
Internet Relay Chat (IRC) is a simple chat system. To join an IRC you connect | Internet Relay Chat (IRC) is a simple chat system. To join an IRC you'll connect to an IRC-Server using your IRC-client. This page will explain how to quickly join an IRC and change your username. If you want to know a bit more about IRC read the [[wikipedia:Internet Relay Chat]] page. | ||
=== IRC Clients === | === IRC Clients === | ||
Line 9: | Line 9: | ||
* http://colloquy.info OS X, iOS | * http://colloquy.info OS X, iOS | ||
* https://addons.mozilla.org/de/firefox/addon/chatzilla/ Chatzilla Add-On for Firefox | * https://addons.mozilla.org/de/firefox/addon/chatzilla/ Chatzilla Add-On for Firefox | ||
== | ==== Mit Chatzilla zu Bauhaus.fm verbinden ==== | ||
<syntaxhighlight lang="bash"> | |||
/attach bauhaus.fm | |||
/join bauhaus.fm | |||
</syntaxhighlight> | |||
==== Mit Chatzilla zum Maschinenraum verbinden ==== | |||
<syntaxhighlight lang="bash"> | |||
/attach irc.freenode.org | |||
/join maschinenraum | |||
</syntaxhighlight> | |||
==== Mit Chatzilla zum Pure Data #dataflow verbinden ==== | |||
<syntaxhighlight lang="bash"> | |||
/attach irc.freenode.org | |||
/join dataflow | |||
</syntaxhighlight> | |||
== Useful IRC commands == | == Useful IRC commands == | ||
Configuring the IRC connection is done by sending the IRC server, called the nickserv a special message beginning with a | Configuring the IRC connection is done by sending the IRC server, called the nickserv a special message beginning with a shlash. | ||
(In all examples replace the stuff between the {} symbols with your data and ommit the symbols) | (In all examples replace the stuff between the {} symbols with your data and ommit the symbols) | ||
===Register a new nickname=== | ===Register a new nickname for the first time=== | ||
<syntaxhighlight lang="bash">/msg nickserv register {password} {email}</syntaxhighlight> | |||
===Login with your nickname=== | |||
<syntaxhighlight lang="bash">/msg NickServ identify {password}</syntaxhighlight> | |||
===Join (enter) a chatroom=== | ===Join (enter) a chatroom=== | ||
<syntaxhighlight lang="bash">/join #{channelname}</syntaxhighlight> | |||
===Change a nickname=== | ===Change a nickname=== | ||
<syntaxhighlight lang="bash">/nick {newnick}</syntaxhighlight> | |||
===Private message=== | |||
A message directed privately to one onther chat participant. | |||
<syntaxhighlight lang="bash">/msg {nickname} {private message}</syntaxhighlight> | |||
===Leave current chatroom=== | ===Leave current chatroom=== | ||
<syntaxhighlight lang="bash">/part</syntaxhighlight> | |||
===Exit all chats=== | ===Exit all chats=== | ||
<syntaxhighlight lang="bash">/quit</syntaxhighlight> |