Re: kmail password

2001-02-24 Thread Patrick Schnorbus
I got it  :-)

(ten minutes later i found a note with the password on it...well...thats life 
*g* )

Patrick

Am Donnerstag, 22. Februar 2001 22:36 schrieb Oswald Buddenhagen:
> > is there a way, how i can get the real password out of the file?
>
> this should/could do the trick. if it doesn't work directly, you still
> are free to look at tcpdump's man page ...
>
> $ su
> # tcpdump -w tcplog port 110
> initiate a mail fetch in kmail
> 
> # less tcplog
>
> have fun sniffing yourself! :)
>
>
> best regards




Re: kde mirror

2001-02-24 Thread Jesse Goerz
On Saturday 24 February 2001 15:04, Pablo de Vicente wrote:
> El Sáb 24 Feb 2001 18:42, Dave Smith escribió:
> > I run several PCs which use KDE2. I have used apt-move to create a local
> > mirror of the main and non-us packages and wish to do the same with the
> > KDE2 packages. Does anyone have a utility (or nifty one liner) which
> > achieves this?
>
>  You may use mirror or rsync.
>
> Mirror is perl script which makes ftp to kde.tdyc.com. It needs a file with
> the rules to exclude/include directories and files. If you are interested I
> can send you the one I use.
>
> You can also use rsync, which probably, is a better solution. I use that to
> mirror debian. I think that there is an "old" message in this list with the
> rsync command you may use for kde.tdyc.com. Wait a minute I look for it:
>
>
> The command is from Achim Bohnet <[EMAIL PROTECTED]>
>
> Arrrgh!  Thanks Quim!!  I always forget that I can list modules with rsync.
> Will put it into cron when 2.0.1 potato debs appear.  FWIW if someone
> else what's to use rsync only for KDE2 i386 potato debs:
>
> cd "$tdyc_mirror_root"
> exec rsync --dry-run -v -v -az --delete --delete-excluded \
> --exclude source/   \
> --exclude incoming/ \
> --exclude changes/  \
> --exclude qt1apps/  \
> --exclude binary-alpha/ \
> --exclude binary-m68k/  \
> --exclude binary-sparc/ \
> --exclude binary-powerpc/ \
> kde.tdyc.com::kde/dists/potato/ .
>
> Remove --dry-run and -v's as you like :)
> Achim
>
>
> Pablo de Vicente.

I expanded on it a little because I have a dialup connection.  It's not guru 
scripting but it works.  This one is for i386 systems.  I export the mirror 
nfs so I can use it for a couple of machines.  Here's the /etc/fstab line on 
my local machines (this is supposed to be all on one line):

servername:/mirror/kde2  /mnt/kde2 nfs 
rsize=8192,wsize=8192,timeo=14,intr,hard,ro 

and their corresponding sources.list line 
deb file:/mnt/kde2 potato main crypto optional

===
#!/bin/bash
#/usr/sbin/mirror_kde2
 
# declare variables
tdyc_mirror_root="/mirror/kde2/dists/potato/"
connection_up=`ifconfig | grep ppp0`
 
# function to do rsync stuff
do_rsync_function ()
{
  cd $tdyc_mirror_root
  exec rsync -v -v -az --dry-run --delete --delete-excluded \
   --exclude source/ \
   --exclude incoming/ \
   --exclude changes/ \
   --exclude qt1apps/ \
   --exclude sword/ \
   --exclude binary-alpha/ \
   --exclude binary-m68k/ \
   --exclude binary-sparc/ \
   --exclude binary-powerpc/ \
   --exclude beta/ \
   kde.tdyc.com::kde/dists/potato/ .
}
 
# need a test to see if online
# then start connection as necessary
 
if [ "$connection_up" == "" ]; then
 pon bellsouth
 sleep 1m
 do_rsync_function
else
 do_rsync_function
fi
 
# remove --dry-run and -v's when satisfied.
# mail output to root?
===




Re: kde mirror

2001-02-24 Thread Simon Hepburn
On Saturday 24 February 2001  5:42 pm, Dave Smith wrote:
> I run several PCs which use KDE2. I have used apt-move to create a local
> mirror of the main and non-us packages and wish to do the same with the
> KDE2 packages. Does anyone have a utility (or nifty one liner) which
> achieves this?

Edit /etc/apt-move.conf so that the line APTSITES includes kde.tdyc.com or 
whatever mirror you are using in /etc/apt/sources.list. I use apt-move 
4.1.13, not sure if this works with the version in potato, but give it a go.

> Also, on a different note, is Xfree86 4.0.2 available for potato?

No. Try Testing.

Simon Hepburn.




