[possibly off-topic] pppdup package not working properly

1999-07-14 Thread S. M.
Hey all,
I just installed the pppupd keepalive daemon and it doesn't work for
me.
It installed properly and will successfully establish a connection
after a reboot.
But after a disconection from the isp it can't seem to re-establish the
connection.
(ie it calls the isp but fails to establish the ppp connection)
The doc for pppupd is very poor and doesn't explain what are the calls
made by the daemon upon connection.
Anyone has an idea about what could be the problem or has any hints?
many thanks,
Sebastian Massy
_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


Questions: apt-get, kernel compile, pump/ifconfig

2001-03-16 Thread S M
Hi, I have several unrelated questions I was hoping someone might be 
able to help me out with.


1. apt-get won't install kde of cd-rom

I have a CD-ROM on which lie, among others, the directories

kde/main/binary-i386/
kde/crypto/binary-i386/
updates/main/binary-i386/

and more, in which are, among other files, Packages.gz,
kdebase_2.1-final-0.potato1_i386.deb, and the rest of the kde packages.
In Packages.gz is, among other entries, one for the kdebase.

So I type this:
apt-cdrom --thorough add

and I type in a name for the CD and it appears to find the Packages.gz
and add its contents to the database.  For example, in sources.list I
see:

deb cdrom:[CHGUY Disk B4]/ kde/main/binary-i386/
deb cdrom:[CHGUY Disk B4]/ updates/main/binary-i386/

and others for the other directories on the CD with packages.
So I do an 'apt-get update'.

But typing:
apt-get install kdebase

tells me that kdebase has no available version, but exists in the
database. Same for any other kde-package.

But sometimes when I am installing another application with many packages
that it depends on and I haven't installed, apt-get will ask me to insert
the CHGUY Disk B4 and apparently install some packages off of the updates
branch (maybe those that aren't newer in woody). But it can't seem to
remember that it saw kdebase on that CD!

I know that I can download kde 2.1, but I got this CD and would at least 
like to understand why it doesn't work.


2. kernel compile, missing commands and need explicit instructions

a. When I try to make the kernel, Make complains that it cannot find the 
command "wish". I'm obviously just missing a basic development package, 
but I have not had any luck discovering which package has wish in it.


b. Is there a set of canonical instructions for how to compile a new 
2.4.2 kernel in Debian potato->woody? In particular, instructions for 
the kernel-package package? I have installed a kernel-source-2.4.2.deb 
file but the newest kernel-package file that I can find seems to be for 
2.2 and so I haven't put that on yet. I just don't quite understand how 
kernel-package works, and can't find docs for it.


3. Promiscuos Mode

I use a notebook computer with a Xircom CardBus Ethernet 10/100 CBE2-100 
PCMCIA nic, and I use DHCP to get my LAN IP from the router. When I boot 
up, the card is recognized and pump works successfully, and the router 
sees my computer, but my computer cannot access the network at all - I 
cannot ping or telnet to the gateway, and I cannot get out to the 
internet at all. If I type "ifconfig eth0 promisc" then my card goes 
into Promiscuous Mode and now everything works as expected. My 
questions: Why do I have to go into Promiscuous Mode, and are there any 
harmful side effects to being in this mode?


Thanks,
Steve



"dpkg-reconfigure" dash no longer works

2023-06-09 Thread S M
Good day.

I noticed on a newly installed system with Debian 12 that dpkg-reconfigure no 
longer allows to switch the /bin/sh symlink from dash to bash. This is 
apparently intentional as per the following:

https://launchpad.net/debian/+source/dash/0.5.11+git20210903+057cd650a4ed-4

I couldn't find any additional context or rationale. I would like to know if 
this is going to be a permanent change. Debian currently disables command line 
editing in dash builds, so that makes it unusable as an interactive shell.

Thank you very much for everything.


Re: "dpkg-reconfigure" dash no longer works

2023-06-09 Thread S M
On Fri, Jun 09, 2023 at 04:07:03PM -0400, Greg Wooledge wrote:

> Nothing you wrote here is incorrect, but none of it explains the policy
> change that has occurred.  I won't even say it's a bad policy change.
> It makes at least a little bit of sense...

Yeah, I'd also like to know what was the reason to change this.
Regarding a workaround, I ended up creating a symlink /usr/local/bin/sh
pointing to bash and chsh to that.

But, the way I see it, any portable POSIX-compliant script should be
able to run in both dash and bash. If a script runs with dash but not
bash, it means one of three things:

   1 The script is not portable to begin with. (the script has a bug or
   the wrong shebang)

   2 The script is interpreted incorrectly by bash but not dash. (bash
   has a bug)

   3 The script is portable but it's interpreted incorrectly by dash,
   and this wrong behavior is what the scriptwriter wants. (dash has a
   bug)

So it seems to me that this change will only end up sweeping bugs under
the rug. Which I guess is not that bad of a thing as long as the system
works, but I digress. In any case, all three can be fixed by changing
the shebang to #!/bin/dash without much additional work. So I'm just
curious about what was the reason behind taking away this choice from
the user.



Re: "dpkg-reconfigure" dash no longer works

2023-06-09 Thread S M
On Fri, Jun 09, 2023 at 08:00:51PM -0400, Greg Wooledge wrote:
> On Fri, Jun 09, 2023 at 05:45:04PM -0500, S M wrote:
> > Regarding a workaround, I ended up creating a symlink /usr/local/bin/sh
> > pointing to bash and chsh to that.
> 
> Why?  Why not simply chsh to /bin/bash if that's what you want as your
> interactive shell?
> 
> Are you somehow relying on bash's disabling of certain features when
> invoked as "sh", in interactive mode?  I don't understand that at all.
> 

Yes. POSIX-compliance is a feature to me. I'd actually be fine with
using dash itself but the lack of command line editing and filename
completion is a deal-breaker to me.



Re: "dpkg-reconfigure" dash no longer works

2023-06-10 Thread S M
On Sat, Jun 10, 2023 at 02:12:14PM +0100, Darac Marjal wrote:

> Is command-line editing part of POSIX, then? Are you suggesting that dash is
> missing some bit of POSIX compliance? That's possible.

Command-line editing in vi-mode is defined by POSIX, but it's not mandatory as
far as I know.



Re: "dpkg-reconfigure" dash no longer works

2023-06-10 Thread S M
On Sat, Jun 10, 2023 at 09:49:14AM -0400, Greg Wooledge wrote:

> There's no point debating any further.  S M has a unique desire, which
> is not shared by any other person I've ever heard of, and they're going
> to do what they want.

I didn't mean this to be a discussion about my particular wants or needs (As I
said, I have that sorted out already). I was just raising a question about the
reasons for this change as it removes a theoretically harmless option that was
there before.



packages not supporting resume

2006-04-12 Thread S. M. Ibrahim
At the time of using apt-get dist-upgrade (sarge to sid), one time it's tried 
to download gcompris-data that's around 48MB , after completing of 20% i have 
to restart my pc. After starting again this dist-upgrade, its started from 
the begining of gcompris-data .
I also got the same thing today  ago.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: apt-build

2006-04-12 Thread S. M. Ibrahim
On Wednesday 12 April 2006 13:04, Adam Porter wrote:
> S. M. Ibrahim (lavluda) wrote:
> > Any body here useing apt-build. I am interested to know your openioun
> > about this tool.
>
> I think it has great, great potential, but it still has some important bugs
> that can make it unusable at times (like simply not finding a source
> package, when $apt-get source$ or $apt-src install$ works fine).  I hope it
> sees more active development.
I tried this, but never get success :( 

--
S. M. Ibrahim (Lavlu)
HomePage: http://lavluda.tripod.com
Blog: http://lavluda.blogspot.com
Cute Picture: http://cutepicture.blogspot.com
Yahoo: lavluda MSN: lavluda Skype: lavluda


0x022DAE4FF01C34237E6C181A182213EFB0BB0E04.asc
Description: application/pgp-keys


pgpkDjLRu9NKv.pgp
Description: PGP signature


[OT] gpg check

2006-04-13 Thread S. M. Ibrahim
Please check my mail if gpg works here :)
-- 
--
S. M. Ibrahim (Lavlu)
HomePage: http://lavluda.tripod.com
Blog: http://lavluda.blogspot.com
Cute Picture:  http://cutepicture.blogspot.com
Yahoo: lavluda MSN: lavluda Skype: lavluda

-- 


pgpUdqltMmbwZ.pgp
Description: PGP signature


Re: Xorg upgrade troubles

2006-04-13 Thread S. M. Ibrahim
On Thursday 13 April 2006 20:40, L.V.Gandhi wrote:
> I also upgraded sid.
> I didn't face any problem with x or kdm or keyboard
>
You will face this if you make a dist-upgrade toady. 
--
S. M. Ibrahim (Lavlu)
HomePage: http://lavluda.tripod.com
Blog: http://lavluda.blogspot.com
Cute Picture:  http://cutepicture.blogspot.com
Yahoo: lavluda MSN: lavluda Skype: lavluda


