m3u copy shell script. (need help :)

2003-10-17 Thread LeVA
Hello!

I wanted to create a tiny script which reads a .m3u file, and then 
copies the "real" mp3 files which has an entry in the m3u file to a 
given dir.

Here is my idea:

-- # Script # --
#!/bin/bash
TMP=/tmp/cpm3u_tmp
cat "$1" | grep -v --regexp="#" > $TMP
for line in $(<$TMP); do
 echo "$line";
done
-- # Script # --
A problem occurs, when there is a .m3u file, which has entries with 
spaces in their names, like this:

-- # m3u file # --
#EXTM3U
#EXTINF:278,Republic - Igen - Hozd El Azt A Napot
/home/leva/Zene/Republic/1996 Igen/02. Hozd El Azt A Napot.mp3
-- # m3u file # --
I get an output like this:

-- # Output # --
/home/leva/Zene/Republic/1996
Igen/02.
Hozd
El
Azt
A
Napot.mp3
-- # Output # --
What should I do?
Thanks!
--
LeVA


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



modutils problem

2003-10-17 Thread LeVA
Hello!

I have noticed that when I load a module the /etc/modutils/ 
files, which conatins the "post-install" lines, doesn't run.
So when I load my emu10k1 for example, which has a /etc/modutils/emu10k1 
file, which contains this line:
post-install emu10k1 /usr/local/etc/emu-script
doesn't run.

Why? Is there some biig variable which has to be set, to execute those 
post-install lines, or do I have to install a package or what?

Thanks!



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



Re: modutils problem

2003-10-17 Thread LeVA
David Z Maze írta:
LeVA <[EMAIL PROTECTED]> writes:


I have noticed that when I load a module the
/etc/modutils/ files, which conatins the "post-install"
lines, doesn't run.
So when I load my emu10k1 for example, which has a
/etc/modutils/emu10k1 file, which contains this line:
post-install emu10k1 /usr/local/etc/emu-script
doesn't run.


