March 18th, 2008

AfterStep 2.2.8 released!

Alguem ainda usa ?

Major bugfix release:

  • Found and plugged an elusive memory leak.
  • Many other minor bugfixes.

Get it from here : ftp.afterstep.org/stable/AfterStep-2.2.8.tar.gz.
Or if you already have 2.1.0 or later installed – you can use smaller upgrade packages : ftp.afterstep.org/stable/AfterStep-2.2.8-noimages.tar.gz.

Desktop
wm

Comments (0)

Permalink

Instalando e17 do cvs

Facil, mas nao tao rapido…

1o instale as libs necessarias

1
 sudo aptitude install build-essential cvs libtool libltdl3-dev automake1.9 autotools-dev libpopt-dev libcurl3-dev libx11-dev x11proto-xext-dev libbz2-dev libid3tag0-dev libpng12-dev libtiff4-dev libungif4-dev libjpeg62-dev libssl-dev libfreetype6-dev bison flex xlibs-dev gettext libimlib2-dev libxml2-dev libxcursor-dev libgtk1.2-dev autoconf pkg-config libpng3-dev libxine-dev libxkbfile-dev libsqlite3-dev giblib-dev libxmu-dev libxdamage-dev libxcomposite-dev libtag1-dev libtagc0-dev giblib-dev libasound2-dev

depois baixe o easy_e17.sh depois rode:

1
 ./easy_e17.sh -i --fullcvs

pode ser q falte algumas libs, e q alguns progs nao compile
para este ultimo utilize a opcao –skip=prog ex:

1
./easy_e17.sh --fullcvs --skip=enthrall

encontrei no http://www.enlightenment.org/p.php?p=download&l=en

q manda para o http://ubuntuforums.org/showthread.php?t=97199&highlight=E17+cvs

funciona para debian tb, claro

Desktop
e17
wm

Comments (0)

Permalink

Cluster SSH

 sudo aptitude install clusterssh

Depois bem simples o scriptao, mas util:

1
vim cgo.sh

cgo.sh:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
 
if `echo $* | grep "*" > /dev/null`; then
        servers=""
        server=`echo $1 | cut -d* -f1`
        for x in `egrep ^$server ~/.ssh/known_hosts | cut -d, -f1`
        do
                servers="$servers $x"
        done
        cssh $servers
        exit
fi
 
if `echo $2 | egrep '^[0-9]' > /dev/null ` &&  `echo $3 | egrep '^[0-9]' > /dev/null`; then
        servers=""
        for x in `seq $2 $3`
        do
                servers="$servers "$1""$x""
        done
        cssh $servers
        exit
fi
 
cssh $*
exit

da pra colocar no /etc/bash_completion tb…

soh achar a linha

 complete -F _known_hosts traceroute traceroute6 tracepath tracepath6 \
ping fping telnet host nslookup rsh rlogin ftp dig ssh-installkeys mtr cgo.sh

que ele vai comecar a completar com o tab utilizando o /etc/hosts e o ~/.ssh/known_hosts
lembresse de desabilitar o HashKnownHosts colocando no

cgo.sh

admin stuff

Comments (1)

Permalink