1. I get this error: /bin/sh: no: command not found
2. How do I compile X-Chat on my Sun OS system?
1. How do I enable identd in X-Chat? (How do I get rid of the ~ in front of my username?)
2. How do I auto join more than one channel with keys?
3. How do I autoconnect and join a channel when X-Chat loads?
4. How do I cut and paste in X-Chat?
5. How do I connect through a proxy?
6. How do I show @ and + in front of nicknames that are Op and Voice when they talk?
7. How do I change the Op and Voice userlist icons and Tree View icons?
8. How do I set different ban types?
9. Why can't I see accented-letters/umlauts/upper-ascii-chars in X-Chat?
10. Why does the timestamp overlap some nicknames?
11. How do I turn on Conference mode where I will not see join or part messages?
12. How can I run the /dccserver command?
13. Why doesn't DCC send work behind a router (IPNat/ADSL)?
14. How do I execute multiple commands in one line?
15. How do I enable Emacs key bindings in XChat?
16. I get this error: "Unknown file type abc.yz. Maybe you need to install the Perl or Python plugin?"
17. How do I play sound files on certain events?
18. How do I auto-load scripts at startup?
19. How do I minimize X-Chat to the System Tray (Notification Area)?
20. Can I select and copy text with the time stamps?
21. What's the deal with opening URLs in XChat on Linux/Unix?
22. Where are the log files saved to?
23. How do I rotate log files every so often?
24. How do I enable graphical smilies (emoticons)?
1. Why does X-Chat leak so much memory?
2. My copy of X-Chat crashes, what can I do?
3. Can I write a new language translation for X-Chat?
If you get an error something like:
Making all in po make[2]: Entering directory `/home/zed/xchat/files/xchat-1.8.7/po' file=./`echo ca | sed 's,.*/,,'`.gmo \ && rm -f $file && PATH=../src:$PATH no -o $file ca.po /bin/sh: no: command not found make[2]: *** [ca.gmo] Error 127 make[2]: Leaving directory `/home/zed/xchat/files/xchat-1.8.7/po' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/zed/xchat/files/xchat-1.8.7' make: *** [all-recursive-am] Error 2
It means you don't have GNU gettext installed. There are two solutions:
X-Chat uses GNU gettext which in turn requires gmake, either install that and or use ./configure --disable-nls with Sun's own make.
UNIX:
Identd isn't actually apart of X-Chat. You will need to download and install
your own ident server. Most distributions, including Fedora, come with an
ident server program called oidentd. Make sure it is enabled in
/etc/xinetd.conf or read you distribution's documentation.
As an alternative, you can try this experimental identd server: xchat_auth
WINDOWS:
The win32 version of X-Chat comes with a built-in identd server. It is
/* HexChat
* Copyright (C) 1998-2010 Peter Zelezny.
* Copyright (C) 2009-2013 Berke Viktor.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef HEXCHAT_CHANOPT_H
#define HEXCHAT_CHANOPT_H
int chanopt_command (session *sess, char *tbuf, char *word[], char *word_eol[]);
gboolean chanopt_is_set (unsigned int global, guint8 per_chan_setting);
void chanopt_save_all (gboolean flush);
void chanopt_save (session *sess);
void chanopt_load (session *sess);
#endif