Dariush Debian Diary

About

Diariusz Dariusza

index | rss1.0

Categories

Archives

Valid XHTML 1.1 | Valid CSS
powered by blosxom.

2003-02-21

Quit jammin me

	You got me in a corner
	You got me against the wall
	I got nowhere to go
	I got nowhere to fall

	Take back your insurance
	Baby nothin's guaranteed  
	Take back your acid rain
	Let your T.V. bleed

(Chorus)
	You're jammin' me, you're jammin' me,
	Quit jammin' me
	Baby you can keep me painted in a corner
	You can walk away, but it's not over

	Take back your angry slander
	Take back your pension plan
	Take bakc your ups and downs of your life
	In raisin-land

	Take back Vanessa Redgrave
	Take back Joe Piscopo
	Take back Eddie Murphy
	Give 'em all some place to go

(Chorus)
	Take back your iranian torture
	And the apple in young Steve's eye
	Yeah take back your losing streak
	Check your front wheel drive


	Take back Pasadena
	Take back El Salvador
	Take back that country club
	They're tryin' to build outside my door

2003-02-17

FTP-SSL

There are few extensions to ftp protocol that allows for encrypting both control and data connections. lftp in debian supports this in sid. For woody you can recompile it yourself or use
deb http://eyck.forumakad.pl/woody/ ./

2003-02-15

I WANNA BE SEDATED - THE RAMONES

Twenty-twenty-twenty four hours to go 
I wanna be sedated
Nothin' to do and no where to go-o-oh 
I wanna be sedated
Just get me to the airport 
put me on a plane 
Hurry hurry hurry 
before I go insane
I can't control my fingers 
I can't control my brain 
Oh, no-oh-oh-oh-oh

Twenty-twenty-twenty four hours to go 
I wanna be sedated 
Nothin' to do and no where to go-o-oh 
I wanna be sedated 
Just put me in a wheelchair 
and put me on a plane 
Hurry hurry hurry before 
I go insane 
I can't control my fingers 
I can't control my brain 
Oh, no-oh-oh-oh-oh

Twenty-twenty-twenty four hours to go 
I wanna be sedated 
Nothin' to do and no where to go-o-o 
I wanna be sedated 
Just put me in a wheelchair 
get me to the show 
Hurry hurry hurry 
before I go loco 
I can't control my fingers 
I can't control my toes 
Oh, no-oh-oh-oh-oh 

Twenty-twenty-twenty four hours to go 
I wanna be sedated 
Nothin' to do and no where to go-o-o 
I wanna be sedated 
Just put me in a wheelchair 
get me to the show 
Hurry hurry hurry 
before I go loco 
I can't control my fingers 
I can't control my toes 
Oh, no-oh-oh-oh-oh 

Ba-ba-bamp-ba ba-ba-ba-bamp-ba 
I wanna be sedated 
Ba-ba-bamp-ba ba-ba-ba-bamp-ba 
I wanna be sedated 
Ba-ba-bamp-ba ba-ba-ba-bamp-ba 
I wanna be sedated 
Ba-ba-bamp-ba ba-ba-ba-bamp-ba 
I wanna be sedated 

Transferring blosxom files to another server

cd ~/public_html && tar -zc blosxom | ssh another.server.pl 'cd  public_html && tar zxv '
Why like this?

Because blosxom depends on mtime for sorting, and this way we preserve mtime.

2003-02-13

Debian mplayer package.

Add deb http://eyck.forumakad.pl/debian ./ line to your
/etc/apt/sources.list
and then apt-get install mplayer. If you'd like to see some OSD, then apt-get install mplayer-fonts, and if default gui skin is not enough for you: apt-get install mplayer-skins.

2003-02-12

Generating key-pair for ssh

First: generate the keypair with:
ghost eyck 9:51 ~ > ssh-keygen -t dsa
Generating public/private dsa key pair.
Enter file in which to save the key (/home/eyck/.ssh/id_dsa): 
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /home/eyck/.ssh/id_dsa.
Your public key has been saved in /home/eyck/.ssh/id_dsa.pub.
The key fingerprint is:
57:4a:12:94:31:ad:52:b5:ab:56:6e:72:32:e4:8c:29 eyck@ghost
And then transfer it to the destination server with:
cat ~/.ssh/id_dsa.pub | ssh ridik.inside 'cat - >> ~/.ssh/authorized_keys'

2003-02-11

Installing Oracle9i on OS/390

Remember to pick SID shorter then 5 chars. It's used as parameter in some jobs ( like sqlplus etc ..) and due to OS/390 limitation can't be longer then 5. ( Try ODB1, ODB2 ;)