pgpbk1KpyuP4u.pgp
Description: PGP signature


Re: Xorg upgrade troubles

2006-04-13 Thread S. M. Ibrahim
On Friday 14 April 2006 08:21, Michael M. wrote:
> S. M. Ibrahim wrote:
> > On Thursday 13 April 2006 20:40, L.V.Gandhi wrote:
> >> I also upgraded sid.
> >> I didn't face any problem with x or kdm or keyboard
> >
> > You will face this if you make a dist-upgrade toady.
>
> Why?  What changed today?  I upgraded yesterday to Xorg 7.0 without a
> single thing going wrong.
>
> But I'm not using KDE or KDM.  Perhaps the problems with the new X are
> only KDE related.
>
> --

Sorry for this post. I tell  him (L.V.Gandhi) to make dist-upgrade now, as i 
found that, at the first upgrade you may not get xserver-xorg 7.1 . I tested 
this on one of my pc. After that, when i make apt-get update and check the 
cache policy of xserver-xorg , i found 7.1 version is waiting  for upgrade. 

--
S. M. Ibrahim (Lavlu)
HomePage: http://lavluda.tripod.com
Blog: http://lavluda.blogspot.com
Cute Picture:  http://cutepicture.blogspot.com
Yahoo: lavluda MSN: lavluda Skype: lavluda


pgpaZTiMbGpON.pgp
Description: PGP signature


scim with openoffice 2.0.2

2006-04-15 Thread S. M. Ibrahim
i am now using openoffice 2.0.2 
But problem is, i can't use scim to get work our local keyboar layout.

Any body using scim with oop 2 ?

--
S. M. Ibrahim (Lavlu)
HomePage: http://lavluda.tripod.com
Blog: http://lavluda.blogspot.com
Cute Picture:  http://cutepicture.blogspot.com
Yahoo: lavluda MSN: lavluda Skype: lavluda


pgpNoR3e2eBXp.pgp
Description: PGP signature


dhcp problem

2007-03-29 Thread S. M. Ibrahim (Lavlu)

My isp is providing me the ip using DHCP. everything fine. But they are
sending 3 nameserver. And first DNS server is not responding. SO it take
time to switch to the secound dns. So, it's making problem (slow down).
I want to keep fix (will not updated or replace by dhcp) the
/etc/resolv.conf with only 2 nameserver (that are working).
Any idea, how to do this ?

--
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: A basic question about apt-cdrom (was: Handling apt-get, apt-cdrom, sources.list, cdroms.list)

2007-08-07 Thread S. M. Ibrahim (Lavlu)
On Tue, 2007-08-07 at 18:35 +0200, Rodolfo Medina wrote:

> Hi.
> 
> After adding a CD-ROM with `apt-cdrom', running `apt-get update' will be
> enough?  Or should I also run `apt-get dist-upgrade' as a third step?
> 
> I couldn't find an answer in the Debian documentation.
> 
> Tnanks for any reply,
> Rodolfo
> 
> 

apt-cdrom is enough. Even you don't need apt-get update.
-- 
S. M. Ibrahim (Lavlu)
web application developer
somewherein...

Blog: www.lavluda.com


Do you blog ???
Start blogging in Bangla www.somewhereinblog.net



Re: SPAM!!!

2007-09-10 Thread S. M. Ibrahim (Lavlu)

Sarunas Burdulis wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Chuck Payne wrote:
  

Guys,

What is going on? Last three days, I got a increase of spam and it all
coming from this list. Are you guys working to fix it?

Payne




No spam is getting to me via this route (below). How do you get d-u?

  


i am also getting so many spam :(
receiving mail directly to gmail.

=== start headers fragment ===
Received: from murphy.debian.org ([70.103.162.31])
by gauss.dartmouth.edu with esmtp (Exim 4.63)
(envelope-from <[EMAIL PROTECTED]>)
id 1IUoJp-0004vY-VF
for [EMAIL PROTECTED]; Mon, 10 Sep 2007 14:49:15 -0400
Received: from localhost (localhost [127.0.0.1])
by murphy.debian.org (Postfix) with QMQP
id CEF852E8B2; Mon, 10 Sep 2007 18:48:57 + (UTC)
Old-Return-Path: <[EMAIL PROTECTED]>
X-Original-To: [EMAIL PROTECTED]
Received: from localhost (localhost [127.0.0.1])
by murphy.debian.org (Postfix) with ESMTP id 9E9FE2EA2C
for <[EMAIL PROTECTED]>; Mon, 10 Sep 2007 18:48:57 + (UTC)
Received: from murphy.debian.org ([127.0.0.1])
by localhost (lists.debian.org [127.0.0.1]) (amavisd-new, port 2525)
with ESMTP id 15975-59 for <[EMAIL PROTECTED]>;
Mon, 10 Sep 2007 18:48:53 + (UTC)
=== end headers fragment ===



Sarunas

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFG5ZNBejaFVltl6E8RApXtAKCLKwo8cCqtjpSSInjPvs1LfRTdPQCgrDVw
lpDa5s4uXaNBhW/+mGyjMnc=
=fLQW
-END PGP SIGNATURE-


  



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




mobidata edge modem

2007-11-07 Thread S. M. Ibrahim (Lavlu)
anybody here got success to use modidata edge modem in debian ?



-- 
S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Blog: http://lavluda.com
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


debootstap problem

2006-08-05 Thread S. M. Ibrahim (Lavlu)




what wrong with debootstrap ?? (i am traing to install debian sid as chroot under debian sarge)
i tried :

debootstrap sid /sid-root/ http://mirrors.kernel.org/debian
after some download i got this messege:
E: Couldn't download base-config


what does it mean ???



-- 
S. M. Ibrahim (Lavlu) <[EMAIL PROTECTED]>







sarge to sid

2006-08-06 Thread S. M. Ibrahim (Lavlu)




tring to move to sid from sarge but getting some file missing message. 

Get:15 http://mirrors.kernel.org unstable/main debconf 1.5.2 [134kB]
Err http://mirrors.kernel.org unstable/main gcc-4.1-base 4.1.1-9
  404 Not Found [IP: 204.152.191.7 80]
Err http://mirrors.kernel.org unstable/main libgcc1 1:4.1.1-9
  404 Not Found [IP: 204.152.191.7 80]
Get:16 http://mirrors.kernel.org unstable/main libattr1 2.4.32-1 [9034B]

i tried apt-get update so much time.

useing http://mirrors.kernel.org/debian/ unstable main contrib non-free




-- 
S. M. Ibrahim (Lavlu) <[EMAIL PROTECTED]>







canon pixma ip1000

2006-08-10 Thread S. M. Ibrahim (Lavlu)
any body using this prineter in debian sucessfully. I got the driver for linux but it only work on suse or opensuse :(-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.com
Blog: http://lavluda.awardspace.comYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: canon pixma ip1000

2006-08-10 Thread S. M. Ibrahim (Lavlu)
great, can you please send the driver or link and procedure ??On 8/10/06, Michael Ott <[EMAIL PROTECTED]
> wrote:Hello!> any body using this prineter in debian sucessfully. I got the driver for linux
> but it only work on suse or opensuse :(I have the pixma ip300 and it works with the Canon S800 driver. Maybe itworks also for you.CU  Michael--,''`.   Michael Ott, e-mail: michael at zolnott dot de
   : :' :   Debian SID on Thinkpad T43:   `. `'http://www.zolnott.de/laptop/ibm-t43-uc34nge.html `-Jeden Mittwoch von 21 - 24 Uhr. Zosh! auf Radio Z.
Das Härteste, was der Musikmarkt zu bieten hat. http://www.zosh.deOnline hören: http://www.radio-z.net
-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.comBlog: http://lavluda.awardspace.comYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: How best to maintain a chroot environment?

2006-08-11 Thread S. M. Ibrahim (Lavlu)
I am not sure what you mean by jail . But i use a sid with chroot whithout any problem (apt works fine).
http://www.debian.org/doc/manuals/reference/ch-tips.en.html#s-chroot
I followed this instruction :)On 8/11/06, S Scharf <[EMAIL PROTECTED]> wrote:
I am running a server with apache in a chroot jail ( using stable)
, and am looking for an easier way to maintain it with security updates.Jailer seems to want to delete the entire directory and rewirte it for updates. Not practical with all of my server pages in the
chroot tree.debootstrap intalls an entire distribution, but having login and sysvinit etc. in my chroot jail is overkill.Is there a (simple) way to just get apt working from inside the chroot jail to update a few packages?
(or failing that dpkg?)Stuart

-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.comBlog: http://lavluda.awardspace.com
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


xgl on debian sid

2006-09-15 Thread S. M. Ibrahim (Lavlu)
how can i install xgl on sid ?

-- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg public key: A9910F9E


signature.asc
Description: This is a digitally signed message part


