| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 859
» Latest member: makabaka
» Forum threads: 11,194
» Forum posts: 73,585
Full Statistics
|
| Online Users |
There are currently 56 online users. » 0 Member(s) | 54 Guest(s) Applebot, Bing
|
| Latest Threads |
Slope Unblocked: The Ulti...
Forum: General Discussions
Last Post: Semhar Girmay
24-08-2026, 02:43 AM
» Replies: 0
» Views: 41
|
Hello
Forum: Introduce yourself
Last Post: D3f4ult
04-03-2026, 10:20 AM
» Replies: 71
» Views: 86,574
|
intro to myself
Forum: Introduce yourself
Last Post: Donaldbiz
16-04-2025, 02:42 AM
» Replies: 1
» Views: 3,448
|
The Importance of Getting...
Forum: Linux Stuff
Last Post: Chano
19-10-2024, 11:02 PM
» Replies: 1
» Views: 7,040
|
Hey there...
Forum: Introduce yourself
Last Post: Knight_Errant
19-10-2024, 03:12 PM
» Replies: 6
» Views: 7,792
|
How to compile Irssi from...
Forum: Linux Stuff
Last Post: FrankCaurn
12-10-2024, 04:40 AM
» Replies: 1
» Views: 10,674
|
Witam z Krakowa
Forum: Introduce yourself
Last Post: Chopper
24-11-2023, 12:59 AM
» Replies: 1
» Views: 2,471
|
Merry Christmas !!!
Forum: Network News
Last Post: Hooter_Tooter
17-12-2021, 11:34 PM
» Replies: 11
» Views: 26,828
|
Hello
Forum: Introduce yourself
Last Post: immortal
27-06-2021, 09:05 AM
» Replies: 1
» Views: 2,885
|
guide lines
Forum: General Discussions
Last Post: wildcard
11-01-2021, 06:31 AM
» Replies: 0
» Views: 2,490
|
|
|
| new into Ops Group |
|
Posted by: Knight_Errant - 02-09-2012, 11:31 AM - Forum: Introduce yourself
- No Replies
|
 |
Hello All
My name is Alexander, I am 50 years old from Athens Greece and recently become a member of the Ops group and I would like to thank all IRCops for the chance they gave me to be into this group atleast for the trial period. I would like also to thank you all of you who the last 2 days helping with any way to understand and learn all issues that an Op should know. Thank you all for the welcome and I will ensure you that I will do my best. Finally I would like to note that if finally I do not fit for any reason the Ops group always you will remain friends and I would always resepct your decisions
|
|
|
| How to ignore someone using silence command |
|
Posted by: Omar - 26-08-2012, 04:17 PM - Forum: Services and IRCd Help
- No Replies
|
 |
Code: /silence [+|-]<hostmask|nickname> [p|c|i|n|t|a|x]
The following meanings of each flag:
p = Block private PRIVMSG
c = Block public PRIVMSG (to a channel)
i = Block INVITE
n = Block private NOTICE
t = Block public NOTICE (to a channel)
a = Block all the above types
x = Exception.
Example:
- If you want to ignore someone from Private with nickname Histen
- If you want to ignore Histen IP from your Private lets say as he keep changing the nick and bug you over so for example his IP is FA0226.ACF033.D0C64D.9730CE
Code: /silence +*!*@FA0226.ACF033.D0C64D.9730CE p
Please Note:
- If you want to remove someone from the silence just replace the + with -
- To get you silence list command used is just /silence and you shall get the info in your status page.
- If some people wonder how to get others IP you just use /whois nickname and his IP with the rooms he in will appear in your status.
thanks for all and hope it was useful and clear..
|
|
|
| Greetings |
|
Posted by: Abhaya - 30-07-2012, 04:58 PM - Forum: Introduce yourself
- Replies (4)
|
 |
Hello all,
My name is Abhaya and I'm from the USA. Abhaya is a name that means fearless in the Pali and Sanskrit languages of ancient India.
I chat on #buddhism and elsewhere frequently. I am currently applying for the position of chanop in #buddhism to help maintain a more friendly atmosphere there.
I'm glad to be here and hope to contribute to the vitality of IrCQ in as many ways as possible. Thanks for having me!
Abhaya
|
|
|
| How to compile Irssi from SVN (subversion) on Debian/Ubuntu |
|
Posted by: Fersure - 24-07-2012, 08:53 AM - Forum: Linux Stuff
- Replies (1)
|
 |
Compiling Irssi from SVN (subversion) repositories on Debian and Ubuntu is fairly simple. I will try to explain how in tutorial.
Note, this is probably not the most efficient way to built it from source if you are looking for a minimal system. Although if you are building other programs on your machine, you will probably find the added bulk of packages as useful in the future. It's also a far simpler way for users who are uncomfortable going through and installing individual packages.
1) Start by going to your /etc/apt/sources.lst with your preferred text editor. For example, Nano:
Code: sudo nano /etc/apt/sources.lst
Make sure that any listing starting with is uncommented (no '#' before it), save and exit, then type:
2) Bring in the build dependencies for irssi and subversion:
Code: sudo apt-get build-dep irssi subversion
3) Install subversion and links or lynx for converting help files:
Code: sudo apt-get install subversion links
4) Grab Irssi svn repos:
Code: svn co http://svn.irssi.org/repos/irssi/trunk/ irssi
5) Compile:
Code: cd irssi
./autogen.sh # Generates configure script - Add ./configure options here
make -jN # N = Number of processors you have. For most people, adding -j3 should work fine.
sudo make install # sudo is only needed if you are installing into a directory that only root has access to, which is default
And now you're ready to go! For added functionality, consider installing screen so that you can detach and reattach your irssi session.
Code: sudo apt-get install screen
Enjoy. Any queries/comments, please post below. Criticisms welcomed.
|
|
|
|