Re: kde mirror

2001-02-24 Thread Pablo de Vicente
El Sáb 24 Feb 2001 18:42, Dave Smith escribió:
> I run several PCs which use KDE2. I have used apt-move to create a local
> mirror of the main and non-us packages and wish to do the same with the
> KDE2 packages. Does anyone have a utility (or nifty one liner) which
> achieves this?

 You may use mirror or rsync. 

Mirror is perl script which makes ftp to kde.tdyc.com. It needs a file with 
the rules to exclude/include directories and files. If you are interested I 
can send you the one I use. 

You can also use rsync, which probably, is a better solution. I use that to 
mirror debian. I think that there is an "old" message in this list with the 
rsync command you may use for kde.tdyc.com. Wait a minute I look for it:


The command is from Achim Bohnet <[EMAIL PROTECTED]>

Arrrgh!  Thanks Quim!!  I always forget that I can list modules with rsync.
Will put it into cron when 2.0.1 potato debs appear.  FWIW if someone
else what's to use rsync only for KDE2 i386 potato debs:

cd "$tdyc_mirror_root"
exec rsync --dry-run -v -v -az --delete --delete-excluded \
--exclude source/   \
--exclude incoming/ \
--exclude changes/  \
--exclude qt1apps/  \
--exclude binary-alpha/ \
--exclude binary-m68k/  \
--exclude binary-sparc/ \
--exclude binary-powerpc/ \
kde.tdyc.com::kde/dists/potato/ .

Remove --dry-run and -v's as you like :)
Achim


Pablo de Vicente.




kde mirror

2001-02-24 Thread Dave Smith
I run several PCs which use KDE2. I have used apt-move to create a local
mirror of the main and non-us packages and wish to do the same with the KDE2
packages. Does anyone have a utility (or nifty one liner) which achieves
this?

Also, on a different note, is Xfree86 4.0.2 available for potato?

Cheers

Dave Smith




Re: Starting kde

2001-02-24 Thread John Patton
In-Reply-To: Your message of "Sat, 24 Feb 2001 11:26:06 GMT."
 <[EMAIL PROTECTED]> 
References:  <[EMAIL PROTECTED]> 


The last statement in your .xinitrc file (in your home
directory) should be:

exec kde2

Delete anything else that seems to have to do with any other
window managers. You can use KDE's text editor to do this
(kedit on the command line).

> I'm newbie in Linux and X and I hace a question.
> Each time I run startx, it run automatically the
> icewm, but I want to run directly kde. I tried to
> run on xterm the "startkde", it starts kde but
> doesn't close icewm.
> 
> I guess I have to modify and archive like .xinit,
> .xinitrc or something like that, but I'm not sure
> how to do that.

-- 
John Patton  [EMAIL PROTECTED]
Get my GnuPG public key: finger [EMAIL PROTECTED]

"Minds are like parachutes. They only function when they
are open."  - Sir James Dewar, Scientist (1877-1925)




Starting kde

2001-02-24 Thread Javier Andres Mena Zapata

I'm newbie in Linux and X and I hace a question.
Each time I run startx, it run automatically the
icewm, but I want to run directly kde. I tried to
run on xterm the "startkde", it starts kde but
doesn't close icewm.

I guess I have to modify and archive like .xinit,
.xinitrc or something like that, but I'm not sure
how to do that.

Javier Mena
Universidad del Valle
Cali - Colombia




Compiling Licq, QT-headers

2001-02-24 Thread William Leese
I wanted to build LICQ.. but i keep on running into problems with libqt2-dev 
which wants to remove everything, and libqt2.2-dev which does not exist (same 
dependency replaced by uic, which wont install without libqt(?))

Anyway, is there a way to install the QT-headers from a debian package so 
that i can build the Licq QT plugin?


William.




xchat (ot)

2001-02-24 Thread Uli Schinz
is there a newer version of xchat aveilable for debian, or an equivalent tool.
and is there a newer version of the glibc available for debian?
if so, where can i get them?
thx
ULI




Re: Desktop disappears, everything else works

2001-02-24 Thread David Kempe
> > Hrmmm perhaps that is the answer. It does look like kdebase is an old
version.
> > In doing the most recent apt-get upgrade -u it does say that kdebase is
being
> > held back.
> > How do i force it to get upgraded?
>
> even so..that's not that old.  (however with beta and pre-beta stuff it's
> really a good idea to keep them all at the same level)
>
> I personally use dselect to deal with all my dep problems.

That was the answer. An apt-get dist-upgrade upgraded my kdebase and it was
sweet again.
i can run kdesktop manually and it work. Should be fine when i log out as
well

thanks

dave