Category: linux
linux
irssi in screen, popup in gnome (or KDE)
by smeal •
I was looking for way how to be notified about new event in irssi running in screen on remote server. After few minutes I’ve found many howtos on webblogs. Here is the most simple one:
1.) Download script fnotify.pl to ~/.irssi/scripts/fnotify.pl and make symbolic link to .irssi/scripts/autorun (ln -s ~/.irssi/scripts/fnotify.pl ~/.irssi/scripts/autorun/fnotify.pl [to automatic start script after new irssi start])
– manually you can load this script in irssi by /load fnotify
this script will generate file ~/.irssi/fnotify with messages for you, or highlighted messages (command /hilight in irssi)
2. Now we need some local script which will check file ~/.irssi/fnotify on remote server and display popup message, something like this:
#!/bin/bash
ssh username@host “: > .irssi/fnotify ; tail -f .irssi/fnotify ” |
sed -u ‘s/[
You can also put this script in automatic started services (System -> Preferences -> Sessions)
bookmarks, linux
Explore2fs
by smeal •
S tymto softikom je mozne prezerat linuxove particie pod win
pripadne pozriet si disk vytvoreny cez wubi
http://www.chrysocome.net/explore2fs
(soft netreba instalovat, staci spustit)
bookmarks, linux
Generating native excell files in perl
by smeal •
http://www.linuxjournal.com/content/generating-native-excel-files-perl
linux
Simple backup using tar
by smeal •
tar cvpzf /backup/backup.tgz –exclude=/backup –exclude=/bordel –exclude=/dev –exclude=/home –exclude=/media –exclude=/proc –exclude=/tmp –exclude=/cdrom –exclude=/mnt –exclude=/pom –exclude=/sys /
tar xvpfz backup.tgz -C /
funny, linux, obrazky
Lunik IX
by smeal •
bookmarks, linux
How to jail irssi
by smeal •
Are there guys asking you for shell only for irc client? Why not to make it safer.
http://fluxbox-wiki.org/index.php/Howto_jail_irssi
linux
How to join more video files into one in linux
by smeal •
mencoder -forceidx -ovc copy -oac copy -o output.avi part1.avi part2.avi part3.avi ….