Did you run update-modules as root after creating the /etc/modutils
file?  (Nothing actually runs the commands in /etc/modutils/*
directly, but update-modules combines those files together into
/etc/modules.conf, which is what's actually read by modprobe.)
Yeah, that was the problem, thanks! I forgot it... Now I have the 
updated modules.conf, but it is only readed if I install the modules 
with modprobe.
If I load the modules with insmod, still don't run the post-install 
script, but with modprobe it seems ok. Is this normal?
And during bootup, which program loads the modules, modprobe, or insmod, 
because it would be good if these post-install entries could run
during the bootup.

Thanks again!

Daniel

--
LeVA


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



Re: how do i read from memory stick, fire wire?

2003-10-22 Thread LeVA
TR írta:
On Wed, 22 Oct 2003 00:24:53 +0200
[EMAIL PROTECTED] (Joachim Fahnenmueller) wrote:

On Sat, Oct 18, 2003 at 06:04:43PM -0400, TR wrote:

I want to be able to access the pics and short movies in my memory
stick, but I can't figure out how to do it. After googling, I found
some recommendation about adding the /etc/fstab entry: /dev/sda1
etc... Well, I tried that, but when I try to mount it to its
mounting point I get the response:/dev/sda1 is not a valid device.
Does anyone have any advice out there?
Same about firewire.
Thanks.
Hi!

I have a pen drive too, and got it working. Here I'll try to write, what 
did I do, and what should you do :) (little nervous because this is my 
first "helping" post to this list :)
So..

In my case, I can access my drive via /dev/sda.
For this you must compile (CONFIG_SCSI) SCSI support -> SCSI support && 
(CONFIG_BLK_DEV_SD) SCSI support -> SCSI disk support. I have compiled 
the last one as a module.

Because I connect my drive to an usb port, it needs these:
(CONFIG_USB) USB support -> Support for USB (also, I had to remove 
(CONFIG_USB_BANDWIDTH), Enforce USB bandwidth allocation).
 Now choose an usb host controller. If you have USB 2.0 on your 
mainboard, then should compile (CONFIG_USB_EHCI_HCD) USB support -> EHCI 
HCD (USB 2.0) support. If you don't have 2.0, it is safe to compile it, 
it doesn't harm your system.
 After this, choose an UHCI driver. You can select both of them 
(CONFIG_USB_UHCI) USB support -> UHCI and (CONFIG_USB_UHCI_ALT) USB 
support -> UHCI Alternate Driver and compile them as a module, because 
then you could try, which one is working for your system. I think the 
first (the simple UHCI) is working in most cases, and there is no need 
for the alternate driver, but I don't know what kind of mainboard you have.
 Ok, now you have usb controller drivers, you must compile one other 
thing, the usb storage support: (CONFIG_USB_STORAGE) USB support -> USB 
Mass Storage support.

Now I tell you how it's working on my system:
(Y := compiled in && M := compiled as a module)
SCSI support
  SCSI support = Y
  SCSI disk support = M
USB support
  Support for USB = Y
  EHCI HCD (USB 2.0) support = M
  UHCI = M
  UHCI Alternate = M
  USB Mass Storage support = Y
In this case, I had to add the following lines to my /etc/modules file:

sd_mod   # SCSI disk support
usb-uhci # The "simple" UHCI driver (not the alternate)
ehci-hcd # USB 2.0 driver
If the usb-uhci driver isn't working, then it is time to change the 
usb-uhci line (in the /etc/modules) to uhci , and try with the alternate 
driver.

Done. :)

Hope it is clear, and helps, and you understand it. If you have any 
further questions, please feel free to mail me.

Bye!

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



kde freeze, sorting problem

2003-10-23 Thread LeVA
Hello!

I have compiled kde-3.1.4 from source. This problem happens with _all_
of the kde applications, which has this "column feature".
If an app has a file/info listing in its window, for example
Column 1 | Column 2 | Column 3
  Name   Size   Date
then if I click onto one of these sorting buttons (ie.: name) kde
freezes, mouse not moving, and the app stops responding. Plus I get a
grey rectangle (no, this isn't xfree's video driver problem) to my
destktop (in the top left corner), over everything, so it covers my
whole desktop, and all of the applications. It is a 100x50 grey
rectangle, with little dots inside. After 5-10 secs, kde starts to
respond again, and I can continue to use the application (and the app
sorted the 'name' column). The grey box can be "erased" if I move a
window over it, so it clears that area of my desktop. I can make a
screenshot, if it helps.
Anybody can confirm this, or anybody has this problem too?
I'm using debian/woody, and compiled the whole kde from source.
Thanks!

Daniel

--
LeVA


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



suspend to ram, or hibernate

2003-10-23 Thread LeVA
Hello!

Is it possible to suspend my system to ram, or to hibernate it? Could 
someone tell/show me a howto about this.
Btw, is there a way to suspend my system and to keep my network 
connection simultaneously?

Thanks!

Daniel

--
LeVA


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



Re: suspend to ram, or hibernate [plus: monitor suspend howto]

2003-10-23 Thread LeVA
Rob Weir írta:
On Thu, Oct 23, 2003 at 06:31:40PM +0200, LeVA said

Hello!

Is it possible to suspend my system to ram, or to hibernate it? Could 
someone tell/show me a howto about this.


You can use "swsusp" (google for it, it's a kernel patch), but I don't
think it's ready for serious use yet.  Can't you just use ACPI or APM on
hardware that supports it?
Thanks! I tried that swsusp stuff, but when I run the script, it writes 
"going to hibernate", and unloading everything, and stopping daemons, 
and killing programs, and umounting drives :), but it doesn't hibernate 
the system, instead reloads everything, and says came back from 
hibernate. Anyway it's doc's says the 2.4.x kernels doesn't fully 
support suspend to ram, and suspend to disk. But (think again) I don't 
need these anyway.
I need a program (or programs), which I can use to control the acpi from 
command-line. For example turning the monitor to suspend state (ie.: 
./acpi_ctrl -vga , or something like that :). I read that I can control 
the systems sleep state by writing numbers to /proc/acpi/sleep. This is 
another story, and it isn't fully working :)
I can control my hard-drives suspend time with hdparm -S, and my cpu's 
throttling state with /proc/acpi/processor/CPU0/throttling. The only 
thing I need is a way to manually send my monitor to suspend state. Is 
this possible with some program?
And another question for clearing my mind:
What is the difference between the monitors standby, suspend, and off 
mode (I can see these in my kde control center). From the outside those 
are all the same. All of the above states, are switching my monitor off, 
but not completely (I can see the led shining on my monitor, but in 
another color).

Ok, hope that someone can help, and answer these qustions.

Thanks!

Daniel

--
LeVA


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



fontconfig error

2003-10-25 Thread LeVA
Hello!

I just wanted to ask, if someone knows what does this message mean:
Fontconfig error: Cannot load default config file
I get this message whith _all_ of the kde apps. Anyway, I don't notice
any failure in the application's fonts.
Is this a serious error message?
How can I fix this?
Thanks!

Daniel

--
LeVA




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



fc-cache error: Cannot load default config file

2003-10-26 Thread LeVA
Hello!

This is my third post on this list with this problem, hope that now 
someone notice it :)
So my first question is what does fc-cache do?
My second is, why does it write "Fontconfig error: Cannot load default 
config file" when I run it.
Why doest all kde applications writes the same error message when I run 
then from console (to see the output).
My bonus question is why does all kde apps runs this fc-cache when they 
start? Do they realy start it, or this error message is accidentally the 
same between the programs?

Thanks!

Daniel

--
LeVA


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



please help, lost my partition

2003-10-28 Thread LeVA
Hello!

I lost my partition. One of my most important ones...
It is a 100gb partition with all my personal datas, emails, documents etc...
I had a crash in kde, and I had to reset the computer. After the boot, the
boot process said that it can not mount /dev/hda2. Unfortunatelly, I can not
write you exactly the output, because I can't copy/paste, so I have just my
brain to remember the lines.
It says Can't find ext3 filesystem on dev ide0(3,2).
mount: wrong fs type, bad option, bad superblock on /dev/hda2, 
or too many mounted file systems.

When I type cfdisk /dev/hda it can not detect that /dev/hda2 is an ext3 fs,
so under the FS Type column it writes Linux, instead of Linux ext3. I had a
problem like this before with another filesystem. The problem was EXACTLY
the same. Crash -> reboot -> can not mount But then probably I made a
huge mistake: typed fsck /dev/hda1. It asked me a lot (realy lot), so I
ctrl+c'd, and typed fsck -y /dev/hda1. It worked a lot (20-30mins), and
wrote a lot of things, like bad imagic number (or like that), and wrong
inode etc... but the question was always the same: Clear?. I couldn't
choose. Yes, clear... After fsck finished, I had a still unusable partition,
could not mount it, and couldn't fix it, because after that, every time I typed
fsck /dev/hda2, it said can not find superblock, specify another superblock
with -B option. I tried a lot of number but neither of them worked. So I
lost that partition.
I _don't_ want to lose this partition. I need this partition. Half of my
life is in this partition. Please someone help, what should I do to preserve
the data on my partition.

Very big thanks!

Daniel


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



lilo+ext3 guru needed...

2003-11-06 Thread LeVA
Hello!

I have a nasty problem with lilo and ext3 fs. I have a root partition 
(who doesn't :), and when I choose an image from the lilo's boot menu, 
lilo starts to boot the kernel image, and mounts the root fs read-only. 
(The root fs which I have specified in /etc/lilo.conf is /dev/hda7). 
After booting it ro, the system bootup procedure tries to remount it rw, 
and continue the booting. Here is my problem:

I have these option in my /etc/fstab:

/dev/hda7 / ext3 errors=remount-ro,check=none,data=journal 0 1

The problem is, when lilo first mounts my root partition it mounts with 
data=ordered. And the 'data=' option can not be changed with remount 
option, thus fater the kernel bootup, the system can not remount it rw, 
because it says: data option can not be changed with remount. So my root 
partition remains mounted ro, and I can not boot.
So it seems I can not use data=journal with my root partition. I have to 
edit /etc/fstab , and change /dev/hda7 ...,data=ordered, if I want 
to start my system.
Is this normal? I don't think so... Anybody knows the cure for this 
problem? Is there a way to specify some mount options to lilo, so I can 
put data=journal, and lilo mounts the root partition with journal data 
mode. Or do I have to use another boot manager (grub?) instead of lilo, 
to use data=journal with my root partition?

Thanks a lot!!

Daniel

--
LeVA


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



Re: lilo+ext3 guru needed...

2003-11-06 Thread LeVA
Dennis Stosberg írta:
Am 06.11.2003 um 18:03 schrieb LeVA:
 

So it seems I can not use data=journal with my root partition. I have to 
edit /etc/fstab , and change /dev/hda7 ...,data=ordered, if I want 
to start my system.
Is this normal? I don't think so... Anybody knows the cure for this 
problem? Is there a way to specify some mount options to lilo, so I can 
put data=journal, and lilo mounts the root partition with journal data 
mode. Or do I have to use another boot manager (grub?) instead of lilo, 
to use data=journal with my root partition?


Have you tried the "rootflags" boot option?  With that option you
should be able to pass mount options for the root file system to the
kernel:
rootflags=data=journal

Does this work?

Regards, 
Dennis


Hello!

Yes, it is working. Raly big thanks!!!

Daniel

--
LeVA


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



kind of virtual server

2003-11-09 Thread LeVA
Hello!

Is it possible to make some kind of a little virtual server inside a
debian box? I want to run a separate sshd (for example on port ),
and when someone connects to it, it reads the passwd file, and the
shadow file from a different directory than /etc (for example
/users/etc). And under that /users dir there will be another home dir
for the users, who connects to the  port, and a separate /bin and so
on. I thought that I could make this with installing everything (sshd,
apache, etc...) undert that /users dir, and after that I'm chrooting to
/users. But how can I setup debian to read a different shadow/passwd
file right after the connection (not after chrooting to /users/).
Thanks!

Daniel

--
LeVA


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



disappearing emails

2003-11-09 Thread LeVA
Hello!

I have a strange problem with my emails. I am using mozilla (I don't 
know if this problem is related to mozilla), and after downloading my 
mails form my pop3 server, some mails has incomplete headers, or the 
whole body of the message missing. When the header is incomplete, it is 
like this:

###
From - Sun Nov  9 14:46:30 2003
X-UIDL: 3fae45390001
X-Mozilla-Status: 0001
X-Mozilla-Status2: 
Return-Path: <[EMAIL PROTECTED]>
Received: from cyclops.szivarvanynet.hu (cyclops.szivarvanynet.hu 
[212.92.15.7])
	by janos.szivarvanynet.hu (8.12.3/8.12.3/Debian-6.6) with ESMTP id 
hA9Dh7d6010644
	for <[EMAIL PROTECTED]>; Sun, 9 Nov 2003 14:43:18 +0100
Received: by cyclops.szivarvanynet.hu (Postfix)
	id 615F914F73E; Sun,  9 Nov 2003 14:43:06 +0100 (CET)
Delivered-To: [EMAIL PROTECTED]
Received: from lyris.gamespy.com (lyris.gamespy.com [207.38.1.8])
	by cyclops.szivarvanynet.hu (Postfix) with SMTP id 0F5B8272D2A
	for <[EMAIL PROTECTED]>; Sun,  9 Nov 2003 14:43:04 +0100 (CET)
Message-Id: 
<[EMAIL PROTECTED]>
X-lyris-type: unsub-conf-req
From: "Lyris ListManager" <[EMAIL PROTECTED]>
Reply-To: "Lyris ListManager" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
###

And there is the end, of the message.

This happens with different emails addresses, and different pop3 
servers. Which is always the same, that only the messages arrived in my 
inbox folder has missing headers. If some filter copy the mail to 
another folder, the mail is readable. But not all of the emails has 
incomplete headers in my inbox, just appr. 5 out of 10.

What could be the problem?

Thanks!

Daniel

--
LeVA


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



Mozilla 1.4 and Java and Woody

2003-09-11 Thread LeVA
Hello!

I read the other mails about this issue, but those instructions did not 
help me. So I write my specific problem, and I can only hope,
that someone will help me.
I installed mozilla-i686-pc-linux-gnu-1.4-huHU.tar.gz. Then after I 
installed sun's j2sdk-1_4_2_01-linux-i586.bin. Mozilla.org suggested that
I should install the 1.4..2 version of java for the 1.4 version of 
mozilla. When I run mozilla I get this message:

INTERNAL ERROR on Browser End: No manager for initializing factory?

System error?:: Success

I have no idea what this is mean, and how to fix it. Anyone has?

--
LeVA


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



record sound...

2003-09-22 Thread LeVA
Hello!

I need a program that can record from mic, or line-in, and encode 
realtime to mp3/ogg, or just record to wav.
Anyone knows a program which can do this?

Thanks!

Daniel

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



Re: record sound...

2003-09-22 Thread LeVA
Robert Vollmert wrote:
I need a program that can record from mic, or line-in, and encode 
realtime to mp3/ogg, or just record to wav.
Anyone knows a program which can do this?


If you're using ALSA, try arecord with oggenc:

$ arecord | oggenc -o record.ogg -

Select the recording device using a mixer (e.g. alsamixer).

Cheers
Robert

I am not using alsa :). Any other ideas? Or programs?

Thanks!

Daniel

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



per user samba

2003-09-26 Thread LeVA
Hello!

Is there a way to setup samba, to enable the users to share files/dirs 
under their home dirs. Under kde/konqueror there is an option to share 
files, and if I'm root under kde I can setup to allow the users to share 
files/dirs under their home dir or to not to allow anything. But this 
isn't working, and I think it's because the samba config.
So can I setup samba to allow a simple user, who doesn't have root 
privilages to share some stuff in his home dir. I guess it will be a 
~/.smb file or something like that, but that I don't know :)

Thanks!

Daniel

--
LeVA


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



Re: per user samba

2003-09-27 Thread LeVA
Stephen Patterson wrote:
On Sat, 27 Sep 2003 07:10:13 +0200, LeVA wrote:

Is there a way to setup samba, to enable the users to share files/dirs 
under their home dirs. Under kde/konqueror there is an option to share 
files, and if I'm root under kde I can setup to allow the users to share 
files/dirs under their home dir or to not to allow anything. But this 
isn't working, and I think it's because the samba config.
So can I setup samba to allow a simple user, who doesn't have root 
privilages to share some stuff in his home dir. I guess it will be a 
~/.smb file or something like that, but that I don't know :)


The way I'd do it as a samba admin is to create a share directory that
all the users have access to and have them put the files in there.
Alternatively, as /home is more generic than /home/user, make /home
world writeable (chmod 0777), but keep /home/user user-only (chmod 0700).
Hi!

Thanks for the advice. But I still need a user defined config file for 
samba. I mean there must be a file called ~/.samba.conf or ~/.smb.conf 
or whatever, where a simple user can maintain his own shares, probably 
under his own home dir.
Does samba support a file like this?

Thanks!

Daniel

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



Re: [Samba] per user smb.conf

2003-09-28 Thread LeVA
Tom Dickson wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
No. Samba will check (and reload if necessary) your smb.conf once a
minute, I think.
Hi!

Thanks! This is realy works and it's great! But :) do you know a 
solution that is done automagicaly. You know now the root has to add 
this include line for each user. And there are realy a lot of users, and 
and it's a lot work (adding an include line per a user). Is there a way 
to setup this "user maintained" sharing with a single line. I mean for 
example:

include = /home/$alluser/.smb.conf (or something like that)

Thanks!

Daniel



- -Tom

LeVA wrote:
| Tom Dickson wrote:
|
|> -BEGIN PGP SIGNED MESSAGE-
|> Hash: SHA1
|>
|> Look at the
|>
|> include =
|>
|> line.
|>
|> If you did:
|>
|> include = /home/%u/.smb.conf
|>
|> then I think you'd have what you need.
|>
|> - -Tom
|>
|
| Hi!
|
| Thanks! But another question. Do I have to ask the root to restart smbd
| everytime I modify my /home/%u/.smb.conf ?
|
| Thanks!
|
| Daniel
|
|> LeVA wrote:
|> | Hello!
|> |
|> | I need a user defined config file for samba. I mean there must be a
|> file
|> | called ~/.samba.conf or ~/.smb.conf or whatever, where a simple user
|> can
|> | maintain his own shares, probably under his own home dir. Is it
|> possible
|> | to config samba to enable "per user" samba config files, to let simple
|> | user share their own dirs/files without the root's permission.
|> |
|> | Does samba support something like this?
|> |
|> | Thanks!
|> |
|> | Daniel
|> |
|> | --
|> | LeVA
|> |
|> -BEGIN PGP SIGNATURE-
|> Version: GnuPG v1.2.2 (GNU/Linux)
|> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
|>
|> iD8DBQE/dedORliD/69byygRAhZxAJ99py+PprYk3fUgMta6/vV7c1aU/QCfYA02
|> GgV9DCLy/F8DpXmWjrksEHA=
|> =6cFb
|> -END PGP SIGNATURE-
|>
|
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQE/dlsuRliD/69byygRAq8NAJ9mcJjIVTJIc5xDn69f8qMQl4VbcQCeNUsC
aPp48ubUYGqqnpL1iTgMRsc=
=Zmv0
-END PGP SIGNATURE-


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



procmail question

2003-09-28 Thread LeVA
Hello!

How can I make this with procmail (what should I write to the 
~/.procmailrc file):

If an email has a given text in it's subject, delete the mail,
if another email has aonther given text in its subject write it to 
another file than the user's mail spool file.

Thanks!

Daniel

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



procmail question

2003-09-28 Thread LeVA
Hello!

Here is a bit harder question :).
I have a few email addresses, and I want to ensure that I get just those 
messages which were posted to me.
So I want a rule (or more, I don't know) which filters all mails, if 
they has a To or Cc or Bcc line in the header, which is followed by one 
of my email addressess.

Hope it is possible to do with procmail :)

Thanks for the help!

Daniel

--
LeVA


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



woody bf24 problem

2003-10-06 Thread LeVA
Hello!

I have the 3.0_r1 cd. When booting from the cd, I type 'bf24', because I 
want to create an ext3 partition for my system, and this is not possible
if I start the installation with the 2.2 kernel. But when the 'bf24' 
kernel starts and tries to detect what devices are in the ide channels, 
I get a lot of error messages (appr. 1mess / 5sec):
hda: lost interrupt
hdb: lost interrupt
hdc: lost interrupt
hdd: lost interrupt

This is not happening if I start the installation with the 2.2 kernel.
Afaik I must change some setting in my bios, but I don't know what. I 
guess this because I changed my mainboard in the past week, and this 
problem wasn't there with the old mainboard.

What should I do?

Thanks!

Daniel

--
LeVA


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



woody bf24 problem

2003-10-07 Thread LeVA
Hello!

I have a little problem with the woody cd's bf24 kernel image:
When the 'bf24' kernel starts and tries to detect what devices are in 
the ide channels, I get a lot of error messages (appr. 1mess. / 5sec):
hda: lost interrupt
hdb: lost interrupt
hdc: lost interrupt
hdd: lost interrupt

This is not happening if I start the installation with the 2.2 kernel.
I must do the install with the bf24.
What should I do?

Thanks!

Daniel

--
LeVA




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



lilo problem

2003-10-07 Thread LeVA
Hello!

I have entries in my lilo.conf like these:

image=/boot/linux-2.4.22
label=D-Woody
read-only
other=/dev/hda5
label="D-Sarge"
other=/dev/hda6
label="Red-Hat 9"
When I run the 'lilo' command it says:

"Fatal: First sector of /dev/hda6 doesn't have a valid boot signature"

Ok, but what should I do now? How can I make a "valid boot signature" to 
that partition? I have installed RH9 on it, and it seems it didn't create
that onto that partition.
How can I boot that partition then?
It is a logical partition, not primary, but I toggled the Bootable flag 
on it with cfdisk. Is this the problem?

Thanks for the help!

Daniel

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



hub.c

2003-03-26 Thread LeVA
Hello!

I have some problem with the usb driver in linux kernel 2.4.20. I don't
now who can I write to, so I thought I should give a try here.
I have an usb flash drive (usb pen drive).
If I connect it to the rear (integrated, port 1) usb port, it works
fine. But, if I connect it to the front panel usb port (port 2), it
doesn't work. Now, here comes the complicated part :)
If I first connect the pen drive to the front (port 2) usb port, It
doesn't work. I have to connect it to the integrated (port 1) usb port,
and then I can mount it. After the umount, I disconnect the pen drive
from the port 1, and wow, it works in the front panel (port 2) usb port.
So I have to connect it to the integrated port first, if I want to use
on the usb port 2 (front panel usb port). I don't think this is normal.
Sometimes when, I connect the drive to the port 1, I get an error message:
"hub.c: connect-debounce failed, port 2 disabled"
It uses scsi emulation over usb. I can mount the drive with device
'/dev/sda'.
After about 10 minutes, the port2 stops, and it doesn't work again. Then
I have to do that work all over again (unplugging, plugging to the port
1 etc...).
I know it is very strange, and complicated for the first time, but I
hope, that someone can help me solving this problem, or telling an other
email, which supports this driver.
Thanks:

Levai Daniel
[EMAIL PROTECTED]



smime.p7s
Description: S/MIME Cryptographic Signature


Multimedia Keyboard

2003-04-05 Thread LeVA
Hi!

Anybody knows, how can I setup a Genius Comfy KB-16M Wireless keyboard's 
multimedia keys? When I use
Option  "XkbModel"  "geniuscomfy"
in the XF86Config, some keys, still don't work.

Thanks!

Levai Daniel


smime.p7s
Description: S/MIME Cryptographic Signature


Re: Multimedia Keyboard

2003-04-06 Thread LeVA
Hello!

Is it possible to download more keyboard definition files from somewhere 
(.def files), because my keyboard isn't in hotkeys supported keyboard list.

Thanks.

Levai Daniel

Scott Henson wrote:
On Sat, 2003-04-05 at 04:00, LeVA wrote:

Hi!

Anybody knows, how can I setup a Genius Comfy KB-16M Wireless keyboard's 
multimedia keys? When I use
Option  "XkbModel"  "geniuscomfy"
in the XF86Config, some keys, still don't work.
Look into hotkeyd and acme.  Acme is the better of the two, but it is a 
gnome2 specific thing, while hotkeys works almost anywhere.  




smime.p7s
Description: S/MIME Cryptographic Signature


sed howto

2003-05-29 Thread LeVA
Hi!

Can somebody recommend a good sed howto hp. I have read the man, but it 
seems my brain has some bad sectors, and couldn't quite understand some 
sentences. (Or maybe I just couldn't translate it to hungarian well)
Anyway, thanks!

Levai Daniel

--
LeVA


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



Re: sed howto

2003-05-29 Thread LeVA
Ok Sorry!

I was wrong. I don't need sed howto, but I need a regex howto with 
examples, which explains regex features for little kiddie like me.

Thanks!

LeVA wrote:
Hi!

Can somebody recommend a good sed howto hp. I have read the man, but it 
seems my brain has some bad sectors, and couldn't quite understand some 
sentences. (Or maybe I just couldn't translate it to hungarian well)
Anyway, thanks!

Levai Daniel



--
LeVA


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



jailed bind

2003-06-05 Thread LeVA
Hi!

I heard from someone that he uses jailed bind, because it is more 
secure. What does it mean exactly "jailed"?
Does it mean chrooted bind, or it has got something else special?

Thanks!

Daniel Levai

--
LeVA


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



framebuffer

2003-06-10 Thread LeVA
Hi!

I have installed a matrox g200 video card. I compiled the kernel with fb 
devices etc.. etc..
With the fbset program program I can setup my resolutions, and refresh 
rates fine, but what is in the fb.modes file, is not enough for me. I 
wish to add some other res, and refresh modes, but I don't know how to 
figure out these values:

mode "1024x768-100"
# D: 110.0 MHz, H: 79.023 kHz, V: 99.78 Hz
geometry 1024 768 1024 768 8
timings 9091 280 0 16 0 88 8
endmode
I want to add a 1024x768-85 but, don't know how to reckon geometry and 
timings values.
If somebody can, please let me know how.

The other question is, how to set up at boot time, that _all_ of my 
consoles get the appropriate fb values. Switching to every console, and 
typing 'fbset 1024x768-75' is boring :).

Thanks!

Daniel Levai

--
LeVA


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



xfree and mouse buttons

2003-06-10 Thread LeVA
Hi!

I'm using 4.1.0 xfree, and a m$ intellimouse explorer 3.0a usb mouse. 
The mouse has 5 buttons. I want to use all of the 5 buttons, and the 
scrolling wheel too, which also has button numbers, what I must assign 
to  the 'ZAxisMapping' option in the XF86Config file.
Here is my config:

Option  "Buttons"   "5"
Option  "ZAxisMapping"  "6 7"
With 'xev' I can see, that the scrolling wheel is button 6 and 7. So I 
was happy, and set up the config file like the above. There is the 5 
buttons, and the button 6th-7th for the scrolling wheel.
Guess what, it didn't work :D

The scrolling wheel isn't working with the wheel itself. But I can 
scroll with the 4th and the 5th button. Which isn't the scrolling wheel 
buttons...

So it seems, I can not set "ZAxisMapping" value higher than 4 and 5.

Somebody has an idea why, or what did I do wrong?

Thanks!

Daniel Levai



--
LeVA


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



get cdrom information

2003-06-11 Thread LeVA
Hi!

Is there any way to get some information about the cd inserted in the 
cd-rom drive?
I want to know the creation date, and the volume label etc... That would 
be nice if it could display the sessions too, but this is not very 
important.

Thanks!

--
LeVA


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



kdm locale problem

2003-06-11 Thread LeVA
Hi!

I have a rather complicated problem with kdm, and I am from Hungary, but
I will try to be as clear as I can :)
Hope that someone could help me.
So, let's start.

Some background information:
I am using Debian with woody (stable) packages. This comes with xfree
4.1.0. I have added an apt source for the new kde binaries
(http://download.kde.org... etc...). I have installed kde 3.1.2 from
that apt source. Everything is just fine :)
But :) I have installed xfree 4.2.1, but not from Debian mirrors,
instead from www.xfree86.org. I have downloaded the new binaries and
installed it. Wow it is cool. Faster than the older 4.1.0. Unfortunately
the kdm which came from the kde.org's apt source is not running. In the 
log it says
there is some xdcmpwrapper problem. Oh well, I wrote to some of my
friends, and they gave me an advice, that I should compile kdm from the
kdebase sources to make it work with the new (4.2.1) xfree86. Ok. It
took sooo long... :)) But when it finished I could not wait to try it.
Yeah it is working. The kdm runs, and I am using 4.2.1 xfree. But you
know in every good thing, there is something bad :) And here comes the
real problem:

If I start kde from kdm, I lose my localisation settings in kde. I am using
hu_HU in locales. If I start kde from a console with startx, everything
is Ok. But when I am starting kde from kdm, the programs that uses the
translated .m4 or .po files, or just have some translated files, does
not seems to be in hungarian language (ex.: xchat, licq). They are in 
english. In the kde
control center, I can set up kdm to display the kdm buttons and messages 
(login,
shutdown etc...) in hungarian. So that is ok. The problem is when I
start kde from the kdm login manager, it seems, that kdm "resets" the
localisations, and sets the lang to en, or en_US (or something like
that). If I start a konsole from kde, and run this:

echo $LANG
I get "hu_HU".
That is why I can not understand this problem. It seems,
that I am using hu_HU locales, but the kde programs, and other (for
example Xchat, or Licq) programs doesn't recognise the hu_HU locales,
and falls back to english. And this is all because I started kde from
the kdm login manager, and not from console with startx.
Is there some extra option which I must add when I configure kdebase to
support other languages? Or it is autodetect everything? Or is there a
kdm binary, which is working with 4.2.1 xfree (don't have the 
Xdcmpwrapper failure), and "acts" like the
kde.org's kdm binary (is working with locales :) ?

I hope you understand everything, and can help me. Please write me,
if some info is missing, or you need to test something.
Thanks for the answer!

Daniel Levai

--
LeVA




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



kdm locale problem

2003-06-11 Thread LeVA
Hi!

I have a rather complicated problem with kdm, and I am from Hungary, but
I will try to be as clear as I can :)
Hope that someone could help me.
So, let's start.

Some background information:
I am using Debian with woody (stable) packages. This comes with xfree 
4.1.0. I have added an apt source for the new kde binaries 
(http://download.kde.org... etc...). I have installed kde 3.1.2 from 
that apt source. Everything is just fine :)
But :) I have installed xfree 4.2.1, but not from Debian mirrors, 
instead from www.xfree86.org. I have downloaded the new binaries and 
installed it. Wow it is cool. Faster than the older 4.1.0. Unfortunately 
the kdm which came from the kde.org's apt source is not running. In the 
log it says there is some xdcmpwrapper problem. Oh well, I wrote to some 
of my friends, and they gave me an advice, that I should compile kdm 
from the kdebase sources to make it work with the new (4.2.1) xfree86. 
Ok. It
took sooo long... :)) But when it finished I could not wait to try it. 
Yeah it is working. The kdm runs, and I am using 4.2.1 xfree. But you 
know in every good thing, there is something bad :)
And here comes the real problem:

If I start kde from kdm, I lose my localisation settings in kde. I am 
using hu_HU in locales. If I start kde from a console with startx, 
everything is Ok. But when I am starting kde from kdm, the programs that 
uses the translated .m4 or .po files, or just have some translated 
files, does not seems to be in hungarian language (ex.: xchat, licq). 
They are in english. In the kde control center, I can set up kdm to 
display the kdm buttons and messages (login, shutdown etc...) in 
hungarian. So that is ok. The problem is when I start kde from the kdm 
login manager, it seems, that kdm "resets" the localisations, and sets 
the lang to en, or en_US (or something like that). If I start a konsole 
from kde, and run this:

echo $LANG
I get "hu_HU".
That is why I can not understand this problem. It seems, that I am using 
hu_HU locales, but the kde programs, and other (for
example Xchat, or Licq) programs doesn't recognise the hu_HU locales, 
and falls back to english. And this is all because I started kde from 
the kdm login manager, and not from console with startx.

Is there some extra option which I must add when I configure kdebase to 
support other languages? Or it is autodetect everything?

Or is there a kdm binary, which is working with 4.2.1 xfree (don't have 
the Xdcmpwrapper failure), and "acts" like the kde.org's kdm binary (is 
working with locales :) ?

I hope you understand everything, and can help me. Please write me, if 
some info is missing, or you need to test something.

Thanks for the answer!

Daniel Levai

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



xfree modules

2003-06-12 Thread LeVA
Hi!

There is a section named Modules in the XF86Config-4 file. Has somebody
a howto, or doc page where is some explanation about the modules?
For example "dbe" "ddc" "vbe" "dri" "extmod" "glx" "pex5" "record" "xie"
"xtrap" "speedo" "type1" "GLcore" "bitmap" "dbe" "ddc" "freetype"
"int10" "vbe" etc
Thanks!

--
LeVA


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



mouse buttons map

2003-06-13 Thread LeVA
Hi!

I'm using this line make my mouse's whell work:

xmodmap -e "pointer = 1 2 3 6 7 4 5"

Is it possible to map a button, to another existing button? For example 
I have a middle button called "Button 2". But I have another button 
called "Button 6". I want to make "Button 6" work exactly as "Button 2", 
and when I press "Button 6", it would seems like I just pressed "Button 
2". Is this possible?
I tried with xmodmap:

xmodmap -e "pointer = 1 6 3 6 7 4 5"

For this I get an error message:

X Error of failed request:  BadValue (integer parameter out of range for 
operation)
  Major opcode of failed request:  116 (X_SetPointerMapping)
  Value in failed request:  0x6
  Serial number of failed request:  10
  Current serial number in output stream:  10

How can I do this?

Thanks!



--
LeVA


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



Re: kdm locale problem

2003-06-13 Thread LeVA
Thanks!

I put the exports to my .Xsession and in kde I lose my hungarian "é" "á" 
 ... letters. In the Desktop these letters replaced by a little white 
block, and in konsole I simply can not type those letters. If I press 
those, nothing happens, but for 'echo $LANG' I get "hu_HU", and every 
program uses the right hungarian transaltions.

Any ideas why?

Thanks!

Ben Kal wrote:
On 11 Jun 2003 LeVA <[EMAIL PROTECTED]> wrote:


I am using Debian with woody (stable) packages. This comes with xfree 
4.1.0. I have added an apt source for the new kde binaries 
(http://download.kde.org... etc...). I have installed kde 3.1.2 from  that
apt source. Everything is just fine :)


[snip]


Yeah it is working. The kdm runs, and I am using 4.2.1 xfree. But you 
know in every good thing, there is something bad :) And here comes the
real problem:


If I start kde from kdm, I lose my localisation settings in kde. I am 
using hu_HU in locales. If I start kde from a console with startx, 
everything is Ok. But when I am starting kde from kdm, the programs that 
uses the translated .m4 or .po files, or just have some translated  files,
does not seems to be in hungarian language (ex.: xchat, licq).  They are
in english.


In the kde control center, I can set up kdm to  display the kdm buttons
and messages (login, shutdown etc...) in  hungarian. So that is ok. The
problem is when I start kde from the kdm  login manager, it seems, that
kdm "resets" the localisations, and sets  the lang to en, or en_US (or
something like that). If I start a konsole  from kde, and run this:


echo $LANG
I get "hu_HU".


Sounds like the locale for X sessions is not set to 'hu_HU', or probably not
set at all and therefore defaulting to 'C', while it is set to 'hu_HU' for
virtual consoles and shells in X terminals. This can easily happen because
the startup scripts that are run for shells and X sessions are not the same.
I am not using kdm and KDE but xdm and Gnome, and with that setup xdm calls
the user's .xsession script to start the X session, with the last line in
that script being a call to gnome-session to start Gnome. This means that
every user can set the locale for X sessions to his/her liking by inserting
the line
  export LANG= LC_ALL=
into his/her .xsession before the call to gnome-session. I assume something
similar can be done when using kdm and KDE.
More generally:

It pays to study man bash (or man tcsh or man ) to
learn what startup scripts are read under what circumstances. Issues to be
aware of are (in the following the use of xdm and bash is assumed but similar
considerations apply to other graphical logins and shells, I believe):
- xdm replaces login but does not set up the environment in exactly the same
  way as login does, for instance xdm does not set MAIL.
- the shell of an X terminal is not a login shell (the user is already
  logged in through xdm) so the startup scripts for login shells,
  /etc/profile and ~/.bash_profile in the case of bash, are not executed!
  This easily causes the environment of shells on virtual consoles to be
  radically different from the environment of shells in X terminals.
- environment variables have to be set only once and are inherited by all
  processes that are children of the login shell or the X session,
  but things like aliases and shell options have to be set every time
  a shell is started.
To ensure that:
- the environment is the same in all shells
- X programs know the same environment variables as shells
- on startup shells do not read more startup scripts than necessary
I did the following:
- put all settings of environment variables in /etc/profile and ~/.bash_profile
- put all aliases and shell options in /etc/bash.bashrc and ~/.bahsrc
- made /etc/profile source /etc/bash.bashrc
- made ~/.bash_profile source ~/.bashrc
- made ~/.xsession source both /etc/profile and ~/.bash_profile,
  after setting a variable that to /etc/profile and ~/.bash_profile signals
  that they have been sourced by ~/.xsession;
  in that case they do not need to source /etc/bash.bashrc resp. ~/.bashrc,
  and instead unset that environment variable.
- have default versions of .bash_profile, .bashrc and .xsession in which the
  above is implemented available in /etc/skel.
With this recipe it should be sufficient to put
  export LANG=hu_HU LC_ALL=hu_HU
in
  /etc/profile
to make Hungarian the system-wide default for all programs,
while every user can put a line
  export LANG= LC_ALL=
in his/her
  .bash_profile
to choose another language, provided the locale of that language is installed.
Hope this solves your problem

Ben



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



Re: kdm locale problem

2003-06-15 Thread LeVA
Hi!

Ben Kal wrote:
On 13 Jun 2003 LeVA <[EMAIL PROTECTED]> wrote:



Yes, you now have to take the next two hurdles (the final ones, luckily):
- installation of fonts that support the Hungarian character set and
  configuration of applications to use them;
- configuration of the keyboard for generating all the Hungarian special
  characters.
The following are just hints to what to do; I advise you to read the HOWTO's
about installing support for the Euro sign. Although that is a slightly
different subject I expect you to find it very instructive because it points
to all the places in the system that one has to fiddle with to get full
support for one's funny national characters.
Fonts
~
The Hungarian character set is ISO-8859-2, isn't it? So you need fonts with
support that character encoding.
For X11, such fonts are in the packages:
  xfonts-base-transcoded
  xfonts-75dpi-transcoded
  xfonts-100dpi-transcoded
Just install the packages, and the fonts should be available to X11
programs, although some may need to be told to use them in a configuration
file or configuration utility of their own, for instance for xterm, edit
/etc/X11/app-defaults/XTerm (the *VT100*font lines)
For virtual consoles, the right fonts and character sets are in the package
  console-data
Chances are you already have that installed. You will then find the fonts in
/usr/share/consolefonts/, the character sets in /usr/share/consoletrans/.
The fonts you will want are those with names starting with lat2, and the
character sets the ones with names starting with iso2.
The way to make the right combination of font and character set active on
virtual consoles is editing the file
  /etc/console-tools/config
The comments in the file itself more or less tell you what to do; if still
unsure, do: man consolechars; man charset.
No doubt there are more sources of fonts than the Debian packages mentioned,
but I myself do not yet really know my way in the world of fonts.
Keyboard configuration
~~
Finally, the keyboard layout (what characters are generated by what keys and
combinations of keys) must be such that there is a key or combination of
keys to generate every special character that some national character set
might have.
For X11, I *expect* that, in
  /etc/X11/XF86Config-4
under
  Section "Keyboard"
you must enter
  Option  "XkbLayout"  "hu"
but it could be that you will not like the effect at all. I myself do not
use "XkbLayout" "nl", because on an official true Dutch keyboard many
characters are under other keys than on an English keyboard; but once
I learned to touch type on an English keyboard, so on a Dutch keyboard
I constantly mistype!
Keyboard configuration in X11 is highly involved. The files that determine
it are in a directory tree under /etc/X11/xkb/. The "Keyboard" Section of
/etc/X11/XF86Config in effect tells the X server which of the files in
/etc/X11/xkb/ it must read on startup to set up the keyboard.
I believe that the options available for "XkbLayout" in the "Keyboard"
Section of /etc/X11/XF86Config correspond to the files in
/etc/X11/xkb/symbols/. If none of those makes you really happy, you could
make your own, by editing a copy of one of the existing ones 
For virtual consoles, in
  /usr/share/keymaps/
find a Hungarian keymap file; the prime candidate I see on my system is
  hu101.kmap.gz
Install a copy of the preferred keymap file as
  /etc/console/boottime.kmap.gz
and from then on /etc/init.d/keymap.sh will make your console keyboard
Hungarian on startup.
Again, as in X11, if none of the prefabricated official console keymaps is
really convenient, edit one to your liking 
Good luck with your 'localisation project'
Ben
Thanks for answering. This is all ok, and I know how to make hungarian 
letters work "normally". The above set up is already done. My problem is 
when I start kde from kdm, those (the above) options do not take effect, 
the letters are not working. But when I start kde with startx, 
everything is fine.

--
LeVA


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



making /dev entries

2003-11-16 Thread LeVA
Hello!

I accidentally deleted my /dev/dsp0 file. Is there any way, to remake 
that device? I have recompiled my kernel, and run /sbin/MAKEDEV, but no 
success.

Thanks!

Daniel

--
LeVA


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



making /dev entries

2003-11-16 Thread LeVA
Hello!

I accidentally deleted my /dev/dsp0 file. Is there any way, to remake
that device? I have recompiled my kernel, and run /sbin/MAKEDEV, but no
success.
Thanks!

Daniel

--
LeVA


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



Re: What up with www.debian.org ?

2003-11-21 Thread LeVA
Raghavendra Bhat írta:
Jerome posts:


What happens to www.debian.org ?


Someone has  cracked all the servers  of the Debian  Project.  There has
been  a severe  security  mishap  and guys  should  uninstall all  stuff
downloaded  and installed in  the past  2 days.   Please do  not apt-get
anything right now!  Please wait till an `official' release happens!
And if I can ask you, from where do you know that? I don't think that 
spreading rumours is a good idea right know...

--
LeVA


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



traffic shaper

2003-11-26 Thread LeVA
Hello!

I'm looking for an application which can limit another process's 
bandwith usage. A program called 'trickle' does this perfectly, but I've 
read a few minutes ago on it's homepage, that the programmer stopped 
developing it, and I can not compile the latest version, because after 
typing make, I get a bunch of error messages. So does anybody know a 
"clone" for trickle, or another way to limit another program's (ie.: 
ncftp) bandwidth usage?

Thanks!

Daniel

--
LeVA


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



Re: traffic shaper

2003-11-27 Thread LeVA
Greg Folkert írta:
On Wed, 2003-11-26 at 15:02, LeVA wrote:

Hello!

I'm looking for an application which can limit another process's 
bandwith usage. A program called 'trickle' does this perfectly, but I've 
read a few minutes ago on it's homepage, that the programmer stopped 
developing it, and I can not compile the latest version, because after 
typing make, I get a bunch of error messages. So does anybody know a 
"clone" for trickle, or another way to limit another program's (ie.: 
ncftp) bandwidth usage?


apt-get install ipmenu

And when packages comes backup:

http://packages.debian.org/ipmenu
Hi!

I don't quite understand how comes an iptables and iproute gui in to the 
picture? I need a traffic shaper like util, which can control a 
process's bandwidth usage. Can I controll it with iptables or iptroute?

Daniel

--
LeVA


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



creating password for shadow file

2003-11-30 Thread LeVA
Hello!

I need to add users to a passwd/shadow file, but these files does not 
reside in /etc dir. Thus I can not use the adduser or useradd tool to 
add the user, because they will add it to the /etc/passwd|shadow file. I 
managed to create a passwd file, and wrote the user name and uid, and 
homedir etc... by hand. After that I used htpasswd program to create a 
passwd for the user. This passwd/shadow files are used by an ftp server. 
And the shadow file must be encrytped with md5. So I typed:

htpasswd -m shadow.ftp user

The problem is that this program doesn't create a password like the 
adduser program used to create. When I try to login with 'user' via ftp, 
it says username and/or password was not accepted, so the passwd 
generation didn't work.

My question: Is it possible to create passwords for shadow file with a 
command line tool? Is this htpasswd the right tool for this? Or if this 
is not possible, then how can I specify another destination 
shadow/passwd file for the adduser/useradd program.

Thanks!

--
LeVA


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



bind and dynamic ip

2003-11-30 Thread LeVA
Hello!

I have a dynamic ip, and a server which runs bind. I have registered a 
domain name to that server, and I want to use a hostname for my dynamic 
ip. Can I do this? I thought it would be like, connecting to the remote 
dns server, and then update the zone file, and then reload bind. But how 
this is possible? Anybody knows a good howto about this?

Thanks!

Daniel

--
LeVA


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



Re: bind and dynamic ip

2003-12-01 Thread LeVA
Lucas Bergman írta:
LeVA <[EMAIL PROTECTED]> writes:


I have a dynamic ip, and a server which runs bind. I have registered
a domain name to that server, and I want to use a hostname for my
dynamic ip. Can I do this? I thought it would be like, connecting to
the remote dns server, and then update the zone file, and then
reload bind. But how this is possible? Anybody knows a good howto
about this?


  http://www.dyndns.org/

Lucas


Oh, the good old "if you don't know how to do it, then make someone else 
do it for you" answer. Thanks but I needed an answer with a howto, or 
some help on how to do this on my own. But I guess you could read that 
from my letter.

bye

--
LeVA


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



Re: bind and dynamic ip

2003-12-02 Thread LeVA
Lucas Bergman írta:


You are an idiot, but I guess I could read that from your letter.

*plonk*
LOL : I can just laugh at you...

Lucas


--
LeVA


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



creating password for a shadow file

2003-12-01 Thread LeVA
Hello!

I need to add users to a passwd/shadow file, but these files does not
reside in /etc dir. Thus I can not use the adduser or useradd tool to
add the users, because then they will be added to the /etc/passwd|shadow 
file, and my passwd/shadow files are in another directory. These 
passwd/shadow files are used by an ftp server. I have managed to create 
a passwd file, and wrote the user name and uid, and homedir etc... by 
hand. The shadow file's passwords must be encrytped with md5. So I used 
the 'htpasswd' program to create a password for the user.  I typed:

htpasswd -m shadow.ftp user

The problem is that this program doesn't create a password like the
adduser program used to create, and put to the /etc/shadow file. When I 
try to login with 'user' via ftp (using the newly created shadow file),
it says username and/or password was not accepted, so the password 
generation didn't work.

'htpasswd -bmn user password' output:

user:$apr1$DlJ9I...$E8VL0rjQKdl1pVgH2q10C.

'adduser user' (with same password as above) output:

user:$1$NR.fOvEF$.hOr7l7msiIfz6sP4l0yS/

As you can see they don't match.
So my question is, that is it possible to create passwords for a shadow 
file with a command line tool? Is this htpasswd the right tool for this, 
and I just can not use it? Or if this is not possible, then how can I 
specify another destination shadow/passwd file for the adduser/useradd 
program.

Thanks!

Daniel

--
LeVA


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



lilo doesn't boot win

2003-12-10 Thread LeVA
Hello!

I have these lines in my /etc/lilo.conf:

other=/dev/hdg1
label="Win"
When I run 'lilo', it says:

...
Added Win
...
This hdg drive, is on the motherboard's raid controller, and I can boot 
from it, if I setup that in BIOS.
When I select this 'Win' line in lilo (LILO version 22.5.8), I get a 
blank screen, and the system doesn't do anything. It can not boot to 
win. What could be the problem?

Thanks!

Daniel

--
LeVA


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



Re: logout script

2004-11-24 Thread LeVA
2004. november 24. 12:57,
Thomas Beresford <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED],:
> Is there a way to create a script to run some commands whenever I
> logout the machine? Is so,how?
>
> Thomas Beresford

Hi Thomas!

Touch a '.bash_logout' file inside your homedir, and bash will execute 
it, when logging out.

hth,

Daniel

-- 
LeVA



pgpYeOakNbRME.pgp
Description: PGP signature


Re: writing dvd, any suggestion?

2004-12-16 Thread LeVA
2004. December 16. 10:54,
Alberto Bert <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED],:
> Do you have suggestion about which dvd writing program should I use?
>
> I saw xcdroast should do it but I need to install something like
> prodvd, unfortunately I don't know where can I find it (debian
> packages).
>
> Apparently there are also command line programs, for me they are ok,
> but which one would you suggest me?

Hi Alberto!


For dvd writing I recommend the dvd+rw-tools from
http://fy.chalmers.se/~appro/linux/DVD+RW/tools/?M=D
The growisofs part of that package uses mkisofs, so you must install 
cdrtools first from: ftp://ftp.berlios.de/pub/cdrecord/

Of course they are presented in deb packages too, and you can apt-get 
them from a debian mirror.


HTH,

Daniel


-- 
LeVA


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



Re: RealPlayer

2005-05-13 Thread LeVA
2005. május 12. 18:53,
John L Fjellstad <[EMAIL PROTECTED]>
-> debian-user@lists.debian.org,:
>
> I have those installed.  Still never got mplayer to play realaudio files

Hi!


If you are compiling mplayer from sources, then you need to define the 
--with-reallibdir= switch. In that path, I have the 
following files:
amrn.so atrc.so cook.so drv1.so drvc.so rv10.so rv30.so sipr.so amrw.so 
colorcvt.so cvt1.so drv2.so raac.so rv20.so rv40.so

By the way, I have installed RealPlayer 10 from www.real.com ,
and I also have the binary codecs from www.mplayerhq.hu .


HTH,

Daniel

-- 
LeVA



Re: udev how to set up automatic /media/cdrom0

2005-05-16 Thread LeVA
2005. május 16. 14:47,
Mitchell Laks <[EMAIL PROTECTED]>
-> debian-user@lists.debian.org,:
> Hi,
> are there any knowledgeable users of udev who can tell us how to configure
> udev scripts to automatically create
> /media/cdrom0 and /media/cdrom1?
>
> Also shouldn't this be part of the debian sarge installer?
>
> If you agree I will submit a bug...
>
> Thanks,
Hi Mitchell,

http://www.reactivated.net/writing_udev_rules.html


HTH,
Daniel

-- 
LeVA



system.map files

2005-05-31 Thread LeVA
Hi!

Would someone please tell me what are those /boot/System.map* files for?

Thanks!

Daniel

-- 
LeVA


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



how to disable ctrl+alt+backspace in X

2005-06-11 Thread LeVA
Hi!

If it is possible, please tell me, how to prevent killing my X with 
ctrl+alt+backspace.

Thanks!

Daniel

-- 
LeVA


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



how to disable ctrl+alt+backspace in X

2005-06-11 Thread LeVA
Hi!

If it is possible, please tell me, how to prevent killing my X with 
ctrl+alt+backspace.

Thanks!

Daniel

-- 
LeVA


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



resolvconf w/ dhcpd -> /etc/hosts not working

2005-06-11 Thread LeVA
Hi!

I'm using a dhcp3 client with resolvconf configuration. The ip updating and 
name server configuration works fine, but I can not use the /etc/hosts file.
For example if I set this up in /etc/hosts:

192.168.0.1server.example.org   server

Then typing 'host server` will end up with the error:

Nameserver not responding
server.example.org A record not found, try again

What do I have to configure to make the dns lookups first read from 
the /etc/hosts file and after that the nameservers.

My /etc/host.conf looks like this:

order hosts,bind
multi on



Thanks!

Daniel

-- 
LeVA


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



openoffice impress - how to print the draft

2005-06-15 Thread LeVA
Hi!

I'm using OpenOffice.org 1.1.4, but my settings are in hungarian language, so 
I don't know what is the correct name for this function. I think it is 'Draf` 
mode (it shows up when you press the F12 button).
My question is: how to print only that draft. If I've switched to draft mode, 
and press print, the oo will print the whole document not the draft.

Thanks!

Daniel

-- 
LeVA


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



can not save documents in my locale w/ openoffice.ord

2005-06-16 Thread LeVA
Hi!

I'm using OpenOffice.org 1.1.4. When I try to save a document which filename 
contains a character from my language (Hungarian), for example 'é' or 'á' 
then the filename will be (in case the filename is 'doc_á'): doc_%E1.sxw.
Oo has problems when opening a file from a directory which name also contains 
those letters. It says the it cannot find the document in the 
"/home//doc_%E1/doc_%E1.sxw" path.
Anyone knows how to configure oo to use my own locale?

Thanks!

Daniel

-- 
LeVA



Re: Configuring Network Card

2005-06-19 Thread LeVA
2005. június 19. 19:02,
Inhan Kang <[EMAIL PROTECTED]>
-> debian-user@lists.debian.org,:
> Hello everyone and thank you for being so helpful on the list.
>
> Anyway, I'm trying to install linux and I can't get debian to detect
> my Intel Pro 10/100 network card.  I just bought an emachines T3958
> desktop to setup linux and learn how to use it, but I need the
> networking capabilities.
>
> I've tried using both kernel 2.2 and 2.4, when I try to install
> eepro100 as a kernel/device module in the install screen, it doesn't
> work.  I've also tried installing it after logging in as root, going
> to http://sourceforge.net/projects/e1000/ and downloading the
> e100-3.4.10.tar.gz file and following the directions on the readme.
>
> I think the error I got when trying to make install the file is
> something like, the kernel was not found.
Hi!

Next time try to be more specific about the error messages and the situation. 
Anyway, I think you must install your kernel's sources (either from your 
distribution's packages, or from the linux kernel archives).

Daniel

-- 
LeVA



no DEL or HOME/END keys in ncftp

2005-06-19 Thread LeVA
Hi!

I'm using ncftp 3.1.9, but can not use the DEL or HOME/END keys in the ncftp's 
prompt, instead I get the tilde (~) character for those buttons. I'm using 
the ISO-8859-2 locale (if itt matters).

Anyone knows a solution for this?

Thanks!

Daniel

-- 
LeVA


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



Gimp2 segfault

2004-09-28 Thread LeVA
Hi!

Anyone experiencing a segfault with Gimp2 in Sarge?
I've tried to run gimp(2.0.4) compiled from sources, and installed from 
deb packages (sarge, gimp2.0.4), but neither of them could start.
I get this error message everytime:

$ gimp

(script-fu:8668): LibGimpBase-WARNING **: script-fu: wire_read(): error
Segmentation fault
$

What could be the problem?

Thanks!

Daniel

-- 
LeVA



pgpQLST5wdZmL.pgp
Description: PGP signature


can not use the select with mouse feature in konsole with kernel 2.6

2004-06-28 Thread LeVA
Hi!

I'm running kde-3.2.3, and linux kernel 2.6.7.
If I start mc (or any app which is using ncurses) in the 'konsole' kde 
app, I can not select lines with SHIFT+LEFT_MOUSE_CLICK.
This selecting is working with kernel 2.4.*, and also, if I'm not 
running mc, just the simple 'konsole' app, I still can not select lines 
with SHIFT+LEFT_MOUSE_CLICK, but at least I can select lines without 
the SHIFT key being pressed down. But I can not do this in mc, because 
if I don't push the SHIFT button, then it enters to a dir.
I don't know if it matters, but I'm using an usb mouse and usb keyboard 
with the usbhid module.
Anyone can confirm this bug?

Daniel


-- 
LeVA







pgp0eACAcNQTc.pgp
Description: signature


Re: can not use the select with mouse feature in konsole with kernel 2.6

2004-06-28 Thread LeVA
2004. június 28. 14:30,
Thomas Dickey <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED], [EMAIL PROTECTED]:
> In linux.debian.user LeVA <[EMAIL PROTECTED]> wrote:
> > I'm running kde-3.2.3, and linux kernel 2.6.7.
> > If I start mc (or any app which is using ncurses) in the 'konsole'
> > kde
>
> mc isn't using ncurses.
Thanks for the very helpful reply ;) btw I didn't said that mc uses 
ncurses...


-- 
LeVA





pgpd880IsY5l4.pgp
Description: signature


Re: raise user accounts max fd

2004-06-29 Thread LeVA
2004. június 29. 16:05,
nx13372 <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED]:
> > Ross Tsolakidis wrote:
> >> Hi,
> >>
> >> I am running "Linux [hidden] 2.4.25-bf2.4 #1 SMP Wed Mar 10
> >> 10:35:09 PST 2004 i686 unknown" and would like to know how to
> >> raise a user accounts max file descriptors (FDs, shown via ulimit
> >> -n) from the default 1024 to 4096, to allow an IRC daemon more
> >> permitted open files.
> >>
> >> After adding the lines:
> >> ircd hard nofile 4096
> >> ircd soft nofile 4096
> >>
> >> to /etc/security/limits.conf at the end of the file (they are not
> >> commented out), and re-logging into the ircd user terminal and
> >> typing: ulimit -n
> >>
> >> The count still appears as 1024, not the new 4096 figure.
> >>
> >> What am I doing wrong?
> >>
> >> Any help is appreciated,
Hi Ross!

The /etc/security/limits file is working together only with pam enabled 
applications. It has nothing to do with the ulimit app (but plz correct 
me if I'm wrong). If you want to make the "ulimit -n 4096" setting 
permanent, you should add that to the ircd user's ~/.bashrc (if it has 
a home dir).

Best wishes,

Daniel


-- 
LeVA



pgp6pui0Ciq85.pgp
Description: signature


Where is the post-install command from /etc/modprobe.d ?

2004-06-29 Thread LeVA
Hi!

I'm running kernel 2.6.7.

With kernel 2.4 I could edit the /etc/modutils/rtc, end add this line to 
it:
post-install rtc echo "1024" > /proc/sys/dev/rtc/max-user-freq

But now with kernel 2.6, modprobe ignores that directory, and 
using /etc/modprobe.d/ instead. But I can not add that "post-install" 
line to /etc/modprobe.d/rtc because I get an error, that that 
post-install command doesn't exist.

I need to run that script after I've installed that module, because 
before it, that file in /proc doesn't exists.

Is there some alternative for the post-install? I've digged thru man 
modprobe.conf, but there is only an "install" command there.

Anyone can help me?

Thanks!

Daniel

-- 
LeVA



pgpgVp7rKy8mV.pgp
Description: signature


SB Live! 5.1 - Can not make the rear channels working

2004-07-03 Thread LeVA
Hi!

I have an SB Live! 5.1 PCI soundcard. It's pci id is 
1102:0002 
I can access three dsp devices under my /dev. These 
are /dev/dsp , dsp0 and dsp1. 
I can test the dsp devices with: 
`cat /usr/bin/mc > /dev/dsp' -> Front Speakers 
`cat /usr/bin/mc > /dev/dsp0' -> Front Speakers(again) 
`cat /usr/bin/mc > /dev/dsp1' -> I can not hear anything... 
`cat /usr/bin/mc > /dev/dsp2' -> No such device 
`cat /usr/bin/mc > /dev/dsp3' -> No such device 

I have four speakers. One stereo set plugged in to the 
green jack (Front), and one stereo set plugged in to the 
black jack (Rear). But I can't hear anything from the 
rear speakers, although they are working, cause I can 
change the speakers. 
I'm using the OSS drivers from linux kernel 2.6.7. 

lsmod: 
 emu10k1 68740 2 
 ac97_codec 16780 1 emu10k1 

From the emu-tools package (emu10k1.sf.net):
emu-dspmgr -r : 

 Routes: 
 Pcm L:Front L 
 Pcm L:Rear L 
 Pcm R:Front R 
 Pcm R:Rear R 
 Pcm1 L:Rear L 
 Pcm1 R:Rear R 
 fx8:Front L 
 fx9:Front R 
 fx10:Rear L 
 fx11:Rear R 
 fx12:Analog Center 
 fx13:Analog LFE 
 fx15:Digital L 
 fx15:Digital R 
 Analog L:Rear L 
 Analog L:ADC Rec L 
 Analog R:Rear R 
 Analog R:ADC Rec R 
 CD-Spdif L:Front L 
 CD-Spdif L:Rear L 
 CD-Spdif R:Front R 
 CD-Spdif R:Rear R 

In the kmix mixer program I can see two PCM outputs, 
PCM and PCM2. The PCM is only adjusting the Front 
speaker's volume. The PCM2 doesn't do anything... 
Unfortunately I can not compile the emu10k1 driver from 
emu10k1.sf.net, because it doesn't compile under kernel 
2.6. 

I'm asking for help, to make the rear speakers working with 
this sb live card. 

Thanks! 

Daniel 


-- 
LeVA


pgp8a7pVEHegX.pgp
Description: signature


Re: Pick up a shell session after ssh timeout

2004-07-08 Thread LeVA
2004. július 8. 13:54,
Joost De Cock <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED]:
> Hello list,
>
> I'd like to know if it's possible to pick up a shell session that was
> running over a ssh session that timed out.
>
> Here's what I mean:
>
> SSH into the webserver at the 7th floor (I'm on the 4th), start up
> something (say apt-get dist-upgrade), next thing the phone rings, hey
> Angelina what's up, if I'd like to go out for lunch to the place?
> Sure, meet you downstairs. After lunch I return and the SSH session
> timed out.
> When I SSH back into the machine, I can see in the process list that
> the bash session (and the apt-get) is still running.
>
> Is there any way to pick up where I left?

This is not possible (thanks God!)

-- 
LeVA



pgp2Leolv9Oci.pgp
Description: signature


Re: Pick up a shell session after ssh timeout

2004-07-08 Thread LeVA
2004. július 8. 14:03,
Robert Waldner <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED]:
> On Thu, 08 Jul 2004 14:00:15 +0200, LeVA writes:
> >> I'd like to know if it's possible to pick up a shell session that
> >> was running over a ssh session that timed out.
>
> <...>
>
> >> Is there any way to pick up where I left?
> >
> >This is not possible (thanks God!)
>
> Oh, but it is, by using screen(1), for example.
That is not a solution for the original problem. If you've read that 
mail, then you should know that it was about a ping timeoutted session, 
which is irrecoverable... The solution which you are talking about, is 
for *keeping* alive that session while not logged in.

Daniel


-- 
LeVA



pgpL1XbIr6th4.pgp
Description: signature


Re: Pick up a shell session after ssh timeout

2004-07-08 Thread LeVA
2004. július 8. 14:11,
LeVA <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED]:
> 2004. július 8. 14:03,
> Robert Waldner <[EMAIL PROTECTED]>
>
> -> [EMAIL PROTECTED]:
> > On Thu, 08 Jul 2004 14:00:15 +0200, LeVA writes:
> > >> I'd like to know if it's possible to pick up a shell session
> > >> that was running over a ssh session that timed out.
> >
> > <...>
> >
> > >> Is there any way to pick up where I left?
> > >
> > >This is not possible (thanks God!)
> >
> > Oh, but it is, by using screen(1), for example.
>
> That is not a solution for the original problem. If you've read that
> mail, then you should know that it was about a ping timeoutted
> session, which is irrecoverable... The solution which you are talking
> about, is for *keeping* alive that session while not logged in.
 ^^^ not session, shell
>
> Daniel

-- 
LeVA



pgpNm8eq6xXVN.pgp
Description: signature


qt-4-preview - no thread support?

2004-07-12 Thread LeVA
Hi!

Anybody knows how to compile the new qt-4-preview with thread support? 
The configure script doesn't contain the -thread option. Is this only 
because this is not a final release, or will the thread support be 
dropped out from qt-4?

Thanks!

Daniel

-- 
LeVA



pgp45hKySeM1r.pgp
Description: signature


Re: qt-4-preview - no thread support?

2004-07-12 Thread LeVA
2004. július 12. 19:18,
Nicos Gollan <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED]:
> On Mon, 12 Jul 2004 16:50:45 +0200
>
> LeVA <[EMAIL PROTECTED]> wrote:
> > Anybody knows how to compile the new qt-4-preview with thread
> > support?
>
> AFAIK, Qt4 won't be available in an explicit no-threads version
> (except embedded)...
So from now on, the threading is on by default?

Daniel

-- 
LeVA



pgpOHN431xzva.pgp
Description: signature


Re: any last words before I install kernel 2.6?

2004-07-14 Thread LeVA
2004. július 14. 11:07,
John van Spaandonk <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED]:

> So for me it is difficult to try out 2.6 because of these changes.
>
> I guess if I have a good solution for the eth0 eth1 problem I
> will try and move towards 2.6.

Maybe you should switch the cards in the pci slots....

Daniel

-- 
LeVA



pgpr7H97JiIjz.pgp
Description: signature


Re: any last words before I install kernel 2.6?

2004-07-14 Thread LeVA
2004. július 14. 11:39,
John Summerfield <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED]:
> John van Spaandonk wrote:
> >On Tuesday 13 July 2004 01:29, Dan Jacobson wrote:
> >>Any last words before I
> >># apt-get install kernel-image-2.6-k7
> >>on my home (sid) PC?
> >>
> >>Will things break that used to work in 2.4?
> >
> >I still stick with 2.4 for the following reason.
> >
> >I use two ethernet cards:
> >eth0 is connected to the cable modem (it has to be this
> >particular card because of the MAC address)
> >eth1 is my home network
> >2.6 reverses the names eth0 and eth1
> >Apparently the PCI scanning order
> >changed - right, why keep something the same if you can change it?
> > :-)
> >
> >So for me it will not be possible to simply install 2.6
> >next to a 2.4 kernel. Each time I will have to manually
> >reverse the cards in the computer.
> >
> >In addition, booting 2.6 lost me some modules which I had to insert
> >manually before 2.4 would work again. I do not exactly remember, but
> > I think it was a usb module.
> >
> >So for me it is difficult to try out 2.6 because of these changes.
> >
> >I guess if I have a good solution for the eth0 eth1 problem I
> >will try and move towards 2.6.
>
> If your NICs use different drivers, use alias to load them:
> alias eth0 3c59x
> alias eth1 ee100
> For more info:
> man modprobe.conf
BTW anyone knows how to "emulate" the old modutils "post-install" 
command behaviour in modprobe? I need to execute a script after I've 
loaded a module, but the man modprobe only gives me an "install" 
command, which executes the script *before* the module loading.

Thanks!

Daniel


-- 
LeVA



pgpSoQlckJYii.pgp
Description: signature


Re: how to write a script that recursively check files in a directory with md5sum

2004-07-14 Thread LeVA
2004. július 14. 19:09,
j smith <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED]:
> md5sum checks one file a time. i want a script that
> recursively check files in a directory.Thanks!
>
> PS: the script's application: in DOS 6, there is
> antivirus program called "msav" that check if
> executables are changed or infected. such program is
> no longer available is Windows, so i want a script
> that does this job.
There is a script written in python. It's name is cfv. cfv.sf.net
It has a recursive feat.

Daniel

-- 
LeVA



pgp0Gf42DTIrr.pgp
Description: signature


howto create an .iso image from a dvd-r disc

2004-07-22 Thread LeVA
Hi!

I want to backup my dvd disc. Not ripping the vob files from it, but 
make an image file (ie. .iso file) what I could write out later.
Anyone can help what program should I use?

Thanks!

-- 
LeVA



pgpcOv2rYGsoN.pgp
Description: signature


Re: howto create an .iso image from a dvd-r disc

2004-07-22 Thread LeVA
2004. július 22. 13:29,
LeVA <[EMAIL PROTECTED]> 
-> "Debian-User" <[EMAIL PROTECTED]>:
> Hi!
>
> I want to backup my dvd disc. Not ripping the vob files from it, but
> make an image file (ie. .iso file) what I could write out later.
> Anyone can help what program should I use?
>
> Thanks!
okay... it is very simple :) dd if=/dev/dvd of=/mnt/tmp4/stuff.iso


Daniel

-- 
LeVA



pgp7VFmuRhJQX.pgp
Description: signature


Re: XMMS Error

2004-07-31 Thread LeVA
2004. július 31. 14:49,
Tim Raats <[EMAIL PROTECTED]> 
-> [EMAIL PROTECTED]:
> Im having this problem for about 2 days. Since ive dist-upgrade
> debian to Sid XMMS is having problems. When I start it via the menu
> it doesnt show up. But when I start it with a terminal I get the
> follow output:
>
> *libmikmod.so.2: cannot open shared object file: Onbekend bestand of
> map Inconsistency detected by ld.so: ../sysdeps/generic/dl-tls.c: 72:
> _dl_next_tls_modid: Assertion `result <=
> _rtld_local._dl_tls_max_dtv_idx' failed!
> *
>
> What does it mean and how to solve it ?

Try to move the libmikmod.so file from the /usr/lib/xmms/Input path.
Hth!


Daniel

-- 
LeVA



pgpFfqR5BWRrX.pgp
Description: PGP signature


How to use PKCS certificates with kmail

2004-01-03 Thread LeVA
Hi!

I need to use a "PKCS #1 MD5 With RSA Encryption" certificate (this info is
from mozilla, I don't know exactly what cert I have) and sign my messages
with it (this is essential for my work). It signed by TrustCenter, and it
works fine with mozilla. And I have to use mozilla till I can not use this
certificate in kmail. So my question is, how to use this with kmail. I can
export this certificate in mozilla, and it outputs a .p12 file. Is it
possible to load this to kmail?

Thanks for the help!

Daniel

--
LeVA



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


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



want to use a certificate with kmail

2004-01-04 Thread LeVA
Hi!

I need to use a certificate (issued by TrustCenter) and sign my messages with 
it (this is essential for my work). My question is, how to use this with 
kmail. I can export this certificate with mozilla, and it outputs a .p12 
file. Is it possible to load this to kmail?

And do I need some additional "security plugins" for kmail, to be able to use 
this kind of certificate? The certificate signature algorithm is PKCS #1 MD5 
With RSA Encryption.

Thanks for the help!

Daniel


-- 
LeVA


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



Re: want to use a certificate with kmail

2004-01-04 Thread LeVA
2004. január 04. 16:00 dátummal Joseph A. Nagy, Jr. ezt írta:
> LeVA wrote:
> > Hi!
> >
> > I need to use a certificate (issued by TrustCenter) and sign my messages
> > with it (this is essential for my work). My question is, how to use this
> > with kmail. I can export this certificate with mozilla, and it outputs a
> > .p12 file. Is it possible to load this to kmail?
> >
> > And do I need some additional "security plugins" for kmail, to be able to
> > use this kind of certificate? The certificate signature algorithm is PKCS
> > #1 MD5 With RSA Encryption.
> >
> > Thanks for the help!
> >
> > Daniel
>
> Yes, you can import them to KMail.
>

And I you don't mind my asking, how can I import it, and where can I set it up 
as my default signing method? Do I have to install some additional security 
plugins into kmail, cause now in the KMail setup/Security/Security plugins 
page there is nothing. That list is empty.

Thanks!

Daniel

-- 
LeVA


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



GnuPG can not read some pgp signatures

2004-01-06 Thread LeVA
Hello!

I have installed KMail a few days ago, and with it I've installed the 
GnuPG program too. But some of the signatures can not be read by gpg.
There are some messages, which has a signature.asc attached, but KMail 
writes this in the messages window:
"The message is signed, but the validity of the signature can't be 
verified.
Reason: No appropriate crypto plug-in was found."

And when I Save the attached signature, and run cat signature.asc | gpg 
--import, I get this messages:
gpg: no valid OpenPGP data found.
gpg: Total number processed: 0

But, sometimes I get messages, which has also a signature file attached, 
and it can be verified by KMail, and the signatures can be imported 
with gpg. For example these keys:

http://www.debian.org/security/keys.txt

I can import those keys, and KMail can verify these keys, when I'm 
getting emails from those guys.

What could be the problem with the other signature files?

Thanks for the help!


Daniel

-- 
LeVA


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



mp3 file cutter

2004-01-06 Thread LeVA
Hi!

I'm looking for a program which can cut mp3 files, according to a given 
cue file. I've tried CueSheetMaster (@ sf.net), but it is not working. 
It does nothing when I click on the cut mp3 menu.

Anyone can recommend a good program?

Thanks!

Daniel

-- 
LeVA


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



Re: mp3 file cutter

2004-01-07 Thread LeVA
2004. január 07. 00:26 dátummal Hugo Vanwoerkom ezt írta:
> LeVA wrote:
> > Hi!
> >
> > I'm looking for a program which can cut mp3 files, according to a
> > given cue file. I've tried CueSheetMaster (@ sf.net), but it is not
> > working. It does nothing when I click on the cut mp3 menu.
> >
> > Anyone can recommend a good program?
> >
> > Thanks!
> >
> > Daniel
>
> http://www.mp3dev.org/mp3/
>
> or
>
> deb http://marillat.free.fr/ unstable main
>
> in your sources list.
>
I don't understand... What could I do with. It can not cut mp3 files 
according to cue files.

> Hugo.

-- 
LeVA


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



Re: mp3 file cutter

2004-01-07 Thread LeVA
2004. január 07. 15:08 dátummal Hugo Vanwoerkom ezt írta:
> LeVA wrote:
> > 2004. január 07. 00:26 dátummal Hugo Vanwoerkom ezt írta:
> >>LeVA wrote:
> >>
> >>http://www.mp3dev.org/mp3/
> >>
> >>or
> >>
> >>deb http://marillat.free.fr/ unstable main
> >>
> >>in your sources list.
> >
> > I don't understand... What could I do with. It can not cut mp3
> > files according to cue files.
> >
> >>Hugo.
>
> So the mp3 cutter as you call it, or in any case one of them, is
> called Lame.
> You can get Lame in at least 2 ways: downloading the source from its
> homepage, which I indicated:
>
> http://www.mp3dev.org/mp3/
>
> or using a backport, which I also indicated: you put:
>
> deb http://marillat.free.fr/ unstable main
>
> into your /etc/sources.list
>
> But you must adjust that entry (i.e. "unstable") depending on the
> Debian version you have installed and you did not say.
>
> If you use the second way it is a matter of making the entry, doing
> an ap-get update and apt-get install lame.
>
> If you use the first way you download the tarball and do ./configure,
> make and make install from the dir. where you installed it. Which
> gives you a Lame that Debian knows nothing about.
>
> Hugo.

Uh.. I have lame. I don't need Lame packages, because I've compiled it 
from sources. I just said, that this CueSheetMaster program doesn't 
work. This is not because it can not find lame, it's because.. I don't 
know why.. Anyway, I just need another tool to cut mp3 files. It 
doesn't matter what program it needs, I will get it, just want to get a 
working cutter program.

-- 
LeVA


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



Postfix and virtual users

2004-01-09 Thread LeVA
Hello!

I've recently set up postfix (postfix-2.0.16, compiled from source), and 
it works great, for local delivery. But I want to manage a number of 
virtual hosts, and users only for email access. I have read the 
postfix-2.0.16/README_FILES/VIRTUAL_README file. What I read was very 
simple; just a few lines, and file creating, and it will work ( I 
thought). I made exactly that, what I read in that readme file.
So, I've added to main.cf:

virtual_transport = virtual
virtual_mailbox_base = /var/mail/virtusers
virtual_mailbox_maps = hash:/etc/postfix/virtusers/mboxes
virtual_mailbox_domains = $virtual_mailbox_maps
virtual_minimum_uid = 5000
virtual_uid_maps = hash:/etc/postfix/virtusers/uid
virtual_gid_maps = hash:/etc/postfix/virtusers/gid

Every files have good/true content, and I've generated the db files from 
the plain text files. Now I only have one virtual account, called 
'[EMAIL PROTECTED]'.

/etc/postfix/virtusers/mboxes:
[EMAIL PROTECTED] virt

/etc/postfix/virtusers/uid:
[EMAIL PROTECTED] 5001

/etc/postfix/virtusers/uid:
[EMAIL PROTECTED] 5001

drwxrwxr-x2 postfix  postfix  4096 /var/mail/virtusers
-rw-rw1 5001 50010 /var/mail/virtusers/virt

I get this error in the mail.log file:

postfix/smtpd[27864]: 7C02734063: reject: RCPT from host[ip]: 450 
<[EMAIL PROTECTED]>: User unknown in local recipient table;

It seems that postfix knows nothing about my virtual domains (users).
I tried to tell postfix, to fall back to virtual delivery if local 
fails:
in main.cf:

local_transport = local

fallback_transport = virtual

But the error is the same.

Anyone did this before, and got the same error? Any ideas will be 
appreciated.

Thanks!

Daniel



-- 
LeVA


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



Re: Postfix and virtual users

2004-01-09 Thread LeVA
2004. január 09. 23:36 dátummal LeVA ezt írta:
Sorry, I've put the wrong host names to the mail. Obviously it isn't 
ecentrum.hu, but az.isten.hu. So the correct email is:

Hello!

I've recently set up postfix (postfix-2.0.16, compiled from source),
and it works great, for local delivery. But I want to manage a number
of virtual hosts, and users only for email access. I have read the
postfix-2.0.16/README_FILES/VIRTUAL_README file. What I read was very
simple; just a few lines, and file creating, and it will work ( I
thought). I made exactly that, what I read in that readme file. So,
I've added to main.cf:

virtual_transport = virtual
virtual_mailbox_base = /var/mail/virtusers
virtual_mailbox_maps = hash:/etc/postfix/virtusers/mboxes
virtual_mailbox_domains = $virtual_mailbox_maps
virtual_minimum_uid = 5000
virtual_uid_maps = hash:/etc/postfix/virtusers/uid
virtual_gid_maps = hash:/etc/postfix/virtusers/gid

Every files have good/true content, and I've generated the db files
from the plain text files. Now I only have one virtual account,
called '[EMAIL PROTECTED]'.

/etc/postfix/virtusers/mboxes:
[EMAIL PROTECTED] virt

/etc/postfix/virtusers/uid:
[EMAIL PROTECTED] 5001

/etc/postfix/virtusers/uid:
[EMAIL PROTECTED] 5001

drwxrwxr-x    2 postfix  postfix      4096 /var/mail/virtusers
-rw-rw    1 5001     5001            0 /var/mail/virtusers/virt

I get this error in the mail.log file:

postfix/smtpd[27864]: 7C02734063: reject: RCPT from host[ip]: 450
<[EMAIL PROTECTED]>: User unknown in local recipient table;

It seems that postfix knows nothing about my virtual domains (users).
I tried to tell postfix, to fall back to virtual delivery if local
fails:
in main.cf:

local_transport = local

fallback_transport = virtual

But the error is the same.

Anyone did this before, and got the same error? Any ideas will be
appreciated.

Thanks!

Daniel

-- 
LeVA


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



ati radeon 9200 - slow 3d acceleration

2004-01-17 Thread LeVA
Hi!

I have an ati radeon 9200 card, and want to use it's 3d acceleration.

Info:

 o XFree86 Version 4.3.99.902 (4.4.0 RC 2)
   - radeon drm as module (from the Xdrm.tgz package, source)
 o Driver from the ati's hp 3.7.0
   - fglrx (xfree driver, and kernel module by that name)
   - ati's libGL.so
 o linux-2.4.24 kernel
   - agpgart as module
   - radeon drm as module

I have to load the fglrx kernel module first, and after that, I can load 
the agpgart, and radeon drm modules.
I've also downloaded that SDLgears-1.0.2.tar.gz 
(http://www.libsdl.org/opengl/SDLgears-1.0.2.tar.gz) and compiled it, 
and I can see those gears spinning.

My problem is (at least I think it is a problem), that when I start X, 
and start that glxgears program, and during this I type 'lsmod' to a 
console, I see that no process is using the loaded modules (fglrx, 
agpgart etc...), although I'm using the fglrx driver in my XF86Config 
file.
Programs, which needs 3d acceleration (tuxracer, unreal tournament) are 
very slow, but that glxgears program tells me, that it runs at 240fps.

I'm loading the glx, and the GLcore modules, but I can not load the dri 
module too. It conflicts with the glx mod, so when I select to load 
both of them, I get this error (when starting x):

Fatal server error:
__glXExtensionInit: AddExtensions failed

I must choose, wether to load the dri or the glx module. But I think I 
need both of them, cause when I start glxgears, it says:
Xlib:  extension "XFree86-DRI" missing on display ":0.0".

And when starting unrealtournament, I get this error message:

X Error of failed request:  XF86DGANoDirectVideoMode
  Major opcode of failed request:  136 (XFree86-DGA)
  Minor opcode of failed request:  2 (XF86DGADirectVideo)
  Serial number of failed request:  114
  Current serial number in output stream:  115
Signal: SIGSEGV [segmentation fault]
Aborting.
XIO:  fatal IO error 0 (Success) on X server ":0.0"
      after 125 requests (123 known processed) with 5 events remaining.

All of the above errors are with the 'fglrx' xfree driver, and glx (no 
dri then) and glcore loaded .

I tried to use xfree's 'radeon' driver, with xfree's libGL.so, and fglrx 
kernel module unloaded. The speed of the glxgears was still high 
(~120fps), and tuxracer was still very slow, but I could at least start 
unreal tournament. But that was pretty slow too.
I think that my system doesn't use the 3d acceleration of my radeon card 
at all. 

Which xfree driver do you recommend, the 'fglrx' or the buil-tin 
'radeon' driver?
And what modules do I need to load (glx,dri,glcore?), if I want to play 
3d games smoothly?
Anybody have the same problem with an ati card?

Thanks for the help!

Daniel




-- 
LeVA


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



i810_audio module question

2004-01-17 Thread LeVA
Hi!

I'm using this audio driver with 2.4.24 OSS support. I can see this when 
I load this module:

i810_audio: Primary codec has ID 0
i810_audio: Audio Controller supports 6 channels.
i810_audio: Defaulting to base 2 channel mode.
i810_audio: Resetting connection 0
i810_audio: Connection 0 with codec id 0
ac97_codec: AC97 Audio codec, id: ALG32 (ALC650)
i810_audio: AC'97 codec 0 supports AMAP, total channels = 6

It says that the device is supporting 6 channels, but only 2 of them are 
used. Anybody know how could I use all of the 6 channels with this 
driver? Are any options which can be passed to this module?


Thanks!

Daniel



-- 
LeVA


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



Re: ati radeon 9200 - slow 3d acceleration

2004-01-17 Thread LeVA
2004. január 17. 22:49 dátummal Roberto Sanchez ezt írta:
> LeVA wrote:
> > Hi!
> >
> > I have an ati radeon 9200 card, and want to use it's 3d
> > acceleration.
> >
> > Info:
> >
> >  o XFree86 Version 4.3.99.902 (4.4.0 RC 2)
> >- radeon drm as module (from the Xdrm.tgz package, source)
>
> XFree86 4.3 from experimental will do just fine, unless you would
> rather use the binary fglrx module, which is available for
> X 4.1, 4.2, and 4.3.  Thus you can run Woody, Sarge, or Sid, and
> it will work.
>
> >  o Driver from the ati's hp 3.7.0
> >- fglrx (xfree driver, and kernel module by that name)
> >- ati's libGL.so
>
> Good, that is the latest release.
>
> >  o linux-2.4.24 kernel
> >- agpgart as module
> >- radeon drm as module
>
> You should really compile AGPGART into the kernel, but it is
> ultimately a matter of preference.
>
> > I have to load the fglrx kernel module first, and after that, I can
> > load the agpgart, and radeon drm modules.
>
> This is WRONG.  You first load the agpgart module, and then the
> radeon OR fglrx, but not both.  This should be accomlished by adding
> the appropriate lines to /etc/modules.
>
Done.

# lsmod
Module  Size  Used byTainted: P
fglrx 167336   0  (unused)
agpgart16800   0  (unused)
...
..
.

I've restarted X, but as you can see, they are still unused. What could 
be the problem? Even if I start the glxgears, they are stay unused. Is 
this because I didn't load the DRI module in XF86Config file?

> > I've also downloaded that SDLgears-1.0.2.tar.gz
> > (http://www.libsdl.org/opengl/SDLgears-1.0.2.tar.gz) and compiled
> > it, and I can see those gears spinning.
>
> What is the framerate you are getting?

~200.
with fullscreen ~50.

>
> > My problem is (at least I think it is a problem), that when I start
> > X, and start that glxgears program, and during this I type 'lsmod'
> > to a console, I see that no process is using the loaded modules
> > (fglrx, agpgart etc...), although I'm using the fglrx driver in my
> > XF86Config file.
>
> That in because you must load agpgart first (see my comment above).
>
> > Programs, which needs 3d acceleration (tuxracer, unreal tournament)
> > are very slow, but that glxgears program tells me, that it runs at
> > 240fps.
>
> What is the output of `glxinfo |grep render'?  You almost certainly
> do not have direct rendering enabled.  Also, what is in your
> /var/log/XFree86.log and /etg/X11/XF86-Config4?

This is true, I don't have  the direct rendering enabled, because I can 
not load it with xfree. I've explained in my message, that I can not use 
both GLX (which I need for the glxgear program to work) and the DRI 
module. I must choose from those. If I load both the GLX and the DRI 
modules in xfree, and using 'fglrx' xfree driver, then the X doesn't 
start, and I get this error message in the XFree86.0.log:

Fatal server error:
__glXExtensionInit: AddExtensions failed

If I enable both the GLX and the DRI (again), but using the 'radeon' 
xfree driver, X simply hangs my system and I have reset.

If I understand you clearly, I need the GLX and the DRI module too, for 
a working 3d acceleration?

My kernel config:

 /dev/agpgart (AGP Support)
[*]   Intel 440LX/BX/GX and I815/I820/I830M/I830MP/I840/I845/I850/I860 
support
[ ]   ATI IGP chipset support
Direct Rendering Manager (XFree86 DRI support)  --->
[*] Direct Rendering Manager (XFree86 DRI support)
[ ]   Build drivers for old (XFree 4.0) DRM
--- DRM 4.1 drivers
   ATI Radeon

In my XF86Config:

Load"glx"
#   Load"dri"
Load"GLcore"
Load"extmod"
Load"v4l"
Load"pex5"
Load"record"
#   Load"xie"
#   Load"xtrap"
Load"speedo"
Load"type1"
##  Load"bitmap"
Load"dbe"
#   Load"ddc"
Load"freetype"
Load"int10"
#   Load"vbe"



>
> > I'm loading the glx, and the GLcore modules, but I can not load the
> > dri module too. It conflicts with the glx mod, so when I select to
> > load both of them, I get this error (when starting x):
> >
> > Fatal server error:
> > __glXExtensionInit: AddExtensions failed
> >
> > I must ch

Re: ati radeon 9200 - slow 3d acceleration

2004-01-17 Thread LeVA
2004. január 17. 22:41 dátummal Bijan Soleymani ezt írta:
> On Sat, Jan 17, 2004 at 10:11:51PM +0100, LeVA wrote:
> > Hi!
> >
> > I have an ati radeon 9200 card, and want to use it's 3d
> > acceleration.
> >
> > Programs, which needs 3d acceleration (tuxracer, unreal tournament)
> > are very slow, but that glxgears program tells me, that it runs at
> > 240fps.
>
> 240 fps on glxgears is slow, I have a radeon 7500 and get over 1000
> fps at the original size and 170 when maximized.
>
> > Which xfree driver do you recommend, the 'fglrx' or the buil-tin
> > 'radeon' driver?
> > And what modules do I need to load (glx,dri,glcore?), if I want to
> > play 3d games smoothly?
> > Anybody have the same problem with an ati card?
>
> With my radeon 7500 I use the built in radeon driver.
>
> Here's what I have in my XF86Config (these are the relevant lines):
> Section "Module"
> Load"GLcore"
> Load"bitmap"
> Load"dbe"
> Load"ddc"
> Load"dri"
> Load"extmod"
> Load"freetype"
> Load"glx"
> Load"int10"
> Load"record"
> Load"speedo"
> Load"type1"
> Load"vbe"
> EndSection
>
> Section "Device"
> Identifier  "Radeon"
> Driver  "ati"
> EndSection
>
> Section "DRI"
> Mode0666
> EndSection
>
> Bijan

OMG! Thank you! This works! I can not beleive it. I'm working on this 
since ~12:00, and now, after more than twelve hours later, you just 
paste your config lines, and it works. I can not sufficiently thank 
you, but Thanks!

Daniel


-- 
LeVA


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



Re: Hotplug USB

2004-01-18 Thread LeVA
2004. január 18. 10:57 dátummal Andrew Neillans ezt írta:
> Hi all,
>
> I am trying to get hotplugging of usb going, so that when I connect a
> usb-storage device, it is automatically mounted, and an icon dropped
> on my desktop -- when the device is removed, it gets cleared up.
>
> So far I am just trying to get it to behave using the command line,
> but I have noticed something odd in the logs.
>
> Jan 18 09:53:44 debian-laptop kernel: hub 2-0:1.0: new USB device on
> port 1, assigned address 2
> Jan 18 09:53:44 debian-laptop kernel: SCSI subsystem initialized
> Jan 18 09:53:44 debian-laptop kernel: Initializing USB Mass Storage
> driver... Jan 18 09:53:45 debian-laptop kernel: scsi0 : SCSI
> emulation for USB Mass Storage devices
> Jan 18 09:53:47 debian-laptop kernel:   Vendor: HITACHI_  Model:
> DK23CA-30 Rev:  0 0
> Jan 18 09:53:47 debian-laptop kernel:   Type:   Direct-Access
> ANSI SCSI revision: 02
> Jan 18 09:53:47 debian-laptop kernel: drivers/usb/core/usb.c:
> registered new driver usb-storage
> Jan 18 09:53:47 debian-laptop kernel: USB Mass Storage support
> registered. Jan 18 09:53:47 debian-laptop scsi.agent[987]: bogus
> sysfs DEVPATH=/devices/
> pci:00/:00:0b.0/usb2/2-1/2-1:1.0/host0/0:0:0:0
>
> Why is scsi.agent from hotplug running? Surely it should be usb.agent
> running? I have a script setup for usb, but not scsi ...
>
> If I fdisk -l /dev/sda I get the correct partition table list..
>
> So, is that scsi.agent ok to be ignored?

You access your pen-drive thru scsi emulation as you can see in that log 
("SCSI emulation for USB Mass Storage devices"). That is why you are 
mounting the /dev/sda* devices. You need sd_mod modules for this. And 
this module is SCSI disk support in the kernel. You can safely ignore 
that line.

Daniel

>
> Andy

-- 
LeVA


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



xawtv with radeon9200 failure

2004-01-24 Thread LeVA
Hi!

I have a radeon9200, and I'm using it with XFree-4.3.0 + fglrx driver. I 
have a tvtuner card (avermedia tvphone98 and pctv pro). I'm using 
xawtv.

I have DRI and overlay enabled in my XF86Config:

Modules:
Load"dri"

fglrx driver:
Option "no_dri" "no"
(...)
Option "VideoOverlay"   "on"

When I start xawtv with this config, I get this message to my stderr:

This is xawtv-3.72, running on Linux/i686 (2.4.24)
ioctl: VIDIOC­SYNC(1): Interrupted system call

And my monitor turns off (!). I have to switch to a console (blindly), 
and ctrl+alt+del.

When I turn off dri support at least my monitor doesn't turn of, but I 
can not watch the tv in overlay mode. I can only see a black box. I 
have to change to grabdisplay, but that is veeery slow.

I need overlay support and DRI too, simultaneously. DRI for 3D games, 
and overlay for the xawtv. Is this possible, without having my monitor 
turned off always?
Anybody have any suggestion? I really need it.

Thanks!

Daniel



-- 
LeVA


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



Re: Correct Java for the Firebird package?

2003-06-25 Thread LeVA
Hi!

I am using the Blackdown java client, but I tried the Sun's java client 
too with moz firebird. (http://www.blackdown.org/java-linux/mirrors.html)
You must link the javaplugin_oji.so file to ~/.mozilla/plugins dir 
instead of the ~/.phoenix/plugins dir. If this is not working, try to 
link that javaplugin_oji.so file to the MozillaFirebird install dir, 
where is a plugins dir too. It has a file called libnullplugin.so.
I am using this last version now.
If you start the firebird browser type this in the location bar:

about:plugins

there you can see which plugins you have installed.

Hope it helps!

Todd Pytel wrote:
I grabbed the nifty xft-enabled Moz-Firebird package for testing last
week, but can't seem to get Java working on it. I was previously using
Sun's 1.4.1_02 package along with the compatibility deb for the old C++
library - that worked fine on Debian's Mozilla and on mozilla.org's
Phoenix/Firebird. But after trying various alternatives, the Debian
Firebird package doesn't pick up on any of the plugins. Right now I've
got Sun 1.4.1_03, which works in Mozilla 1.0.0, but not in Firebird.
There are no error messages if I start Firebird from a terminal, and
from what I can understand of the ldd output, both Mozilla-Firebird-bin
and mozilla-bin are compiled against the same libraries. What am I
missing here?
Thanks,
Todd



--
LeVA


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



another traffic shaper

2003-06-26 Thread LeVA
Hi!

I need a program to control my download/upload speed, independently from 
what program I am using to download/upload. Is there a software for 
this, or I have to use the kernel's traffic shaper?

Thanks!

--
LeVA


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



-w flags on the cd

2003-06-29 Thread LeVA
Hi!

When I mount a cdrom, the files on that have 444 (r--r--r--) 
permissions, and the dirs have 555 (r-xr-xr-x). Ok, but when I copy 
files from the cd, the files on the local drive will have the same 
permissions, and I can not write them, until I chmod them all. Is it 
possible, that when I copy files from a cd to a local drive, the files 
get at least 644 permissions, and the dirs 755?

Do I have to edit the fstab, because there is an option to mount to do 
this, or this the normal working of a mounted cd?

Thanks!

--
LeVA


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



crontab bug?

2003-07-02 Thread LeVA
Hi!

When I edit my crontab (crontab -e) and then save it, it says normally that
Processing '/etc/joe/editorrc'...done
File /tmp/crontab.QMxjUM saved.

But when the time has come, nothing happened. It did not start the 
command. I have to type '/etc/init.d/cron restart' to make the updated 
crontab work. It isn't normal I think, because as a normal user I do not 
have the privilages to do this. But as a normal user I can not start a 
command with crontab, because it needs a restart.
Anybody has an idea why this strange thing happens? Did I do something 
wrong?

Thanks!

Daniel

--
LeVA


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



test program

2003-07-06 Thread LeVA
Hi!

I need a test program (under console or X) which can test memory, 
mainboard, cpu, disks, graphics card, network card, sound card etc... 
Anybody could suggest a nice, and useable one?

Thanks!

Daniel

--
LeVA


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



  1   2   3   >