swap problem

2006-09-16 Thread S. M. Ibrahim (Lavlu)
i am getting some problem with swap. the swap is not starting ok.


[EMAIL PROTECTED]:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
#
proc/proc   procdefaults0   0
/dev/sda6   /   reiserfs notail  0   1
/dev/sda5   noneswapsw  0   0
/dev/hdb/media/cdrom0   iso9660 ro,user,noauto  0   0
/dev/fd0/media/floppy0  autorw,user,noauto  0   0
/dev/sda1   /media/c vfatdefaults,utf8,umask=007,gid=46 0
1
/dev/sda7   /media/dvfatdefaults,utf8,umask=007,gid=46 0
1
/dev/sda8   /media/e vfatdefaults,utf8,umask=007,gid=46 0
1
[EMAIL PROTECTED]:~$ free
 total   used   free sharedbuffers
cached
Mem:508572 471344  37228  0  87932
141092
-/+ buffers/cache: 242320 266252
Swap:0  0  0
[EMAIL PROTECTED]:~$

what is the problem here ?
-- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg public key: A9910F9E


signature.asc
Description: This is a digitally signed message part


Re: swap problem

2006-09-17 Thread S. M. Ibrahim (Lavlu)
On Sun, 2006-09-17 at 11:23 +0200, Mathias Brodala wrote:
> Hello.
> 
> > i am getting some problem with swap. the swap is not starting ok.
> > 
> > 
> > [EMAIL PROTECTED]:~$ cat /etc/fstab
> > # /etc/fstab: static file system information.
> > #
> > #
> > proc/proc   procdefaults0   0
> > /dev/sda6   /   reiserfs notail  0   1
> > /dev/sda5   noneswapsw  0   0
check this line.


> > /dev/hdb/media/cdrom0   iso9660 ro,user,noauto  0   0
> > /dev/fd0/media/floppy0  autorw,user,noauto  0   0
> > /dev/sda1   /media/c vfatdefaults,utf8,umask=007,gid=46 0
> > 1
> > /dev/sda7   /media/dvfatdefaults,utf8,umask=007,gid=46 0
> > 1
> > /dev/sda8   /media/e vfatdefaults,utf8,umask=007,gid=46 0
> > 1
> 
> There is no swap entry here so it is obvious that it won’t get started. You 
> have
> to enter something like the following into your /etc/fstab:
> 
> > /dev/hdxN   noneswapsw  0   0
> 
allready its available on fstab. some this really wrong, no live cd can
also use that partation. 
how can i reformat the swap partation for use ?
> Then swap will be activated on boot. (You can activate it for you current
> session via „swapon /dev/hdxN“.)
> 
> 
> Regards, Mathias
> 
-- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg public key: A9910F9E


signature.asc
Description: This is a digitally signed message part


Re: swap problem

2006-09-17 Thread S. M. Ibrahim (Lavlu)
solved by mkswarpOn 9/17/06, Mathias Brodala <[EMAIL PROTECTED]> wrote:
Hello.(Can't Evolution reply to list? I thought I read something like that somewhere.)>>>
/dev/sda5  
noneswapsw  0  
0> check this line.Whoops, my bad. I was looking for hdxN>> There is no swap entry here so it is obvious that it won't get started. You have>> to enter something like the following into your /etc/fstab:
>>>>>
/dev/hdxN  
noneswapsw  0  
0> allready its available on fstab. some this really wrong, no live cd can> also use that partation.> how can i reformat the swap partation for use ?Use „mkswap".Regards, Mathias
--debian/rules-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.comBlog: 
http://lavluda.tkYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: swap problem

2006-09-17 Thread S. M. Ibrahim (Lavlu)
On 9/18/06, S. M. Ibrahim (Lavlu) <[EMAIL PROTECTED]> wrote:
solved by mkswarp
opps , spelling mistake  "mkswap" 
On 9/17/06, 
Mathias Brodala <[EMAIL PROTECTED]> wrote:

Hello.(Can't Evolution reply to list? I thought I read something like that somewhere.)>>>
/dev/sda5  
noneswapsw  0  
0> check this line.Whoops, my bad. I was looking for hdxN>> There is no swap entry here so it is obvious that it won't get started. You have>> to enter something like the following into your /etc/fstab:
>>>>>
/dev/hdxN  
noneswapsw  0  
0> allready its available on fstab. some this really wrong, no live cd can> also use that partation.> how can i reformat the swap partation for use ?Use „mkswap".Regards, Mathias

--debian/rules-- S. M. Ibrahim (Lavlu)Home page: 
http://lavluda.tripod.comBlog: 
http://lavluda.tkYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.comBlog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


test message

2007-04-02 Thread S. M. Ibrahim (Lavlu)

hi all,
   I join this list more then 3 days ago, still now not getting any mail.
That's why testing.
Please response this mail (please use cc to me)

--
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: test message

2007-04-03 Thread S. M. Ibrahim (Lavlu)

thanks, it's now working ok :)

On 4/3/07, Matus UHLAR - fantomas <[EMAIL PROTECTED]> wrote:


On 03.04.07 07:20, S. M. Ibrahim (Lavlu) wrote:
> From: "S. M. Ibrahim (Lavlu)" <[EMAIL PROTECTED]>
> Date: Tue, 3 Apr 2007 07:20:33 +0600
> Subject: test message
> To: debian-user@lists.debian.org
>
> hi all,
>I join this list more then 3 days ago, still now not getting any
mail.
> That's why testing.
> Please response this mail (please use cc to me)

Did you receive subscribe confirmation? Did you follow instructions in it?
Search in your spam folder if you haven't found any.

... hotmail is known to drop unsubscribe requests... I hope gmail does not
the same for subscribe requests, but I'm not sure...
--
Matus UHLAR - fantomas, [EMAIL PROTECTED] ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
Chernobyl was an Windows 95 beta test site.





--
S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: dhcp problem

2007-04-04 Thread S. M. Ibrahim (Lavlu)


I had a similar problem.  The file /etc/dhcp3/dhclient.conf is the file
that controls resolv.conf (at least on this system).  You can specify
which DNS is used first by using

prepend domain-name-servers xxx.xxx.xxx.xxx;

replacing of course the x's with the ip address of the DNS.  This line
is already present using 127.0.0.1 but is commented out.

I have tried it, and it works.



Yea, it's working, thanks.


Joe

- --
Registerd Linux user #443289 at http://counter.li.org/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGC+tsiXBCVWpc5J4RArQdAKDO10MEfaW4p/3oBrJbWO3NplhEtQCghLNz
GZiR4zMqeuWw4Qy33w6LmjY=
=3+HX
-END PGP SIGNATURE-


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]





--
S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


reiserfs to ext3

2007-04-04 Thread S. M. Ibrahim (Lavlu)

My system now runing on reiserfs partation, i want to make it ext3 without
reinstalling debian. any idea ?

--
S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: reiserfs to ext3

2007-04-04 Thread S. M. Ibrahim (Lavlu)

On 4/4/07, Greg Folkert <[EMAIL PROTECTED]> wrote:


On Wed, 2007-04-04 at 21:14 +0600, S. M. Ibrahim (Lavlu) wrote:
> My system now runing on reiserfs partation, i want to make it ext3
> without reinstalling debian. any idea ?

You have to have a spare partition large enough to handle each
partition's data in a tar.gz file.

Do you have this? if no... then I am sorry.

If yes, please respond on list to this. And I will write a summary on
how to do it.
--


yea, i have , please write details.
--
S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: reiserfs to ext3

2007-04-04 Thread S. M. Ibrahim (Lavlu)

On 4/4/07, Johannes Wiedersich <[EMAIL PROTECTED]> wrote:


If you have enough disk space to accomodate your data *without*
compression you could do the following:

- boot a 'rescue system' (I recommend knoppix) from CD or usb
- mount both your partition and the one with the free space
- rsync -avx your data to the free space
- reformat your partition to ext3 (all data will be lost, so make sure
  you have good backups!)
- rsync all your data back to the new ext3-partition
- adjust your /etc/fstab (replace reiserfs by ext3)
- cross your fingers and reboot



OK, but  if copy the file to  fat32 partion,  any problem ?

tar would work on similar lines. tar can use compression, rsync is

probably faster (plus you have all your files as a backup; if one of
those files would get corrupted not everything is lost).

Take care that you properly understand each step, verify the options. Be
aware that a typo may lead to data loss...

Take care, good luck!

Johannes


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]





--
S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: reiserfs to ext3

2007-04-05 Thread S. M. Ibrahim (Lavlu)

On 4/5/07, Michael Pobega <[EMAIL PROTECTED]> wrote:


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, Apr 05, 2007 at 07:34:03AM -0500, Owen Heisler wrote:
> On Thu, 2007-04-05 at 08:32 +0530, Kushal Kumaran wrote:
> > On 4/5/07, S. M. Ibrahim (Lavlu) <[EMAIL PROTECTED]> wrote:
> > > On 4/4/07, Johannes Wiedersich
> > > <[EMAIL PROTECTED]> wrote:
> > > > If you have enough disk space to accomodate your data *without*
> > > > compression you could do the following:
> > > >
> > > > - boot a 'rescue system' (I recommend knoppix) from CD or usb
> > > > - mount both your partition and the one with the free space
> > > > - rsync -avx your data to the free space
> > > > - reformat your partition to ext3 (all data will be lost, so make
sure
> > > >   you have good backups!)
> > > > - rsync all your data back to the new ext3-partition
> > > > - adjust your /etc/fstab (replace reiserfs by ext3)
> > > > - cross your fingers and reboot
> > >
> > > OK, but  if copy the file to  fat32 partion,  any problem ?
> > >
> >
> > You'll lose the permission bits and owner/group, etc.  (Maybe even
> > filename case, but I'm not sure).  Use tar if all you have is fat32.
>
> Note too that FAT32 maximum file size is 4GB.
>

Also might want to note that you WILL lose filename case, FAT32 only
allows for lowercase characters in filenames.



Thanks, i am going to try now, i will inform you the result.

--
S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: reiserfs to ext3

2007-04-05 Thread S. M. Ibrahim (Lavlu)

than

On 4/5/07, S. M. Ibrahim (Lavlu) <[EMAIL PROTECTED]> wrote:


On 4/5/07, Michael Pobega <[EMAIL PROTECTED]> wrote:
>
>
> Also might want to note that you WILL lose filename case, FAT32 only
> allows for lowercase characters in filenames.




Thanks, i am going to try now, i will inform you the result.


thanks everybody, everything  goes fine, except the grub, i had to run
"grub-install /dev/sda" to reinstall it.

--

S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda





--
S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


bad sign

2007-04-07 Thread S. M. Ibrahim (Lavlu)

I am getting this message at the time of updating source list.

shanazsoft:/home/ibrahim# apt-get update Get:1
http://www.debian-multimedia.org sid Release.gpg [189B]
Get:2 http://ftp.no.debian.org sid Release.gpg [189B]
Hit http://ftp.no.debian.org sid Release
Err http://ftp.no.debian.org sid Release

Get:3 http://ftp.no.debian.org sid Release [79.6kB]
Get:4 http://www.debian-multimedia.org sid Release [5560B]
Ign http://www.debian-multimedia.org sid/main Packages/DiffIndex
Get:5 http://www.debian-multimedia.org sid/main Packages [45.4kB]
Ign http://ftp.no.debian.org sid Release
Hit http://ftp.no.debian.org sid/main Packages/DiffIndex
Hit http://ftp.no.debian.org sid/contrib Packages/DiffIndex
Fetched 131kB in 7s (16.5kB/s)
Reading package lists... Done
W: GPG error: http://ftp.no.debian.org sid Release: The following signatures
were invalid: BADSIG A70DAF536070D3A1 Debian Archive Automatic Signing Key (
4.0/etch) <[EMAIL PROTECTED]>
W: You may want to run apt-get update to correct these problems
shanazsoft:/home/ibrahim#

Any idea ?

--
S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


pppoe with static ip

2007-04-14 Thread S. M. Ibrahim (Lavlu)

Is this possible to get static ip from pppoe ?

--
S. M. Ibrahim (Lavlu)
Web Application Developer
somewherein...
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


debian forum

2006-09-21 Thread S. M. Ibrahim (Lavlu)
today at the time of searching http://debian.org get a link http://forums.debian.net but, there number of registed user is too few "
We have 7054 registered users"why debian not making a official forum for debian-user??-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.com
Blog: http://lavluda.tkYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


evolution break

2006-09-21 Thread S. M. Ibrahim (Lavlu)
shanazsoft:/home/ibrahim# apt-get install evolutionReading package lists... DoneBuilding dependency tree... Done<--cut-->The following packages have unmet dependencies.  evolution: Depends: libdbus-1-2 (>= 
0.62) but it is not installableE: Broken packagesinteresting thin is. i my debian, libdbus-1-3 is installed and libdbus-1-2 is not available on sid :(runing unstable. how can i install evolution ?
-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.comBlog: http://lavluda.tkYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


apt-build

2006-09-23 Thread S. M. Ibrahim (Lavlu)
any body here using apt-build ??
i am interested to use it to get optimized package for my em64t (i don't
like amd64 unoffical )
-- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg public key: A9910F9E


signature.asc
Description: This is a digitally signed message part


Re: apt-build

2006-09-23 Thread S. M. Ibrahim (Lavlu)
On 9/23/06, Roberto C. Sanchez <[EMAIL PROTECTED]> wrote:
On Sat, Sep 23, 2006 at 10:58:31PM +0600, S. M. Ibrahim (Lavlu) wrote:> any body here using apt-build ??> i am interested to use it to get optimized package for my em64t (i don't> like amd64 unoffical )
Well, em64t is just Intel's name for amd64.  It is their way of tryingto avoid losing face in the market place for not being first with it.Second, the vast majority of things you do with your computer are I/O
bound.  Unless you are doing things like CFD or perhaps setting up acompile farm, your time is better spent elsewhere, otherwise you arespending your effort to make your computer wait a few percentage points
faster than it did before.i see!! thanks for comments. :) 
Regards,-Roberto--Roberto C. Sanchezhttp://people.connexer.com/~robertohttp://www.connexer.com
-BEGIN PGP SIGNATURE-Version: GnuPG v1.4.1 (GNU/Linux)iD8DBQFFFWv+5SXWIKfIlGQRAiapAJsFNys+7JaQX6XDZ0jjdIjjobbxYACg1QywT4y4tyDNhShd4rThaoyIl8M==ur4A-END PGP SIGNATURE-
-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.comBlog: http://lavluda.tkYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


canon ip 1000

2006-09-24 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

i am going to mad for the support of canon ip 1000 :(

any body using it.
- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFFoiazpD0S6mRD54RAsl5AJ9u5TCW0GMvQ1YjGmS80w6noPqVogCeK305
eudc0H1UETe6KSro8vcXa0I=
=CfYy
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: canon ip 1000

2006-09-24 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 24 September 2006 20:11, Mathias Brodala wrote:
> Hello.
>
> > i am going to mad for the support of canon ip 1000 :(
>
> You could try to convert the official drivers[0] via alien to Debian’s
> packagein format and install them. I did so with my iP4200 and it works
> like a charm.
>
> > any body using it.
>
> Was this a question.
>
>
> Regards, Mathias
>
> [0]
> http://software.canon-europe.com/Printers/Bubble_Jet_Printers/PIXMA_iP10001
>0104.asp
great to hear that, it's work for u.
i tried this process on sarge, but failed :( . the printer driver is on the 
list. but not working.


now i am going to try this on sid. 


can u tell me, the details procedure, that u done??
which packages need to install. all these 3 ??? 



- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFFq6CzpD0S6mRD54RAv0kAJ0VfJYYbMY+L2obg4/hIA79+Z+GDQCgu15N
JnlIMP8MgW8AK8itY5Z6fwk=
=ziiv
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: canon ip 1000

2006-09-24 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 24 September 2006 22:33, Mathias Brodala wrote:
> Hello.
>
> S. M. Ibrahim (Lavlu) wrote:
> >>>> i am going to mad for the support of canon ip 1000 :(
> >>>
> >>> You could try to convert the official drivers[0] via alien to Debians
> >>> packagein format and install them. I did so with my iP4200 and it works
> >>> like a charm.
> >>>[…]
> >
> > great to hear that, it's work for u.
> > i tried this process on sarge, but failed :( . the printer driver is on
> > the list. but not working.
>
> You mean within CUPS? Do you get any errors?
>
> > can u tell me, the details procedure, that u done??
>
> Not much; I downloaded the RPM-packages, converted them via alien,
> installed them and that’s it. I did use Turboprint before but am quite glad
> that the drivers work.
>
> > which packages need to install. all these 3 ???
>
> You must install the common package and the driver specific package. The
> third package only gives you some commandline tools for printing. (Which
> you probably won’t ever need.)
>
>
> Regards, Mathias

OK, i tried, but getting error :(

 
 " 
USB_Printer_1_with_status_readback_for_Canon_BJ 
"/usr/lib/cups/backend/canon_usb 
failed"
"

- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFFrgSzpD0S6mRD54RAq1WAJ9QlyydkoGP9JJqQ5zn23TrmSlXAACgyjDi
+YGb5fYqseTWlLiNvdg9DR0=
=XzxH
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: canon ip 1000

2006-09-24 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 24 September 2006 23:13, Mathias Brodala wrote:
> Hello.
>
> S. M. Ibrahim (Lavlu) wrote:
> > OK, i tried, but getting error :(
> >
> >
> >  "
> > USB_Printer_1_with_status_readback_for_Canon_BJ
> > "/usr/lib/cups/backend/canon_usb failed"
> > "
>
> Hm not really much. Did you try the step-by-step installation which is
> explained in the guide for your driver? Just imagine seeing „dpkg“ instead
> of „rpm“. The rest should be the same for Debian too. (It’s basically
> restarting the CUPS daemon, registering the printer and setting it as
> default. Something what a postinst script could do.)
>
no, i just install these two packages "alien -i *.rpm "
any thing wrong here ?
> Oh, and could you post the relevant lines of your /var/log/cups/error_log?
> There may be additional info.
>
shanazsoft:/home/ibrahim/tmp/iP1000# cat /var/log/cups/error_log
E [23/Sep/2006:22:19:09 +0600] Creating missing 
directory "/var/run/cups/certs"
E [23/Sep/2006:22:22:47 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [23/Sep/2006:22:22:52 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [23/Sep/2006:22:24:41 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [23/Sep/2006:22:25:25 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [23/Sep/2006:22:26:30 +0600] CUPS-Delete-Printer: Unauthorized
E [23/Sep/2006:22:28:16 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [23/Sep/2006:22:28:29 +0600] PID 30967 (/usr/lib/cups/filter/pstoraster) 
stopped with status 1!
E [23/Sep/2006:22:29:02 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [23/Sep/2006:22:32:02 +0600] PID 32223 (/usr/lib/cups/filter/pstoraster) 
stopped with status 1!
E [23/Sep/2006:22:32:16 +0600] Pause-Printer: Unauthorized
E [23/Sep/2006:22:32:18 +0600] Pause-Printer: Unauthorized
E [24/Sep/2006:22:50:45 +0600] CUPS-Delete-Printer: Unauthorized
E [24/Sep/2006:22:50:49 +0600] CUPS-Delete-Printer: Unauthorized
E [24/Sep/2006:22:51:34 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [24/Sep/2006:22:51:53 +0600] [Job 6] Unable to open USB port device file: No 
such file or directory
E [24/Sep/2006:22:51:53 +0600] PID 10170 (/usr/lib/cups/backend/canon_usb) 
stopped with status 1!
E [24/Sep/2006:22:54:25 +0600] Resume-Printer: Unauthorized
E [24/Sep/2006:22:54:32 +0600] [Job 7] Unable to open USB port device file: No 
such file or directory
E [24/Sep/2006:22:54:32 +0600] PID 10379 (/usr/lib/cups/backend/canon_usb) 
stopped with status 1!
E [24/Sep/2006:22:55:22 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [24/Sep/2006:22:56:01 +0600] CUPS-Set-Default: Unauthorized
E [24/Sep/2006:22:57:06 +0600] Resume-Printer: Unauthorized
E [24/Sep/2006:22:57:06 +0600] PID 10585 (/usr/lib/cups/backend/canon_usb) 
stopped with status 1!
E [24/Sep/2006:22:57:06 +0600] [Job 8] Unable to open USB port device file: No 
such file or directory
E [24/Sep/2006:22:57:06 +0600] [Job 8] pstocanonbj write error,32.
E [24/Sep/2006:22:57:06 +0600] PID 10584 (/usr/lib/cups/filter/pstocanonbj) 
stopped with status 1!
E [24/Sep/2006:22:58:08 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [24/Sep/2006:23:00:06 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [24/Sep/2006:23:16:44 +0600] Pause-Printer: Unauthorized
E [24/Sep/2006:23:16:49 +0600] Pause-Printer: Unauthorized
E [24/Sep/2006:23:19:19 +0600] CUPS-Reject-Jobs: Unauthorized
E [24/Sep/2006:23:19:24 +0600] CUPS-Accept-Jobs: Unauthorized
E [24/Sep/2006:23:19:27 +0600] CUPS-Reject-Jobs: Unauthorized
E [24/Sep/2006:23:19:32 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [24/Sep/2006:23:19:33 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [24/Sep/2006:23:23:11 +0600] CUPS-Add-Modify-Printer: Unauthorized
E [24/Sep/2006:23:23:15 +0600] PID 14179 (/usr/lib/cups/backend/canon_usb) 
stopped with status 1!
E [24/Sep/2006:23:23:15 +0600] [Job 9] Unable to open USB port device file: No 
such file or directory
E [24/Sep/2006:23:23:33 +0600] Resume-Printer: Unauthorized
E [24/Sep/2006:23:23:40 +0600] [Job 10] Unable to open USB port device file: 
No such file or directory
E [24/Sep/2006:23:23:40 +0600] PID 14201 (/usr/lib/cups/backend/canon_usb) 
stopped with status 1!

>
> Regards, Mathias

- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFFr+WzpD0S6mRD54RAqd0AKCdm8qUYBtLpPk2eSRc+h88Eqj4PwCgmmfg
PW5N3bhotNpugSzAoN5S3KE=
=EGEc
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: canon ip 1000

2006-09-24 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

- -BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 24 September 2006 23:38, Mathias Brodala wrote:
> Hello.
>
> S. M. Ibrahim (Lavlu) wrote:
>[snip]
>
> Sounds a bit familiar to me. Could you try purging cupsys and reinstalling
> it? I stumbled upon a permission problem which seemed to be existing in
> CUPS for a long time. After purging and reinstalling the permission could
> be set as they should be.
>
>
> Regards, Mathias
after restart the computer, now when i use "usb://Canon/iP1000" and jobs are 
showing finished after click on print (but nothing happen in printer)

but when useing "canon_usb:///dev/usb/lp0"
it's showing error the same error.


btw, i tested my printer with turboprint , it's working cool only problem is 
the logo.
though in the site, they are talking that, it's free for personal use.
but if it's print a logo, then how it's free ??? it's looks like trail.



i am from bangladesh, so i canno't buy the license :( 
can any body help me with this isue ?




- - -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
- -BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFFtE/zpD0S6mRD54RArO5AKCWq0f7kUUxoxyhbYba9KGPtzM8vACfUdns
jvUf8FxtQvAYdXxNWoNgWVQ=
=pB4F
- -END PGP SIGNATURE-
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFFtGizpD0S6mRD54RAiteAJ98fP+FCFILTgo1RZuEAlH3TjrkHwCgx00a
BxyJ2zT31KJDhlESfGN+Abk=
=nDBl
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: canon ip 1000

2006-09-24 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Monday 25 September 2006 01:09, Mathias Brodala wrote:
> Hello.
>
>[snip]
> If you want to have your printer working and Turboprint is the only choice
> then you should swallow the bitter pill and order a license.
>
> > i am from bangladesh, so i canno't buy the license :(
>
> Why shouldn’t you? As I understand it you can order the license from
> anywhere and let the keyfile be delivered to you. You can also write a mail
> to the developer of Turboprint and ask for help.
>
>
> Regards, Mathias

because, in bangladesh, the credit card is not available enough. and i don't 
have one. 

second, no other serveice can use here (like pay poll) :(
- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFFtiDzpD0S6mRD54RAlIcAKCes+Jl55RG8kfKoQblSNjQ8Jz/KwCgqvk4
fZsv53Iin5ZaZH+9DP7QN+U=
=eQRT
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: canon ip 1000

2006-09-24 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Monday 25 September 2006 01:22, Mathias Brodala wrote:
> Hello.
>
> S. M. Ibrahim (Lavlu) wrote:
> >>>> i am from bangladesh, so i canno't buy the license :(
> >>>
> >>> Why shouldnt you? […]
> >
> > because, in bangladesh, the credit card is not available enough. and i
> > don't have one.
> >
> > second, no other serveice can use here (like pay poll) :(
>
> What about prepayment? That’s the other possibility to pay other than via
> credit card.
>
:( not available :((
>
> Regards, Mathias

- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFFtq5zpD0S6mRD54RAmrtAKCsjdqyQr3hB0AHPe7kW0FYVZdr5wCeMrbE
X387iBiQNRyKcbIsObKEng0=
=uk52
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: apt-build

2006-09-25 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Monday 25 September 2006 11:54, Deepak Kumar Tripathi wrote:
> Hi i am using apt-build.
> and i wrote two patch for it also one for show tha catch package and one
> for search.
>
cool, then, what is ur feelings about apt-build. 
> anyway i am working for changing the comilation script for different
> -different architecture.
>
>
> Thanks
> Deepak Tripathi .---.
> Open Source Developer  / \
>[EMAIL PROTECTED]@./
>/`\_/`\
>.''`.  //  _  \\
>
>   : :'  :| \ )|_
>
>   `. `'`/`\_`>  <_/ \
> `-  \__/'---'\__/
> Debian GNU/Linux
>
>
>
- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFF4MUzpD0S6mRD54RArcfAJ4sh4kRI+Ky0WY+9uv/SoEMPxdR1ACggEeB
vs5pQIqFzRYJ1uCgXnzbbjI=
=ryQl
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



linux-image-2.6.17-2-686

2006-09-25 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

there is no package called linux-image-2.6.17-2-686-smp 

which on should i install ?? i need smp
- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFF4PPzpD0S6mRD54RAnITAJ9mg/M8zTQqREfROlECR56TQGuLtwCglpJH
+/lyN54dnRfUJp49LX21U5o=
=SCmT
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: apt-build

2006-09-25 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Monday 25 September 2006 14:04, Deepak Kumar Tripathi wrote:
> its a very good .
>
do u got any problem at compilition time.
>
> Deepak Tripathi .---.
> Open Source Developer  / \
>[EMAIL PROTECTED]@./
>/`\_/`\
>.''`.  //  _  \\
>
>   : :'  :| \ )|_
>
>   `. `'`/`\_`>  <_/ \
> `-  \__/'---'\__/
> Debian GNU/Linux
>
>
>
> -Original Message-
> From: S. M. Ibrahim (Lavlu) [mailto:[EMAIL PROTECTED]
> Sent: Mon 9/25/2006 12:49 PM
> To: debian-user@lists.debian.org
> Subject: Re: apt-build
>
> On Monday 25 September 2006 11:54, Deepak Kumar Tripathi wrote:
> > Hi i am using apt-build.
> > and i wrote two patch for it also one for show tha catch package and one
> > for search.
>
> cool, then, what is ur feelings about apt-build.
>
> > anyway i am working for changing the comilation script for different
> > -different architecture.
> >
> >
> > Thanks
> > Deepak Tripathi .---.
> > Open Source Developer  / \
> >[EMAIL PROTECTED]@./
> >/`\_/`\
> >.''`.  //  _  \\
> >
> >   : :'  :| \ )|_
> >
> >   `. `'`/`\_`>  <_/ \
> > `-  \__/'---'\__/
> > Debian GNU/Linux
>
> --
> S. M. Ibrahim (Lavlu)
> Home page: http://lavluda.tripod.com
> Blog: http://lavluda.tk
> Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
> gpg key: A9910F9E

- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFF5IBzpD0S6mRD54RApzFAKC0kkZGvlB4R3qy0T9q028G6T2lJQCffh+R
7Q4Lg3QxxlJVUxIGfkOcVCM=
=HK0H
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: (sid) apt-get install kde kdm fails

2006-09-25 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tuesday 26 September 2006 03:32, RParr wrote:
> I have installed Debian using etch installer b-3 (daily snapshot) and
> then upgraded to sid (and added contrib, non-free to my repositories).
> I installed as web-server, file-server, sql-server.  I did not install
> desktop.
>
> I was (finally) able to get basic X installed (by wacking the
> xserver-xorg postinst per the bug report)
>
> # apt-get install x-window-system-core
>
> but have not been able to install KDE (for about 3 days now).
>
> # apt-get install kde kdm
>
> The following packages have unmet dependencies:
>   kde: Depends: kde-core (>= 5:47) but it is not going to be installed
>Depends: kde-amusements (>= 5:47) but it is not going to be
> installed Depends: kdeaddons (>= 4:3.4.3) but it is not going to be
> installed Depends: kdepim (>= 4:3.4.3) but it is not going to be installed
> E: Broken packages
>
> Is this just a matter of waiting for the repositories to come back in
> sync or am I missing something here.
>
if possible, please wait, or check if any other package making this problem.
> If just waiting, any idea of when things should be installable?
i was also in this kind of problem. and got fixed within 2 day :)
>
> Thanks
> R.Parr, RHCE, Temporal Arts

- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFGKzdzpD0S6mRD54RAm5JAKCOc0op4KhAEbu81KJZt4O0SD15kgCfVSTa
Bqj05ODXMhMhGldaiGCiuMg=
=s8C4
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



mails come late

2006-09-25 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Some time i am getting some mail with delay (even 2 days). Is this my gmail 
problem or list.debian.org or there own server ?
- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFGK2yzpD0S6mRD54RApFeAJ9VUcYWTiUD/PxIP7vxheN97cvfJQCgqtC5
glWKce4VdGfMCAIVILiBKtw=
=8NIK
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



md5sum problem

2006-09-26 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

3 month ago, i started new net connection. 
- From then, i am getting a strange problem. i am trying to download some CD. 
But, bad luck, never md5sum works (not mached) for me. even mpg or wmv files 
all the time corrupted.

my isp use simple windows Xp internet connection sharing.
Is the windows connection sharing is the problem ???

btw, i use only a 128 kbps connection, so i need to use resume to download CD.


- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFGflFzpD0S6mRD54RAmzjAJ0VarB/2Vh0QevgxGFh0b4fZ07tVACgt3As
9ccdn74pHZ4VQb1Y7tKRLfw=
=TRXS
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: md5sum problem

2006-09-26 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 27 September 2006 11:18, Marty wrote:
> S. M. Ibrahim (Lavlu) wrote:
> > -BEGIN PGP SIGNED MESSAGE-
> > Hash: SHA1
> >
> > 3 month ago, i started new net connection.
> > - From then, i am getting a strange problem. i am trying to download some
> > CD. But, bad luck, never md5sum works (not mached) for me. even mpg or
> > wmv files all the time corrupted.
> >
> > my isp use simple windows Xp internet connection sharing.
> > Is the windows connection sharing is the problem ???
>
> Does that mean you are using a VPN or other kind of IP tunneling?  It
> should prevent such problems.
>
i am using this connection for only my personal use.



> > btw, i use only a 128 kbps connection, so i need to use resume to
> > download CD.
>
> What does ifconfig report about your receive error rate?  TCP and UDP alone
> cannot handle high error rates in the data link layer.
>
shanazsoft:/home/ibrahim/works# ifconfig
eth0  Link encap:Ethernet  HWaddr 00:E0:4C:31:46:04
  inet addr:192.168.0.18  Bcast:192.168.0.255  Mask:255.255.255.0
  inet6 addr: fe80::2e0:4cff:fe31:4604/64 Scope:Link
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:37407 errors:0 dropped:0 overruns:0 frame:0
  TX packets:36535 errors:0 dropped:0 overruns:0 carrier:0
  collisions:342 txqueuelen:1000
  RX bytes:29822080 (28.4 MiB)  TX bytes:9726283 (9.2 MiB)
  Interrupt:209 Base address:0x9000

loLink encap:Local Loopback
  inet addr:127.0.0.1  Mask:255.0.0.0
  inet6 addr: ::1/128 Scope:Host
  UP LOOPBACK RUNNING  MTU:16436  Metric:1
  RX packets:9257 errors:0 dropped:0 overruns:0 frame:0
  TX packets:9257 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0
  RX bytes:968889 (946.1 KiB)  TX bytes:968889 (946.1 KiB)

shanazsoft:/home/ibrahim/works#

> By my estimate, you would need an error rate of about one packet in seven
> to corrupt a CD-size download.

- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFGgvkzpD0S6mRD54RAq6ZAKDBi9TQ0EnXBcFxq44WGdteHfUUrgCgvIww
qKt5hrj9My0t9CXuScGlzLs=
=oL16
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: md5sum problem

2006-09-27 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 27 September 2006 11:59, Marty wrote:
>[snip]
>> >> > my isp use simple windows Xp internet connection sharing. 
> >> > Is the windows connection sharing is the problem ???
> >>
> >> Does that mean you are using a VPN or other kind of IP tunneling?  It
> >> should prevent such problems.
> >
> > i am using this connection for only my personal use.
>
> I meant your ISP connection, and since you mentioned "connection sharing" I
> thought it might be a VPN connection.  If it's not, then why not? since it
> would likely solve the problem (but I am not familiar with it myself.)
>
> >> > btw, i use only a 128 kbps connection, so i need to use resume to
> >> > download CD.
> >>
> >> What does ifconfig report about your receive error rate?  TCP and UDP
> >> alone cannot handle high error rates in the data link layer.
> >
> > shanazsoft:/home/ibrahim/works# ifconfig
> > eth0  Link encap:Ethernet  HWaddr 00:E0:4C:31:46:04
> >   inet addr:192.168.0.18  Bcast:192.168.0.255  Mask:255.255.255.0
> >   inet6 addr: fe80::2e0:4cff:fe31:4604/64 Scope:Link
> >   UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
> >   RX packets:37407 errors:0 dropped:0 overruns:0 frame:0
> >   TX packets:36535 errors:0 dropped:0 overruns:0 carrier:0
> >   collisions:342 txqueuelen:1000
> >   RX bytes:29822080 (28.4 MiB)  TX bytes:9726283 (9.2 MiB)
> >   Interrupt:209 Base address:0x9000
>
> It looks fine.  If by this you mean that you have an ethernet connection to
> a router/modem or other device, then I don't see much you can do with
> Debian if the problem exists beteen the router and the ISP.  If you give
> more information about the device and connection type if might shed more
> light on the problem. Once again, however, the VPN may be the key to your
> problem.
my eth0 is connected to the gw using hub on the middle. 

i have no idea aobut VPN, can u make clear this ?


- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD4DBQFFGiKuzpD0S6mRD54RArrmAKCjq58XAkRB+PgTvRRAjBJhqm6/kwCXfV4i
o2s9lUESXyacng/FwMyC3Q==
=tr/6
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



mail recive and send

2006-09-27 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

i want to recive and send my mail from my debian terminal (without using any 
mail client). i want to say that, exim4 or something like this will recive   
the mails of my gmail account so that i can get the mail on my localmail box. 
More over want to send mail from bash using "mail [EMAIL PROTECTED]"  with 
my gmail.com account.


any idea ? 
- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFGlgFzpD0S6mRD54RAsLCAKCkK27BeGVvVwFLESeWDD6lxQFdVQCguJuo
gEotcZvfBLX1An5rH1y1dnI=
=v98K
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Package server

2006-09-27 Thread S. M. Ibrahim (Lavlu)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 27 September 2006 18:25, Gandalf, the White wrote:
> Hi there!
>
> Some friends and I are organizing an Install Fest at the university.
> We intend to set up a server to distribute the newest packages to the
> brand new installed PCs.
> The idea is to point to this server in each PC's /etc/apt/sources.list
> file.
>
> How can I set such server?
use apt-proxy, it will save lots of download.
- -- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg key: A9910F9E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFGng9zpD0S6mRD54RAhPeAKCfVnEaLaS+l1FPuS+9J4QOBEjHTACdEzsf
AyvtgMOXCufNS7C0iDToihw=
=pA7k
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



ktorrent

2006-09-28 Thread S. M. Ibrahim (Lavlu)
where ktorrent save the tmp file . i downloaded 1 CD of 5 CD set of a
torrent. where this cd is sotred ??
-- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
gpg public key: A9910F9E


signature.asc
Description: This is a digitally signed message part


mail

2006-09-29 Thread S. M. Ibrahim (Lavlu)




i cann't remember how, but i was able to send mail to any email address from redhat useing "mail [EMAIL PROTECTED] "
how can i get this with debian ?





-- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
pgp public key: A9910F9E








signature.asc
Description: This is a digitally signed message part


Re: mail

2006-09-29 Thread S. M. Ibrahim (Lavlu)




On Fri, 2006-09-29 at 19:54 +0200, David C. Weichert wrote:


Am Freitag, den 29.09.2006, 23:02 +0600 schrieb S. M. Ibrahim (Lavlu):
> i cann't remember how, but i was able to send mail to any email
> address from redhat useing "mail [EMAIL PROTECTED] "
> how can i get this with debian ?

Do you mean something like this:

echo "this is a test." | mail -s "test" [EMAIL PROTECTED]

You need to have a mail transfer agent (MTA) configured and running, if
this shall work. The default MTA with Debian is Exim.

Which version of Debian (stable/testing/unstable) are you running? Is
Exim or another MTA (postfix) installed and configured on your system?



i am using unstable. i tried exim. but after long time waiting, it's give me a dalivery failure notice. then now testing send mail. useing mail client with send mail. now i can send. but mail command is not working any more (i removed exim4) 




Kind regards
David








-- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
pgp public key: A9910F9E








signature.asc
Description: This is a digitally signed message part


tvtime

2006-10-03 Thread S. M. Ibrahim (Lavlu)




i am trying to runinug my tv card with tvtime. but getting this messege

[EMAIL PROTECTED]:~$ tvtime
Running tvtime 1.0.1.
Reading configuration from /etc/tvtime/tvtime.xml
Reading configuration from /home/ibrahim/.tvtime/tvtime.xml
xvoutput: No XVIDEO port found which supports YUY2 images.

*** tvtime requires hardware YUY2 overlay support from your video card
*** driver.  If you are using an older NVIDIA card (TNT2), then
*** this capability is only available with their binary drivers.
*** For some ATI cards, this feature may be found in the experimental
*** GATOS drivers: http://gatos.souceforge.net/
*** If unsure, please check with your distribution to see if your
*** X driver supports hardware overlay surfaces.



my card detected ok.

[EMAIL PROTECTED]:~$ dmesg |grep saa
saa7130/34: v4l2 driver version 0.2.14 loaded
saa7130[0]: found at :03:01.0, rev: 1, irq: 225, latency: 32, mmio: 0xf1001000
saa7130[0]: subsystem: 4e42:0138, board: LifeView/Typhoon FlyVIDEO2000 [card=3,autodetected]
saa7130[0]: board init: gpio is 38500
saa7130[0]: there are different flyvideo cards with different tuners
saa7130[0]: out there, you might have to use the tuner= insmod
saa7130[0]: option to override the default value.
input: saa7134 IR (LifeView/Typhoon Fl as /class/input/input2
saa7130[0]: i2c eeprom 00: 42 4e 38 01 10 28 ff ff ff ff ff ff ff ff ff ff
saa7130[0]: i2c eeprom 10: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
saa7130[0]: i2c eeprom 20: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
saa7130[0]: i2c eeprom 30: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
saa7130[0]: i2c eeprom 40: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
saa7130[0]: i2c eeprom 50: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
saa7130[0]: i2c eeprom 60: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
saa7130[0]: i2c eeprom 70: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
tuner 1-0061: chip found @ 0xc2 (saa7130[0])
saa7130[0]: registered device video0 [v4l2]
saa7130[0]: registered device vbi0
saa7130[0]: registered device radio0
[EMAIL PROTECTED]:~$


the tvtime-scanner getting station ok.


more over this card run ok with tvtime on another computer with debian unstable and intl 810 agp. 
This computer also runing unstable but the agp is intl 915 g serious, (using i810 driver).


any body have idea, what's wrong ?





-- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
pgp public key: A9910F9E








signature.asc
Description: This is a digitally signed message part


Re: tvtime

2006-10-03 Thread S. M. Ibrahim (Lavlu)
On 10/4/06, Albert Dengg <[EMAIL PROTECTED]> wrote:
-BEGIN PGP SIGNED MESSAGE-Hash: SHA1On Tue, Oct 03, 2006 at 09:52:56PM +0600, S. M. Ibrahim (Lavlu) wrote:> i am trying to runinug my tv card with tvtime. but getting this messege>> 
[EMAIL PROTECTED]:~$ tvtime> Running tvtime 1.0.1.> Reading configuration from /etc/tvtime/tvtime.xml> Reading configuration from /home/ibrahim/.tvtime/tvtime.xml> xvoutput: No XVIDEO port found which supports YUY2 images.
>> *** tvtime requires hardware YUY2 overlay support from your video card> *** driver.  If you are using an older NVIDIA card (TNT2), then> *** this capability is only available with their binary drivers.
> *** For some ATI cards, this feature may be found in the experimental> *** GATOS drivers: http://gatos.souceforge.net/> *** If unsure, please check with your distribution to see if your
> *** X driver supports hardware overlay surfaces.tvtime needs YUV2/xv overlay...what video card do you have and what driver?(ati,nivdia,...?), oss driver, closed source driver?
on my first mail, i allready write details.   yoursalbert- --
Albert Dengg <[EMAIL PROTECTED]>-BEGIN PGP SIGNATURE-Version: GnuPG v1.4.5 (GNU/Linux)iD8DBQFFIsRphrtSwvbWj0kRAox3AJ9hTW23Q8iYaAp47K+Jdg0Wgs6dFgCfTLly74Y1ARK/CpWzqiFOWdlyxp0=
=qHAR-END PGP SIGNATURE---To UNSUBSCRIBE, email to [EMAIL PROTECTED]with a subject of "unsubscribe". Trouble? Contact 
[EMAIL PROTECTED]-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.com
Blog: http://lavluda.tkYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


grub repair

2006-10-04 Thread S. M. Ibrahim (Lavlu)
last night, i made some changes on my partation (remove one primary partation, and make it as extended) so all the drive letter or address is changed. my debian was installed on /dev/sda6 and swap on /dev/sda5after the partation and reboot it's changed to /dev/sda7 and swap /dev/sda6 . and i am getting the grub error 17
i tried to resoter the grub by useing grub-install /dev/sda (booted with "linux resuce" of fc) and getting error on stage1 file .how can i install grub on debian partation (/dev/sda7)
-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.comBlog: http://lavluda.tkYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


matlab installation

2006-10-04 Thread S. M. Ibrahim (Lavlu)




i am trying to install matlab release 14, 

shanazsoft:/usr/local/matlab704# /media/MathWorks_R14_1/install
bash: /media/MathWorks_R14_1/install: /bin/sh: bad interpreter: Permission denied


what can i do now ?
i am using debian sid.




-- 
S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.tk
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda
pgp public key: A9910F9E








signature.asc
Description: This is a digitally signed message part


Re: suggestions on site management

2006-10-15 Thread S. M. Ibrahim (Lavlu)
On 10/15/06, Rodney Richison <[EMAIL PROTECTED]> wrote:
I need a site management tool to control group permissions, logons etc.I've installed and run postnuke, however, it seems to be a managementnightmare. Not friendly at all. Very confusing. Am looking for
alternatives, and since it will run on debian, I thought I'd see if youguys had some suggestions.I got a suggestion of Drupal from a gentleman on this list. It looksMUCH more friendly with MUCH better documentation etc...
opps, i was forget to presss replay to all (using gmail)
Highest Regards,Rodney RichisonRCR ComputingPO Box 566 - 118 N. BroadwayCleveland, OK 74020Phone: 918-358--- S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.comBlog: http://lavluda.tkYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Gettin problem to browse the internet

2006-01-26 Thread S. M. Ibrahim (Lavlu)
Yeasterday, i install  Debian sarge.   I use  my cell phone to  connected to  internet  as modem. Everthing is fine.   First i use pppconifg & pon  to make connection. I get connected to server and get IP, getway & DNS. But problem is, cann't browse anything.  What's the wrong. I can use this connection from Suse 9.3 and XP without any problem.  Here is the output of : ifconfig, netstat -nr , cat /etc/resolv.conf  __  [EMAIL PROTECTED]:~$ su  Password:  tanha:/home/ibrahim#  ifconfig  lo    Link encap:Local
 Loopback    inet addr:127.0.0.1  Mask:255.0.0.0    UP LOOPBACK RUNNING  MTU:16436   Metric:1    RX packets:118 errors:0 dropped:0  overruns:0 frame:0    TX packets:118 errors:0 dropped:0  overruns:0 carrier:0   
 collisions:0 txqueuelen:0    RX bytes:7580 (7.4 KiB)  TX bytes:7580 (7.4 KiB)     tanha:/home/ibrahim#  pon  tanha:/home/ibrahim#  ifconfig  lo    Link encap:Local Loopback        inet addr:127.0.0.1  Mask:255.0.0.0    UP LOOPBACK RUNNING  MTU:16436   Metric:1    RX packets:120 errors:0 dropped:0  overruns:0 frame:0    TX packets:120 errors:0 dropped:0  overruns:0 carrier:0    collisions:0 txqueuelen:0    RX bytes:7680 (7.5 KiB)  TX bytes:7680 (7.5 KiB)     ppp0  Link encap:Point-to-Point Protocol    inet addr:10.87.6.176  P-t-P:192.168.254.254  Mask:255.255.255.255    UP POINTOPOINT RUNNING NOARP  MULTICAST  MTU:1500  Metric:1        RX packets:5 errors:0 dropped:0  overruns:0 frame:0    TX packets:10 errors:0 dropped:0  overruns:0 carrier:0    collisions:0 txqueuelen:3    RX bytes:190 (190.0 b)  TX bytes:283 (283.0 b)     tanha:/home/ibrahim#  netstat -nr  Kernel IP routing  table  Destination Gateway
 Genmask Flags    MSS Window  irtt Iface  192.168.254.254  0.0.0.0 255.255.255.255 UH    0 0  0 ppp0  0.0.0.0 192.168.254.254 0.0.0.0 UG    0 0  0 ppp0  tanha:/home/ibrahim#  cat
 /etc/resolv.conf  # resolv.conf  created by pppconfig for provider     nameserver  192.168.80.66     nameserver  202.134.13.3  tanha:/home/ibrahim#          Best Regards,S. M. Ibrahim (Lavlu)home page: http://www.smibrahim.tkBlog: http://lavluda.wordpress.com
		Do you Yahoo!? 
With a free 1 GB, there's more in store with Yahoo! Mail.

kernel upgrading problem

2006-03-28 Thread S. M. Ibrahim (Lavlu)
After making dist upgrade from sarge to sid, when i tried to upgrade kernel 2.6.8-1-686 to 2.6.16-1-686 it's failed.Here is the output of apttanha:/home/tania# apt-get install -fReading package lists... Done
Building dependency tree... Done0 upgraded, 0 newly installed, 0 to remove and 35 not upgraded.1 not fully installed or removed.Need to get 0B of archives.After unpacking 0B of additional disk space will be used.
Setting up linux-image-2.6.16-1-686 (2.6.16-3) ...Running depmod.Finding valid ramdisk creators.Using mkinitramfs-kpkg to build the ramdisk.Other valid candidates: mkinitramfs-kpkg mkinitrd.yaird/usr/sbin/mkinitramfs-kpkg: line 55: supported_host_version: unbound variable
mkinitramfs-kpkg failed to create initrd image.Using mkinitrd.yaird to build the ramdisk.Other valid candidates: mkinitramfs-kpkg mkinitrd.yairdyaird error: destination /boot/initrd.img-2.6.16-1-686.new already exists (fatal)
mkinitrd.yaird failed to create initrd image.Failed to create initrd image.dpkg: error processing linux-image-2.6.16-1-686 (--configure): subprocess post-installation script returned error exit status 9
Errors were encountered while processing: linux-image-2.6.16-1-686E: Sub-process /usr/bin/dpkg returned an error code (1)-- S. M. Ibrahim (Lavlu)Home page: 
http://lavluda.tripod.comBlog: http://lavluda.blogspot.comYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: debian vs redhat

2006-04-05 Thread S. M. Ibrahim (Lavlu)
Really great news. I am also shifted here like you :)On 4/6/06, John <[EMAIL PROTECTED]> wrote:
Hi, just wanted to say I've used various versions of linux, and havemainly stuck with redhat/fedora (yeah, I know), but the latest versionshave sort of bothered me.  So, today I tried debian for the first time,
and wow, am I impressed.  I plan on migrating all my servers, home andoffice, to debian in the next few months.Thanks!--To UNSUBSCRIBE, email to 
[EMAIL PROTECTED]with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.comBlog: http://lavluda.blogspot.comYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: Gnome sound system.

2006-04-08 Thread S. M. Ibrahim (Lavlu)
I don't know the solution, but i am also facing this problem. :(On 4/8/06, Surachai Locharoen <[EMAIL PROTECTED]
> wrote:I use gnome debian version 2.12. When I enable sound in gnome control
panel (enable sound for user action such button click or system alert),The music player program seem to be unable to play sound. It show errormessage that "the sound device is busy"How could I enable sound system in
gnome sound and use other music player together?Kan-- S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.com
Blog: http://lavluda.blogspot.comYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


Re: Gnome sound system.

2006-04-09 Thread S. M. Ibrahim (Lavlu)
ha, thanks it's works for me. I am now using xmms with esound output :)On 4/10/06, Andrew Sackville-West <
[EMAIL PROTECTED]> wrote:On Sun, Apr 09, 2006 at 09:27:51AM +0600, S. M. Ibrahim (Lavlu) wrote:
> I don't know the solution, but i am also facing this problem. :(>> On 4/8/06, Surachai Locharoen <[EMAIL PROTECTED]> wrote:> >> > I use gnome debian version 
2.12. When I enable sound in gnome control> > panel (enable sound for user action such button click or system alert),> > The music player program seem to be unable to play sound. It show error> > message that "the sound device is busy"
that's because the sound device is busy. The gnome sound system takes over the sound card so it can do its thing with all the clicks and bells and so forth,and this is what you asked it to do.The music player is trying to use the same sound device which gnome has
currently taken over.What music player are you using? Can you set it to use the 'esd' sound daemon?If so that should solve your problem.A> >> > How could I enable sound system in
> > gnome sound and use other music player together?> >> > Kan> >> >> >>>> --> S. M. Ibrahim (Lavlu)> Home page: 
http://lavluda.tripod.com> Blog: http://lavluda.blogspot.com> Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda-BEGIN PGP SIGNATURE-Version: GnuPG 
v1.4.2.2 (GNU/Linux)iD4DBQFEOcpHaIeIEqwil4YRAldPAJMFM6LVFzEYRBB9aq5gMEziuQKaAJ96/MYIa3ZwHpn1ylW/awfvIiNOmw===tlN3-END PGP SIGNATURE--- 
S. M. Ibrahim (Lavlu)Home page: http://lavluda.tripod.comBlog: http://lavluda.blogspot.comYahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda


apt-build

2006-04-11 Thread S. M. Ibrahim (lavluda)




Any body here useing apt-build. I am interested to know your openioun about this tool.




-- 
S. M. Ibrahim (lavluda) <[EMAIL PROTECTED]>
HomePage: http://lavluda.tripod.com
Blog: http://lavluda.blogspot.com







strange network problem

2006-04-19 Thread S. M. Ibrahim (lavluda)




Currently i am using a EDGE connection with my mobile phone. Every thing was fine. But recently i got that some thing is wrong my downoad is very poor now, but browsing speed is ok. Any body know the reason ?





S. M. Ibrahim (Lavlu)
Home page: http://lavluda.tripod.com
Blog: http://lavluda.blogspot.com
Cute Pic: http://cutepicture.blogspot.com
Yahoo!! ID: lavluda MSN ID: lavluda Skype : lavluda







signature.asc
Description: This is a digitally signed message part