Re: Вітальне слово.

2022-12-11 Thread Dmitriy Kulakovskiy
Привіт всім!
Звати мене Дмитро я працюю SRE інженером. Проект Debian надзвичайного поважаю. 
Використовую в домашній лабі для K8S, також використовую продукти на базі 
Debian, Proxmox ,VyOS.
Завжди радий допомогти улюбленому проекту .

Best regards,
Dmytro Kulikovskiy

 Исходное сообщение 
11 дек. 2022 г., 20:48, Andriy Veres написал:

> Привіт Юра.
> По роботі займаюсь мережевими драйверами але в апстрім не комічу бо 
> пропрієтарні рішення.
> Якщо Ви вже доросли до Gentoo, то я тоді зовсім недосвічений )))
>
> On Sun, Dec 11, 2022, at 8:42 PM, Yuri Kanivetsky wrote:
>
>> Доброго дня.
>>
>> З 2019 року коли я приєднався, спаму було більше ніж корисних
>> повідомлень. А спаму було небагато. Принаймні таке формулювання мені
>> спало на думку.
>>
>> Глянув свій перший лист, і там:
>>
>>> То лист undead чи half-life? :)
 Тепер нас тут двоє.
>>
>> https://lists.debian.org/debian-user-ukrainian/2019/04/msg3.html
>>
>> Власне я приєднався тому що цікавило те моє питання. А з Debian маю
>> справу переважно на серверах. Локально - Arch Linux. Але вже давно,
>> тому хотів би щось інше спробувати. Основні варіанти що розглядаю -
>> FreeBSD або Gentoo. Ну і Linux From Scratch :) Але поки що на це немає
>> часу.

Apache's mod_userdir resets global per-user permissions, when redefined in VirtualHost

2013-02-16 Thread Dmitriy Matrosov
Hi.

I notice, that if i define either path or per-user permission
(enabled/disabled) in VirtualHost directive, than all per-user permissions
from main server config are reset to global permission (all-enabled or
all-disabled). Particularly, this means, that if in
mods-enabled/userdir.conf i have following

..
UserDit /home/Public/*/www
UserDir enabled
UserDir disabled root

and then redefine path in VirtualHost

VirtualHost *:80
..
UserDit /home/Public/*/www/wiki
VirtualHost/

or enable some additional user

VirtualHost *:80
..
UserDit enabled user1
VirtualHost/

this _enables_ mod_userdir for root. Thus, in first case
/home/Public/root/www/wiki and in the second case /home/Public/root/www will
be served to the user by Apache.

Is this correct behavior or i should file a bug?

(i use debian wheezy)

--
Dmitriy Matrosov


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130216205824.4b0fa76d@shilvana.local



Re: Removing deb-multimedia pkgs w/o removing everything

2012-09-17 Thread Dmitriy Matrosov

On 09/16/12 22:32, Sharon Kimble wrote:
 On 15 September 2012 19:45, Dmitriy Matrosov sgf@gmail.com wrote:
 On 09/15/12 21:38, Andrei POPESCU wrote:

 On Sb, 15 sep 12, 12:53:46, Ed Jabbour wrote:

 I'd like to remove packages gotten from deb-multimedia and replace
 some from the Debian repos.  However, removing them will also remove a
 bunch  of libs and kde progs. E.g., apt-get remove libavcodec53
 yields:

 0 upgraded, 1 newly installed, 190 to remove and 1 not upgraded.

 I'm not up to reinstalling 190 packages.  apt-get install that pkg
 just tells me that libavcodec53 is already the newest version.  Is
 there any way around this?  Is it possible to easily replace the deb-
 multimedia pkgs with the Debian ones?


 It's possible. I've done it with aptitude by looking up each package
 from the list generated by the command below and selecting the Debian
 version instead of the deb-multimedia version.

  aptitude search ~S~i~Omultimedia

 With apt-get you would have to build up a big command line like

  apt-get install package1/version1 package2/versions ...

 because there are lots of interdependencies which would get in the way.

 You can find packages from deb-multimedia without aptitude as well. 
Like so


 $ dpkg-query -Wf '${Package}\n' \
  | xargs -d'\n' sh -euf -c '
 apt-cache showpkg $@ \
 | sed -ne
 s/^Package: //p;
 /^Versions:/,/^Reverse Depends:/{
 
\_^[^[:space:]].*(/var/lib/dpkg/status)_p;

 }; \
 | sed -neN; /_deb.multimedia_/P;
 ' sh

 I tried this on a wheezy installation, and it failed, so I tried
 sending it to a 'dpkg.txt' and I got a null output on it although I
 know that I do have some files from that repository. I'd like to know
 how to get it working on wheezy please?

Ok. First, i'll explain what it does, and may be this will help you to 
fix it,

because this command relies on names and output formatting and is not very
reliable, to be honest.  I'll get list of all packages, like

$ dpkg-query -Wf '${Package}\n' | head -n3
ace-gperf
acl
acpi

then i execute short script. Though, script is executed for as many 
arguments
as possible, this is just for performance reasons. I use `apt-cache 
showpkg`,
because it displays version with path to corresponding repository 
(repository

'Packages' file in fact, cached in /var/lib/apt/lists) and, if package is
installed (see note [1]), path to dpkg status file (/var/lib/dpkg/status).
Let's see how it looks:

# apt-cache showpkg hello
Package: hello
Versions:
2.8-2 
(/var/lib/apt/lists/shilvana.local:3142_debian_dists_wheezy_main_binary-i386_Packages) 
(/var/lib/apt/lists/shilvana.local:3142_debian_dists_sid_main_binary-i386_Packages)

 Description Language: en
 File: 
/var/lib/apt/lists/shilvana.local:3142_debian_dists_wheezy_main_i18n_Translation-en

  MD5: b7df6fe7ffb325083a3a60819a7df548
 Description Language:
 File: 
/var/lib/apt/lists/shilvana.local:3142_debian_dists_wheezy_main_binary-i386_Packages

  MD5: b7df6fe7ffb325083a3a60819a7df548

2.6-1 
(/var/lib/apt/lists/shilvana.local:3142_debian_dists_squeeze_main_binary-i386_Packages) 
(/var/lib/dpkg/status)

 Description Language: en
 File: 
/var/lib/apt/lists/shilvana.local:3142_debian_dists_wheezy_main_i18n_Translation-en

  MD5: b7df6fe7ffb325083a3a60819a7df548
 Description Language:
 File: 
/var/lib/apt/lists/shilvana.local:3142_debian_dists_squeeze_main_binary-i386_Packages

  MD5: b7df6fe7ffb325083a3a60819a7df548


Reverse Depends:
..

the interesting lines are these two:

2.8-2 
(/var/lib/apt/lists/shilvana.local:3142_debian_dists_wheezy_main_binary-i386_Packages) 
(/var/lib/apt/lists/shilvana.local:3142_debian_dists_sid_main_binary-i386_Packages)
2.6-1 
(/var/lib/apt/lists/shilvana.local:3142_debian_dists_squeeze_main_binary-i386_Packages) 
(/var/lib/dpkg/status)


as you may see, they have the form:

^version (path) (path)

Now to choose only installed packages, i should check, that one of package's
version lines contain (/var/lib/dpkg/status). And to determine from what
repository package came from, i should check other path entries. Let's 
try it

with sed:

apt-cache showpkg hello \
| sed -ne
s/^Package: //p;
/^Versions:/,/^Reverse Depends:/{
\_^[^[:space:]].*(/var/lib/dpkg/status)_p;
};


I print package name, then for range starting at /^Versions:/ and ending at
/^Reverse Depends:/ i choose lines, which start not with [:space:] and 
contain

(/var/lib/dpkg/status). Result will look like:

hello
2.6-1 
(/var/lib/apt/lists/shilvana.local

Re: Removing deb-multimedia pkgs w/o removing everything

2012-09-17 Thread Dmitriy Matrosov

On 09/17/12 13:05, Dmitriy Matrosov wrote:


[1]: Though, note, that (/var/lib/dpkg/status) file will be listed in
`apt-cache showpkg` output even for uninstalled packages, which config 
files

still present. E.g.  for status, like:

Status: deinstall ok config-files

Just want to add: if you need to exclude these packages (like ones with 
status
'deinstall ok config-files') you may do this by filtering dpkg-query 
output, like so


$ dpkg-query -Wf '${Package}\t${Status}\n' | sed -ne '/install ok 
installed/s/\t.*//p'



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/50570dd7.3060...@gmail.com



Re: Grub2 with multiple Debians

2012-09-16 Thread Dmitriy Matrosov

On 09/16/12 00:45, Andrei POPESCU wrote:

On Sb, 15 sep 12, 19:03:28, Hendrik Boom wrote:

On Sat, 15 Sep 2012 13:39:29 +0300, Andrei POPESCU wrote:


I've solved this by having one grub in the MBR and installing each grub
in the corresponding first sector of the partition. Not recommended by
grub, but it works.


So each system-specific grub would. presumably, boot just that system.
And what would the MBR grub do?  Chainload a boot-time choice the others?


Yes.
So, the MBR grub must have separate config, which is maintained (i 
guess) by hand,
and have menuentries, which chainload other grubs. In other words, this 
MBR grub's
config hardcodes pathes to system-specific grubs. So, if something 
change in the
partition layout (e.g. you install yet another linux distribution), you 
need to
manually update MBR grub's config. Am i right? If so, what is difference 
with
loading another config (`configfile`) instead of chainloading 
(`chainloader`)
another grub? Well, i do not mean the difference, that in your case each 
grub
will have all modules in its own grubdir, whereas in my case there is 
only one
grubdir for all OSes, but many configs. I mean what is the difference in 
using

this scheme? Has it some considerable advantages? E.g. is it much simpler?
Or what?

But, anyway, answering to the above question has sense only, if it is 
possible to
install such scheme, but i can't do it. dpkg-reconfigure either does not 
ask where
to install, or grub-install refuses to do so. I don't know how 
dpkg-reconfigure works
(and don't want to know), but if i use grub-install from cmd it refuses 
to install into
partition as well. I think, this is because grub have already been 
installed into mbr.

And this is expected behavior, though, as noted in [1]:

At least on BIOS systems, if you tell grub-install to install GRUB to a
partition but GRUB has already been installed in the master boot record,
then the GRUB installation in the partition will be ignored.

May be i miss some option, but to be honest i do neither try hard to 
figure out why it
refuses, nor i try to look into sources.  Well, probably just because 
scheme with different

configs works fine for me.


[1]: 
http://www.gnu.org/software/grub/manual/html_node/GRUB-only-offers-a-rescue-shell.html#GRUB-only-offers-a-rescue-shell




Re: Grub2 with multiple Debians

2012-09-15 Thread Dmitriy Matrosov

On 09/15/12 00:42, Hendrik Boom wrote:

On Fri, 14 Sep 2012 23:25:03 +0300, Andrei POPESCU wrote:


On Vi, 14 sep 12, 17:12:38, Hendrik Boom wrote:


Of course, after I've made my copy (with slight changes to /etc/fstab)
I have two nearly identical sets of partitions, so it may be tricky to
tell them apart.  Is grub2 clever enough to figure it all out anyway?
And what data does it use to this end? (so I can make sure it's right!)


UUIDs? What failure mode(s) do you have in mind, because I can't think
of any.


It probably is os-prober that I mean.  The misconfiguration I have in
mind is matching one system's /boot with another systems's /.  I've had
it happen on a laptop sometime ago. and it sure messed up my upgrades.  I
have no idea how it happened, but it has made me paranoid.

-- hendrik





Hi.

Useless entries in grub.cfg (with non-matched kernel and root, e.g. 
kernel from stable and root from testing) or probably even no correct 
one - is normal for 30_os-prober and 10_linux scripts. I don't think, 
that there is a simply way to fix them.


Though, here is quote from [1] about making grub2 able to boot two OSes 
without useless entries:


__QUOTE__

I'll use following terms:
- grubdir is directory, where all grub modules and other stuff have
  installed by grub-install. It is usually /boot/grub, but may be set to
  'DIR/grub' using '--boot-directory DIR' option of grub-install.

Here suggested two schemes for booting several Linux systems with grub2. They
are designed to satisfy following requirments:
- update-grub should work in all Linux systems and does not break
  anything.
- No incorrect and useless menuentries, which often generated by
  /etc/grub.d/30_os-prober script.
- New linux system should not ruin boot, if update-grub will accidently
  run on it with default config.
- OS kernel and initrd should be stored on corresponding OS root
  partition. This is OS-dependent data and i don't want to store it in
  shared location (like shared boot partition). Also, if OS will be moved
  to some other computer, kernel and initrd will still be there.

Generally, there is two approaches to this problem:
- One main config (grub.cfg), which have created and updated by hand (or
  some other method, but not by update-grub), and many OS-specific
  configs, which have generated and updated by update-grub from
  corresponding OS.  Main config should find and load OS-specific ones.
- One merged config. Merge should occur during generation or update by
  update-grub from any OS.

Because each OS may run update-grub, second approach requires each OS to have
specific merge script in the /etc/grub.d, and if it is not there (for newly
installed OS), update-grub will overwrite grub.cfg making all other systems
unbootable. Hence, i'm not considering second approach further, and choosing
first one.

Main grub config should be stored on the shared boot partition, but
OS-specific ones may be stored on either shared boot partititon as well or on
OS root partition. I can't definitely say, that OS-specific grub config
belongs to OS or to grub. On the one hand, OS-specific config is generated
using OS-specific scripts from /etc/grub.d, and, hence, belongs to OS. But, on
the other hand, grub-mkconfig and scripts from /etc/grub.d may read files from
grubdir and make some choices depending on their content (and they actually
will), hence, OS-specific config depends on particular grub installation and
belongs to grub. In other words, OS-specific grub.cfg depends on both OS
configuration and bootloader features available.

__END_QUOTE__

Note, that suggested above approach requires one edited by hand grub,cfg
along with automatically generated others.

[1]: http://sgf-dma.blogspot.com/2012/07/multiboot-with-grub-2.html


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/50544d00.6040...@gmail.com



Re: Removing deb-multimedia pkgs w/o removing everything

2012-09-15 Thread Dmitriy Matrosov

On 09/15/12 21:38, Andrei POPESCU wrote:

On Sb, 15 sep 12, 12:53:46, Ed Jabbour wrote:

I'd like to remove packages gotten from deb-multimedia and replace
some from the Debian repos.  However, removing them will also remove a
bunch  of libs and kde progs. E.g., apt-get remove libavcodec53
yields:

0 upgraded, 1 newly installed, 190 to remove and 1 not upgraded.

I'm not up to reinstalling 190 packages.  apt-get install that pkg
just tells me that libavcodec53 is already the newest version.  Is
there any way around this?  Is it possible to easily replace the deb-
multimedia pkgs with the Debian ones?


It's possible. I've done it with aptitude by looking up each package
from the list generated by the command below and selecting the Debian
version instead of the deb-multimedia version.

 aptitude search ~S~i~Omultimedia

With apt-get you would have to build up a big command line like

 apt-get install package1/version1 package2/versions ...

because there are lots of interdependencies which would get in the way.

You can find packages from deb-multimedia without aptitude as well. Like so

$ dpkg-query -Wf '${Package}\n' \
 | xargs -d'\n' sh -euf -c '
apt-cache showpkg $@ \
| sed -ne
s/^Package: //p;
/^Versions:/,/^Reverse Depends:/{
\_^[^[:space:]].*(/var/lib/dpkg/status)_p;
}; \
| sed -neN; /_deb.multimedia_/P;
' sh

Result of this command will be list of packages, which are installed 
(referenced
from /var/lig/dpkg/status) and that are available from deb-multimedia. 
If this package
version also available from other source (like squeeze repository), it 
_also_ will be

listed. Such extra packages may be filtered by editing 2nd sed's regexp.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/5054ccbc.9030...@gmail.com



Re: Grub2 with multiple Debians

2012-09-15 Thread Dmitriy Matrosov

On 09/15/12 18:23, lee wrote:


Can't we have a boot manager which is independent of the installed OSs?
Grub kinda does its own thing already, and if there was something like a
standardised API through which OSs could tell the boot manager how they
are to be booted, we would install the boot manager as the first thing
and only once.  Then we could install as many OSs (or at least Linux
versions that comply with the standard) as we like, each of them telling
the boot manager how to boot them.  You wouldn't have the problem you
have now anymore.

All of this can be implemented with grub (grub2 at least). And one of the
approaches, is to have (main) grub config, which loads OS-specific ones. The
main grub config should only know where to find OS-specific ones and should
_not_ be updated by update-grub from any OS. The os-specific ones, on the
other hand, should be updated by update-grub from corresponding OS. The
main config must be updated either manually, or by some other method (using
standardized API, as you said). Anyway, this is exactly what described in
article i mention earlier. And may be it's a bit complicated, but it works.


What if you install a tiny minimal Linux version only to get grub
installed and exclusively use that version of grub for booting?  The
Debian installer and the package management would have to be fine
without installing or updating grub, and you would have to boot into
your minimal version to update grub from there.  Is that possible?



Grub from this minimal linux should somehow figure out which OS root
corresponds to which kernel, or where to find /boot corresponding to some
OS. Default grub2 scripts can't do this (at the time, when i have checked).


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/5054d0bf.7070...@gmail.com



Re: Grub2 with multiple Debians

2012-09-15 Thread Dmitriy Matrosov

On 09/15/12 22:52, Hendrik Boom wrote:

On Sat, 15 Sep 2012 13:40:16 +0400, Dmitriy Matrosov wrote:


On 09/15/12 00:42, Hendrik Boom wrote:

On Fri, 14 Sep 2012 23:25:03 +0300, Andrei POPESCU wrote:


On Vi, 14 sep 12, 17:12:38, Hendrik Boom wrote:


Of course, after I've made my copy (with slight changes to
/etc/fstab) I have two nearly identical sets of partitions, so it may
be tricky to tell them apart.  Is grub2 clever enough to figure it
all out anyway? And what data does it use to this end? (so I can make
sure it's right!)


UUIDs? What failure mode(s) do you have in mind, because I can't think
of any.


It probably is os-prober that I mean.  The misconfiguration I have in
mind is matching one system's /boot with another systems's /.  I've had
it happen on a laptop sometime ago. and it sure messed up my upgrades.
I have no idea how it happened, but it has made me paranoid.

-- hendrik




Hi.

Useless entries in grub.cfg (with non-matched kernel and root, e.g.
kernel from stable and root from testing) or probably even no correct
one - is normal for 30_os-prober and 10_linux scripts. I don't think,
that there is a simply way to fix them.


You'd think that os-prober could use the entries in /etc/fstab to
identify the /boot that goes with a particular root partition.


May be this will work. May be not. But there will be many problems with
this, and rewriting os-prober (instead just some or several configs) is not
the last of them (i mean, you will have problems during grub update if your
patches have not yet accepted upstream). And if you want my opinion, i don't
think this will work. First, there is no guarantee, that corresponding /boot
will be mentioned in fstab. Second, /boot may be common for all 
distributions,

and the problem will be to identify correct kernel. And, third, you should
not just figure out correct kernel for current OS, but for all others as 
well.



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/5054d45f.1080...@gmail.com



Re: dpkg/apt voodoo to ask what version of pkg is installed, if any?

2012-09-13 Thread Dmitriy Matrosov

On 09/12/12 23:44, Kris Deugau wrote:

I already have this and it's been working well for quite a while:

   dpkg-query --showformat '\${status}\t\${version}\n' -W $pkg

Unfortunately I've just discovered it fails when $pkg is a virtual
package, and I have no way to tell ahead of time if this is the case or
not (nor does the caller care).

Is there a single command that can do this for both virtual and real
packages, a la rpm -q --whatprovides?

Some searching turned up references to apt-cache dumpavail, but that
isn't restricted to the currently installed packages.  The --installed
option seems to be ignored for dump and dumpavail.

(Please CC me on replies.)
-kgd


   

Hi.

May be something like: (example for mail-transport-agent)

$ apt-cache  showpkg mail-transport-agent \
| sed -ne'/Reverse Provides/,$p' \
| sed -ne '2,$s/ .*//p' \
| xargs -d'\n'  sh -euf -c '
dpkg-query --showformat 
\${package}\t\${status}\t\${version}\n -W $@ 2/dev/null \

| grep -v not-installed
' sh


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/5051a84a.6090...@gmail.com



Re: DHCP server not starting at boot, any workarounds?

2011-11-24 Thread Dmitriy Matrosov
2011/11/24 Victor Nitu vic...@debian-linux.ro:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 ..

 How can I start the dhcp server *after* booting the system, to avoid
 manual interaction? Tried a (re) update-rc.d , putting it in rc.local,
 making a separate script, any more ideas?


 TIA,

 Victor

Try to create file with name 'isc-dhcp-server' in
'/etc/insserv/overrides'. Then copy LSB header from
'/etc/init.d/isc-dhcp-server' and add to 'Required-Start' field system
facility '$all'. Resulting file should look like

# cat /etc/insserv/overrides/isc-dhcp-server
### BEGIN INIT INFO
# Provides:  isc-dhcp-server
# Required-Start:$remote_fs $network $syslog $all
# Required-Stop: $remote_fs $network $syslog
# Should-Start:  $local_fs slapd $named
# Should-Stop:   $local_fs slapd
# Default-Start: 2 3 4 5
# Default-Stop:  0 1 6
# Short-Description: DHCP server
# Description:   Dynamic Host Configuration Protocol Server
### END INIT INFO

Then run 'insserv' and check, that dhcp server now has the last
sequence number in appropriate rcX.d directory.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAFdVUF=ZWU4AbQW8_GDy=2xkzuoqj0rgiep5fuf_ekpbbec...@mail.gmail.com



Re: NCID with no rcS.d

2011-11-24 Thread Dmitriy Matrosov
2011/11/24 lrhorer lrho...@satx.rr.com:
 OK, so here's the deal.  I compiled and installed ncid on one of my
 Debian servers  Everything seems to be working just fine.  There's one
 small item, though.  When I took the init scripts and ran update-rc.d,
 it gave me a warning saying stop runlevel arguments (0 1 6) do not
 match LSB Default-Stop values (S 0 1 6).  When I looked at the scripts,
 they have the line

 # Default-Stop:      S 0 1 6

 in the LSB. Now as I understand it, by the script definition, there
 should be links in /etc/rcS.d to the scripts in /etc/init.d with names
 like K20ncidd.init, and so forth.  Per the output of update-rc.d,
 however, these links were not created, but all the others were.

 First of all, why did the routine put up that warning and fail to create
 the links?

As i understand, update-rc.d does not create any links - it just
manages them (disables (rename SXX to KXX), enables (rename KXX to
SXX), etc). This is insserv duty to install init script links. Try
reinstall init script with insserv: frist - remove, and then install
again.
# insserv  -r  init_script_name
# inssert init_script_name


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAFdVUFkUUyZu_mmZZuv9gbV-=tb+noryr2jjqskmsx6ruv8...@mail.gmail.com



Re: NCID with no rcS.d

2011-11-24 Thread Dmitriy Matrosov
2011/11/24 Arno Schuring aelschur...@hotmail.com:
 lrhorer (lrho...@satx.rr.com on 2011-11-24 03:38 -0600):
 OK, so here's the deal.  I compiled and installed ncid on one of my
 Debian servers  Everything seems to be working just fine.  There's
 one small item, though.  When I took the init scripts and ran
 update-rc.d, it gave me a warning saying stop runlevel arguments (0
 1 6) do not match LSB Default-Stop values (S 0 1 6).  When I looked
 at the scripts, they have the line

 # Default-Stop:      S 0 1 6

 [..]
 First of all, why did the routine put up that warning and fail to
 create the links?
 insserv doesn't create the links unless explicitly asked to do so. By
 default (as it's called from dpkg), it only determines start/stop
 ordering.

 I'm not sure how those links are populated initially. It could be that
 the package provides them, and is missing that one link.

 To restore the defaults, run:
 # insserv -vd ncid

 ..

 Regards,
 Arno

It seems, that 'insserv -d' also reorders other init scripts (though i
don't understand why), though removing ncid and then installing again
with insserv does not affect other scripts.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cafdvufnqpmdvukjopuwgav57y0mm+zyrjpku4p8bamuv01t...@mail.gmail.com



Re: NCID with no rcS.d

2011-11-24 Thread Dmitriy Matrosov
2011/11/24 lrhorer lrho...@satx.rr.com:
 Dmitriy Matrosov wrote:

 2011/11/24 lrhorer lrho...@satx.rr.com:
 OK, so here's the deal.  I compiled and installed ncid on one of my
 Debian servers  Everything seems to be working just fine.  There's
 one small item, though.  When I took the init scripts and ran
 update-rc.d, it gave me a warning saying stop runlevel arguments (0
 1 6) do not match LSB Default-Stop values (S 0 1 6).  When I looked
 at the scripts, they have the line

 # Default-Stop:      S 0 1 6

 in the LSB. Now as I understand it, by the script definition, there
 should be links in /etc/rcS.d to the scripts in /etc/init.d with
 names like K20ncidd.init, and so forth.  Per the output of
 update-rc.d, however, these links were not created, but all the
 others were.

 First of all, why did the routine put up that warning and fail to
 create the links?

 As i understand, update-rc.d does not create any links - it just
 manages them (disables (rename SXX to KXX), enables (rename KXX to
 SXX), etc).

 No, that's not true, at all.  See my response to Arno above.  If one
 supplies the enable or disable argument, then indeed update-rc.d does
 not create links, but the other commands do create or delete links:

Well, indeed, you're right. But who actually creates links: insserv or
update-rc.d ? And who actually calculates dependencies? And what does
update-rc.d really reads from LSB header: only default runlevels or
all fields or nothing (all reads insserv)? Unfortunately, i don't know
perl to read update-rc.d sources.

Anyway, it seems, that following pairs

# insserv script
and
# update-rc.d script defaults

and

# insserv -r script
and
# update-rc.d script remove

do exactly the same thing and i didn't notice this for the first time.

 RAID-Server:/etc/init.d# update-rc.d
 usage: update-rc.d [-n] [-f] basename remove
       update-rc.d [-n] basename defaults [NN | SS KK]
       update-rc.d [-n] basename start|stop NN runlvl [runlvl] [...] .
       update-rc.d [-n] basename disable|enable [S|2|3|4|5]
                -n: not really
                -f: force

 From the man page:

 NAME
       update-rc.d - install and remove System-V style init script links
 

 When run with either the defaults, start, or stop options, update-rc.d
 makes links /etc/rcrunlevel.d/[SK]NNname that point to the script
 /etc/init.d/name.

 This is insserv duty to install init script links. Try
 reinstall init script with insserv: frist - remove, and then install
 again.
 # insserv  -r  init_script_name
 # inssert init_script_name

 It would be a lot easier just to create the link by hand.  As Arno
 pointed out, however, there's really very little or no operational
 impact to the kill script for runlevel S being missing.

Then, what's the purpose of having S in 'Default-Stop' ? In
/usr/share/doc/sysv-rc/README.runlevels.gz written, that switching to
single user is done by switching to runlevel 1, so it's runlevel 1,
who should have K script, but not runlevel S. Well, if i understand
correctly,


 Reading through the man page again, I can across this, however:

 If defaults is used then update-rc.d will make links to start the
 service in runlevels 2345 and to stop the service in runlevels 016.

 So that's why it didn't create the runlevel S script.  This behavior is
 the legacy behavior, mandated by the existence of a file named .legacy-
 bootordering.  Sure enough, the file is there.
Legacy behavior is to create K scripts at runlevel S ? I may be wrong,
as usual, but as i understand runlevel S is not legacy, it is just
runlevel not to be switched to directly and its scripts runs only once
at system boot, and never again at any runlevel switches (hence, it
does not need any K scripts and should not be in Default-Stop). As i
understand update-rc.d manpage, .legacy-bootordering simply disables
dependency resolution according to LSB header and, hence, assigns to
script specified on cmd  number (for SXX/KXX) instead of calculated
one. And the same for runlevels, but it does not obsolete in any way
runlevel S.


2011/11/24 lrhorer lrho...@satx.rr.com:
 Dmitriy Matrosov wrote:

 2011/11/24 Arno Schuring aelschur...@hotmail.com:
 lrhorer (lrho...@satx.rr.com on 2011-11-24 03:38 -0600):
 [..]

 It seems, that 'insserv -d' also reorders other init scripts (though i
 don't understand why)

 Um, because it is supposed to?  I mean, the whole point of dependency
 based booting is to make sure the proper services are all available when
 they need to be, and the mechanism of that is the ordering of the
 scripts.  Whenever one script changes, it may affect other scripts.


Well, let's me explain what i mean on example:
# ls -l rc2.d/ | grep -eisc -ebacula
lrwxrwxrwx 1 root root  19 Nov  8 17:58 S18bacula-sd - ../init.d/bacula-sd
lrwxrwxrwx 1 root root  19 Nov 24 15:04 S19bacula-fd - ../init.d/bacula-fd
lrwxrwxrwx 1 root root  25 Nov 24 23:05 S19isc-dhcp-server -
../init.d/isc-dhcp-server
lrwxrwxrwx 1 root root  25 Nov 24 15:04 S20bacula

Re: OT: laptop recomendations

2009-01-03 Thread Dmitriy Ugnichenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



I bougth Dell 1310 with Intel video+wifi+CPU inside. All's working
like a charm, I had no problems, using debian/ubuntu on it. :D


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAklfdbAACgkQmrRsq68K75WFwwCeK3oNfCI7w6n167Q1+9w9wEA4
25EAoJoU702CBY3wbDYviksW7miwAoZt
=yeSq
-END PGP SIGNATURE-


Re: mathematica fonts under sid

2002-05-07 Thread Dmitriy
On Mon, May 06, 2002 at 11:03:42PM -0400, Jack Howarth wrote:
If someone else besides myself is running current sid and has
 Mathematica installed could you please try running it. I seem to 
 be seeing an internal failure in Mathematica finding all of its 
 fonts...
 
 The Mathematica fonts are not properly installed in your system. Without
 these fonts, typeset mathematical expressions cannot be displayed properly.
  

Same here.

 This error appears to be new as mathematica was running fine under sid
 until recently here.
Jack

See
http://support.wolfram.com/mathematica/systems/linux/interface/fonterrors.html
for solution. Worked for me here (just steps 3-4 really).

I hope that helps.

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgpbSDgGSD1xu.pgp
Description: PGP signature


Re: fetchmail daemon dies, won't restart

2002-04-26 Thread Dmitriy
On Fri, Apr 26, 2002 at 12:28:12AM -0700, Karsten M. Self wrote:
 I'm running a daemonized fetchmail at work, ~1000 messages daily.
 
 Periodically the daemon dies.  No good reason.  OK, I can deal with
 that.  Create an /etc/cron.d/fetchmail file with the following:
 

Hmm, I too have this problem, I am not sure what is causing it, but at
least I am not alone.


-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgpPb7rMgdVxh.pgp
Description: PGP signature


Re: GNOME 2.0 Beta dpkgs?

2002-04-25 Thread Dmitriy
On Thu, Apr 25, 2002 at 05:05:13PM -0400, Mike Frisch wrote:
 Anybody know of a source of GNOME 2.0 Beta dpkgs that will happily
 co-exist with the current version of GNOME on woody?
 
There is none, since gnome1 and their gnome2 counterparts usually
conflict with each other.

You can find a lot of packages in the experimental and unstable.

I hope that helps.

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgpoalkOT4OfR.pgp
Description: PGP signature


Re: Handling lots of mail

2002-04-25 Thread Dmitriy
On Thu, Apr 25, 2002 at 01:38:29PM -0700, Ross Boylan wrote:
[long snip]
 
 My primary inbox is around 2,700.  Debian-user is at 27,000.
 
  
   Other than cleaning up, are there other approaches that people can
   suggest for handling this?  I think I want my mail kept in a database.

What I do with debian-user is sort them into mailboxes with names like
d-user-2002-04 (year and month), or more gradations then that.  

It maybe a bit inconvinient, but I prefer that to have 25k messages
sorted.

It works ok for most lists, but debian user takes some time thou.



-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgpcu9qIFb7Tv.pgp
Description: PGP signature


Re: reiserfs and /boot

2002-04-24 Thread Dmitriy
On Wed, Apr 24, 2002 at 07:51:48AM -0500, Dale Hair wrote:
 On Tue, 2002-04-23 at 23:38, mdevin wrote:
  On Wed, Apr 24, 2002 at 00:34:44 -0300, Haroldo Stenger wrote:
   mdevin wrote:
[snip]
  I am really not sure, but just remember some issue like this.
  
  Has anyone gone totally reiserfs?
  
[snip]
 
 My system is on a single 8 gig reiserfs partition and I've had no problems.
 I had to install from woody cd 5 for reiserfs support and always build 
 reiserfs into the kernel.
 
I have one reiserfs partition, loaded from GRUB.
I installed it from potato+0.2 resierfs bootfloppies.

I have it as a module with initrd setup.

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgpW9UvTHN87x.pgp
Description: PGP signature


Re: how do u do this??

2002-02-07 Thread Dmitriy
On Thu, Feb 07, 2002 at 06:47:15PM -0500, [EMAIL PROTECTED] wrote:
Can you play vcd on PC? If can how? and what do I have to do to play it?
What program do I have to download???

Try Xine.

`apt-get install xine-ui` if you are in unstable.

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgpqA1dkQhHus.pgp
Description: PGP signature


Re: initrd.img (alert the press! end-user-type compiles own kernel!)

2002-01-28 Thread Dmitriy
On Mon, Jan 28, 2002 at 01:29:03AM -0500, James Lindenschmidt wrote:
 Adam Majer Spoke Thusly:
  On Mon, Jan 28, 2002 at 12:27:47AM -0500, James 
 Lindenschmidt wrote:
   Greetings. Yet another not-newbie, not-guru
   generated during the make-kpkg kernel_image?
[snip]
 
  If you are not using Debian kenrel or the debian kernel
  make utility, you are not using initrd.img. So your can
  delete it from lilo...
 
 No, that's the point. I'm trying to do this The Debian Way, 
 using apt-get install kernel-source and make-dpkg 
 kernel_image.
 
 How can I replace the /boot/initrd.img?

man make-kpkg .

Note --initrd option.  
Also you might want to take a .config from one of official binary
packages and tweak it slightly to suit your needs.

 -- 
 James Lindenschmidt
 [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgpKytYPyhjYh.pgp
Description: PGP signature


Re: Are you spam?

2002-01-21 Thread Dmitriy
On Mon, Jan 21, 2002 at 09:05:44PM -0500, alex wrote:
[snip]
 
 If  an ISP doesn't use a SPAM blocker service, the message  passes but 
 then a filter that directs the mail to a Debian
 mailbox may instead treat it as general mail, depending on how the 
 filter is profiled.for Debian mail.
 
 What's wrong with addressing  debian-user@lists.debian.org  with To 
 instead of burying it in a multitude of CCs?
 It can make a difference to some recipients. who have SPAM blocking 
 service or profiled mail filters.
 
That's just how some people choose to adress it.  
It's their choice.

Just use Resent-From: debian-user@lists.debian.org header for
sorting.  Works for me.


-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgpxpITHyKUPL.pgp
Description: PGP signature


Re: problems fetchmail protocol error

2002-01-17 Thread Dmitriy
On Thu, Jan 17, 2002 at 07:15:14AM +0100, Thomas Wegner wrote:
 Hi!
 
 I'm using fetchmail 5.9.6 with woody. Since 3 days I have problems to get 
 mails from my isp using pop3. A protocol error returns after starting 
 fetchmail. My isp says that he had nothing changed. I don't know exactly if i 
 have updated fetchmail in the last 3 days.
 
 Any hints?
 

`fetchmail -vvv` output IMO would be more helpful to see what is
wrong.


 Thanks Thomas
 -- 
 E-Mail: [EMAIL PROTECTED]
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgpnBSKo1gcLC.pgp
Description: PGP signature


Re: Fetchmail Problems with Retrieving Mail

2002-01-13 Thread Dmitriy
On Sat, Jan 12, 2002 at 10:11:35PM -0800, Mark Wagnon wrote:
 Hi all-
 
 Well fetchmail seems to be acting up on me here. I'm running 5.9.6-2,
 and haven't figured out how to run it as a system wide daemon yet, so
 I'm still doing the fetchmail -d 300 when I log in. Anyway, for some
 reason it stopped retrieving mail. I killed the process and tried
 running it with the -vvv options to see what I could see. Well, it
 would see a bunch of messages (around 220) and crap out when it
 started to retrieve them. I wish I had saved the output, but I didn't
 (sorry). I did a little looking around in the archives and found a
 reference to an issue with it when retrieving a lot of messages. I use
 my Yahoo mail account for the list so I just logged in via http and
 deleted a bunch of the list messages. I then tried running fetchmail
 again, and it worked like a champ, grabbing the 5 messages with ease.
 
 My question is...anyone else experiencing this and know how to address
 it?
 

I have the same problem w/ my Yahoo account.

On a retreival of a certain message server drops connection.

You have to go into webmail account (which may be inaccesible for
around 10 mins or so after attempt), and move all messages to a
different folder.  Then go through all of them until u see a You
browser sent a malformed request to the server.  Delete move that
message.  All the messages you could read through web interface are
safe to move back into Inbox and receive with fetchmail. After a while
problematic message gets accesible again. I have no Idea what is
causing this a effect, by message from certain people on the list seem
to become problematic more often then others.

Perhaps one could write a script to automate this, but I didn't try.

If anyone has solution/knows why this is happening I would be gald to
hear.

 TIA!
 -- 
   Mark Wagnon [EMAIL PROTECTED]
 

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgpGzig9gcG8H.pgp
Description: PGP signature


Re: OT: performance problems.

2002-01-07 Thread Dmitriy
On Sun, Jan 06, 2002 at 04:52:14PM +0100, martin f krafft wrote:
 folks, sorry if i am posting this here, but i am sort of clueless, and
 i'd love some advise from you wise people!
 
 i have this AMD Thunderbird 1.3 GHz machine with 512Mb of SD-RAM, a 1Gb
 swap partition on a 20Gb 5400 seagate IDE drive. that's quite powerful,
 isn't it?
 
[snip]
 
 in such a situation, xmms (or mpg123 without X, it doesn't matter)
 continuously skips on MP3s and it's *very* annoying. i even went as far
 as to renice xmms to -20 *and* rsync/bzip/gzip/make-kpkg to 20, but it
 doesn't really help.
 
[snip]
 
 any clues?
 
Did you check if XMMS uses any wacky output plugins like ESD?
Did you try other players?

 -- 
 martin;  (greetings from the heart of the sun.)
   \ echo mailto: !#^.*|tr * mailto:; [EMAIL PROTECTED]
   
 no problem is so formidable
  that you can't just walk away from it.
   -- c. schulz



-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *


pgph4v5EM8ldt.pgp
Description: PGP signature


So long, and thanks for all the fish!

2001-12-10 Thread Dmitriy Kropivnitskiy
Thank you everybody for all the help I have recieved from this list. For many 
reasons ( none of them ideological ) I had to switch all my work and home 
systems to Slackware 8.0. Since that leaves me without any Debian based 
systems I am going to unsubscribe from this and other Debian lists. Again, 
thank you all for the support. Debian community is the best one compared to 
other linux user groups. Any not Debian-specific questions are welcome at the 
address [EMAIL PROTECTED] 

Dmitriy K. ( aka Jeld The Dark Elf )



Re: debconf XFree86 settings

2001-12-10 Thread Dmitriy
On Sun, Dec 09, 2001 at 10:35:29PM -0800, Craig Dickson wrote:
 I had a problem today thanks to the latest round of XFree86 upgrading in
 Sid. I logged out, and gdm failed to come up. I rebooted and it again
 failed. /var/log/syslog simply said that it had failed, but not why.
 /var/log/XFree86.0.log told me that the mouse could not be initialized,
 and hinted that my mouse configuration had changed. This was confirmed
 by looking at /etc/X11/XF86Config-4 -- my customizations were all gone.
 
[snip]
 
 The remaining issue is that of font management; dexconf insists on
 inserting a line for an xfs listening on port 7100, which is wrong
 because I don't have an xfs installed. It also insists on throwing away
 the entry for my TrueType fonts directory. dpkg-reconfigure
 xserver-xfree86 didn't ask me about those things, and dpkg-reconfigure
 xfree86-common didn't ask me about anything. Is there some other package
 I can reconfigure that will ask me the right questions so I can prevent
 my X configuration from getting subtly screwed up every time a new set
 of XFree86 packages is installed?

The way to do it is when reconfiguring the xserver-xfree86 you have to
answer no to Write default Files section to configuration file?
question.

Then edit your /etc/X11/XF86Config-4 and add Files section manually 
_outside_ of ### BEGIN DEBCONF SECTION/### END DEBCONF SECTION block.

I hope that works for you.

 
 The TrueType fonts, by the way, didn't come from a Debian package, which
 I suppose could be why debconf doesn't know about them; I just copied
 them over from my Windows machine and manually configured them. If
 there's some trivial package I can install that will just register the
 presence of the font directory, I'll do that.
 

Just put them in /usr/local and add that FontPath to your custom files
section.  Don't forget the required stuff to be done for TT fonts.

 
[snip]
 Thanks,
 
 Craig

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpL6rAiI0bIp.pgp
Description: PGP signature


Re: 2.4.16 kernel crashed

2001-12-07 Thread Dmitriy Kropivnitskiy
I have been using 2.4.16 since it came out and hadn't had a single problem.
On the other hand xscreensaver and xlock has always been trouble. A crashed GL
application sometimes will leave your video card in such a mess that even 
kiling X right from under it will not reinitialize it. Generally this would 
noy affect ability to remotely connect unless the GL application didn't crash 
but instead is hogging system resources. I haven't seen this happen with 
xscreensaver, but xlock had done similar things to me a few times. So, I 
don't really believe that this is related to kernel version, although since 
DRI support has been rewritten in 2.4 series, that might cause some trouble.

On Friday 07 December 2001 03:49 pm, Preben Randhol wrote:
 After compiling and installing 2.4.16 things seemed to work nice until i
 looked at the computer again a bit later and saw that my screensaver had
 stopped (I had the GL text screesaver on). I tried to login but no
 dialog box noting. Then I tried to ssh, but this didn't work either so I
 had to hit reset button. Now I'm back to 2.2. Do somebody know of
 particular problems with 2.4.16?

 Thanks in advance.

 Preben



Re: incoming.debian.org

2001-12-05 Thread Dmitriy
On Wed, Dec 05, 2001 at 03:07:02PM -0800, Paul 'Baloo' Johnson wrote:
 Is there an apt source for incoming.debian.org?
 
No, It is not intendended to be used that way.  
It IMO is so u can pull a specific new package that didn't make it into
archive yet, but u really need it.

So, no apt source.

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

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpQCeUpL6kHW.pgp
Description: PGP signature


Re: Gunsamerica pictures can no longer be viewed

2001-11-30 Thread Dmitriy
On Thu, Nov 29, 2001 at 09:45:05PM -0800, fowlers wrote:
Something in your service is preventing me from getting messages from and
accessing gunsamerica.com.
 
Debian GNU/Linux is an Operating System. 
It can be obtained and installed free of charge.

It is develpoed by volunteers and has _no control_ over who installs
it and where.

Administrator of that server misconfigured it, and Debian Project is in no
way responsible for that.

You are infringing and preventing business transactions.  What gives?

They are infringing and preventing business transactions. What gives?

P.S. Oh, they sell guns online now? And you still can't buy online kegs of
beer :-(


-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp5qTtx0t4xw.pgp
Description: PGP signature


Re: Games - A question

2001-11-30 Thread Dmitriy Kropivnitskiy
One of the main rules in computer security is that CLIENT SECURITY DOESNT 
WORK. I. e. if you have an untrusted client running your software there is 
always a way to circumvent any kind of security you put in place. You can 
make it increasingly difficult, but you can never make it secure. A couple of 
exzmples:

When Diabolo came out the manufacturer claimed that they made the network 
play unhackable, since they used some encryption on the player files, secure 
protocol and what not. Cheaters started to appear after maybe a month or two 
after the release.

I have once talked to a guy ( system programmer ) who was hired to break 
dongle based security on one of the 3D modeling software packets. The reasons 
were legitimate, the company that hired him, bought several hundred licenses, 
and aparently sooner or later the dongles got all mixed, so they needed any 
copy of the the software to run with any dongle or without a dongle. The guy 
told me things unimaginable such as physical defects on the CD to prevent 
copying, program files that are completely different on disk and in memory, 
complex routines that query the dongle etc. etc. etc. It took him about 6 
months to figure it out, but he did. That is the point. You cannot secure 
something that is not under your full control.

On Friday 30 November 2001 10:57 am, David Roundy wrote:
 I haven't heard of a commonly played closed source online game in which
 people have been unable to cheat one way or another.  I'm not sure how it's
 done, but I know in all the games I've played (not many) there are always
 cheaters who give themselves extra minerals, duplicate powerful items or
 whatever.  The problem is when the game designer assumes (usually for speed
 reasons) to assume that the client can be trusted.



Re: Cannot mount reiser fs using patched potato kernel

2001-11-29 Thread Dmitriy Kropivnitskiy
You should check for the version of reiserfs that you are using. IF you have 
created your file systems on a more recent version older versions  might have 
some problems recognizing it.

On Thursday 29 November 2001 07:06 am, Dougie Nisbet wrote:
 I have an Supemicro 370DDE machine with 4 40GB hardrives.
 The Chipset on the mobo is the Apollo Pro 266.
 I have applied the Reiser patch to the 2.2.19pre17 kernel.
 The options have appeared for Reiser in make xconfig, and they're selected.
 The kernel has re-compiled fine.

 I also have Mandrake 8 installed. Mandrake sees my reiser filesystems ok,
 and they were in fact created using Mandrake.

 When I try mounting a  reiser file system using potato, I get the following:
  tbird2:~# mount -t reiserfs /dev/hda10 /spare
  mount: wrong fs type, bad option, bad superblock on /dev/hda10,
or too many mounted file systems

 I wondered if there was some subtle difference between the way Mandrake
 made reiser file systems and the reiserfsprogs-3.x.0j utils that I
 installed on potato.
 So I deleted the parition, and used mkreiserfs under potato.
 The partition is created with no errors, and I reboot. reiserfsck thinks
 it's fine too. But I cannot mount the file system.

 Thanks to nate for giving me a few things to check. Such as ensuring that 
the partition is type 83:
  tbird2:~# fdisk -l /dev/hda
 
  Disk /dev/hda: 255 heads, 63 sectors, 5005 cylinders
  Units = cylinders of 16065 * 512 bytes
 
Device BootStart   EndBlocks   Id  System
  /dev/hda1   * 1   781   6273351b  Win95 FAT32
  /dev/hda2   782  5005  33929280   85  Linux extended
  /dev/hda5   782   817289138+  82  Linux swap
  /dev/hda6   818  1425   4883728+  83  Linux
  /dev/hda7  1426  2130   5662881   83  Linux
  /dev/hda8  2131  3194   8546548+  83  Linux
  /dev/hda9  3195  4292   8819653+  83  Linux
  /dev/hda10 4293  5005   5727141   83  Linux

 The kernel has reiser support:
  tbird2:/proc# cat filesystems
 ext2
 reiserfs
 umsdos
 msdos
 vfat
  nodev   proc
  nodev   nfs
  nodev   smbfs
 iso9660
  nodev   autofs
  nodev   devpts

 There are some error messages in the syslog, which suggest all is not well; 
along the lines of:
 Nov 29 11:04:30 tbird2 kernel: reiserfs_read_super: can't find a
  reiserfs filesystem on dev 16:41. Nov 29 11:04:30 tbird2 kernel:
  reiserfs_read_super: try to find super block in old location Nov 29
  11:04:30 tbird2 kernel: reiserfs_read_super: can't find a reiserfs
  filesystem on dev 16:41.

 I've run out of ideas. Any suggestions welcome.

 Dougie



Re: Framebuffer VGA settings

2001-11-27 Thread Dmitriy Kropivnitskiy
Generic way is to append vga=ask to your kernel params and type scan when 
it asks you for the screen mode. Then you just pick the one you like :)

On Monday 26 November 2001 06:34 pm, [EMAIL PROTECTED] wrote:
 Hi, does anyone know what settings I should put into lilo.conf to set up
 800x600 framebuffer support on the console?

 Thx,
 Deven Gallo



Re: LibC6 Upgrades

2001-11-27 Thread Dmitriy
On Tue, Nov 27, 2001 at 06:54:07PM -0500, [EMAIL PROTECTED] wrote:
 Hi, I'm trying to upgrade Libc6 with a .deb package. Whenever I do, all 
 packages dependent on libc6 default to REMOVE in dselect and I can't apt-get 
 anything anymore! I need to upgrade libc6 to run Sawmill .30. Does anyone 
 know what I should do?
 
Just backport it to potato.

Or go to woody.

But not in between.


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

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp4qTndgPfqc.pgp
Description: PGP signature


Re: OpenSSH Mozilla Woody

2001-11-27 Thread Dmitriy
On Tue, Nov 27, 2001 at 07:27:33PM -0500, Brian Clark wrote:
 Howdy Folks!
 
 What type of acrobatics will it take for me to get Mozilla and OpenSSH
 (ssh2) into my woody workstation? :)
 
 For Mozilla, is it's perfectly OK to get Mozilla from potato or
 [preferably?] sid without it busting any existing dependencies? I was
 a little afraid to apt-get in that direction earlier..
Uhh...  AFAIK as I know woody has mozilla 2:0.9.5-5 and sid has
2:0.9.6-4 .

If you really want to have 0.9.6 just get sources from unstable and
compile for woody.  Or play with pinning packages, that may work with
too.


 
 For OpenSSH, if I want ssh2, where should I get this package?
 AFAIK, my potato server is _only_ ssh1. Would it be better to build
 from the source tarball?
 
AFAIK ssh2 package is non-free, and I always thought it was not OpenSSH.
Furthermore, it is orphaned and will probably be dropped soon.

OpenSSH in sid is version 2.9p2 . Maybe that is what you want?
Again, either pinning or grab a source and build , or try pinning.

I am using sid, and never tryed pinning, so I don't know if it can
break anything.

 I'm trying not to cause myself a lot of problems later when I start
 updating packages..
 
 Thanks :)
 -Brian
 (who's spirits are quite a bit brighter since he got blackbox up)
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpKJJGFDXWtU.pgp
Description: PGP signature


Re: OpenSSH Mozilla Woody

2001-11-27 Thread Dmitriy
On Tue, Nov 27, 2001 at 07:51:55PM -0600, Colin Watson wrote:
 On Tue, Nov 27, 2001 at 04:45:33PM -0800, Dmitriy wrote:
  On Tue, Nov 27, 2001 at 07:27:33PM -0500, Brian Clark wrote:
[snip]
  AFAIK ssh2 package is non-free, and I always thought it was not OpenSSH.
  Furthermore, it is orphaned and will probably be dropped soon.
 
 Probably not. Discussions about dropping it have always stalled because
 there are some things it implements that OpenSSH doesn't have yet
 (chroots? I forget the details).
 
 I went to a certain amount of effort last month to fix up ssh2 to the
 extent that it should be releaseable with woody.
 
OK, sorry for misunderstanding.

Any news of OpenSSH 3 ? (don't want to bug maintainer with useless
questions ;-) )

 -- 
 Colin Watson  [EMAIL PROTECTED]
 

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpnf4jFMWepR.pgp
Description: PGP signature


Re: Mobile Networking Setup Ques

2001-11-25 Thread Dmitriy
On Sun, Nov 25, 2001 at 10:13:27PM +, mallum wrote:
[snip]
 
 Can somebody point me in the right direction for doing this ? Can it
 be done with somesort of broadcast ping ? Is there a package that will
 help with this sort of configuration ?

Yes, look at following packages:
divine
guessnet
intuitively
laptop-netconf
whereami

(that's on unstable)

 
 Many thanks;
 
   -- mallum
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgphfmkpVgtc8.pgp
Description: PGP signature


Re: Stupid Newbie Question - Install Netscape from download

2001-11-25 Thread Dmitriy
On Sun, Nov 25, 2001 at 05:41:40PM -0500, Phil Beder wrote:
 I downloaded Netscape browser 6.2 from the netscape site in my windows
 partition as I dont have any means to browse the web in linux yet.  I tried
 to install it using dselect pointing it toward the directory in my windows
 partition with the compresed file in .gz format.  dselect did not recognize
 any dowloaded packages that were not in .deb format.  What should I do.
 
dselect is only for debian packages.

To unpack tar.gz or tgz use:
`tar zxvf filename.tar.gz`


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

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpdsdwveh0Za.pgp
Description: PGP signature


Re: security updates

2001-11-25 Thread Dmitriy
On Sun, Nov 25, 2001 at 06:48:19PM -0500, Glenn Becker wrote:
 Hi all,
 
 On the strength of what I read re: getting security updates in the list 
 archives, I put the following line in my /etc/apt/sources.list file:
 
 deb http://security.debian.org woody/updates main contrib non-free
 
 ... but all it generates when I apt-get update  apt-get dist-upgrade is 
 'Failed to fetch' and 404s. Is there a more up-to-date line for the security 
 stuff?
 
AFAIK woody doesn't have yet security updates apt source.
You have to wait 2-3 days before packages come form unstable,
or grab them from there and compile manually.

That's one of the risks you accepted when deciding to run testing
instead of stable or unstable.
-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp4zumYpGCXB.pgp
Description: PGP signature


Re: security updates

2001-11-25 Thread Dmitriy
On Sun, Nov 25, 2001 at 04:30:08PM -0800, nate wrote:
[snip]
 
 no specialized updates are available for woody or sid. you
 have to get the updates the same way you get everything else.
 be aware that it may take a long time to get security updates
 on woody as any new packages must go through a lot of testing
 before its allowed to get to woody. i think the process
 is 2 weeks? or maybe its 6..if no critical bugs are
 found during that time then the package is available to
 woody users.
That IMO depends on the urgency.  If a very important security problem
has been fixed, it can get into Woodoo w/i 2-3 days.


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

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpPTumC9C1Ls.pgp
Description: PGP signature


Re: 2.4.15 is out (and so is 2.5.0!)

2001-11-23 Thread Dmitriy
On Fri, Nov 23, 2001 at 08:45:56PM +1300, Adam Warner wrote:
 After replying to Brian I thought I'd check out kernel.org.
 
 I must be one of the first to know because bandwidth is still only
 60Mb/s.
 
 But this is also a surprise:
 
 http://www.kernel.org/pub/linux/kernel/v2.5/
 
One question, why is it called 2.4.15-greased-turkey instead of just
2.4.15 (the version)?

Some sort of inside joke?

Pretty weird.


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

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpECIoYgMeXT.pgp
Description: PGP signature


Re: 2.4.15 is out (and so is 2.5.0!)

2001-11-23 Thread Dmitriy
On Fri, Nov 23, 2001 at 04:17:48AM -0800, Dmitriy wrote:
  
 One question, why is it called 2.4.15-greased-turkey instead of just
 2.4.15 (the version)?
 
 Some sort of inside joke?

Oh, I get it. It's that thanksgiving/turkey american thing, right?


 
 Pretty weird.

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp9Rp0H64pWo.pgp
Description: PGP signature


Re: Default folder

2001-11-23 Thread Dmitriy
On Fri, Nov 23, 2001 at 01:22:27PM +, Vittorio wrote:
 I'm using mutt to deal with the lists I've subscribed to. 
 
 I'd like to have the  folder folder I receive my personal mail 
 ($HOME/IN.personale) to be automatically opened when I start Mutt.
 
Either set $MAIL to location of IN.personale or add to .muttrc:

set spoolfile=/home/yourlogin/IN.personale 

for more info see `man muttrc` .

I hope that helps.

 What should I do?
 
 Thanks
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgplpa8z11Mrc.pgp
Description: PGP signature


Re: Radeon 7500 XFree86 support.

2001-11-22 Thread Dmitriy
On Thu, Nov 22, 2001 at 06:31:11PM -0500, Diarmuid Drew wrote:
 I'm new to 3D, just upgraded my tseng ET6000 to a Radeon 7500.
 
 I'd like to get XFree86 4.1.0 to work, 2D would be nice, 3D would be better  
 than a best thing on a Best tour of Best land :)
 
 Trying to get the radeon driver loaded gives the error 
 (EE) No devices detected and the Fatal error no screens found.
 I get a  (--) PCI:*(1:0:0) ATI unknown chipset (0x5157) rev 0 error when I
  try the XFree86 -probeonly.
 
 Is the 7500 supported for 2D X, or do I re-install my ET6000 ?
I never had a Radeon, but _IMO_ there is DRI mdoule in the kernel for
Radeon.

I do not know if it works with 7500, but you can try to investigate that.

Somebody who uses ATI radeon should confirm that probably.


 
 Anybody got any suggestions or tips,
 
 TIA,
 Derm
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpeZm34H5gfr.pgp
Description: PGP signature


Re: working icq client for debian?

2001-11-20 Thread Dmitriy
On Tue, Nov 20, 2001 at 05:42:50AM +0100, Andreas Leitner wrote:

[snip]
 
 I have heard rumors that gaim supports the new icq protocl, but when i
 start it up, i get to the logon screen and am promted for a AOL IM user
 name + password (which i do not have). Does anybody know how to setup
 gaim to work as an ICQ messenger?
 
When u see signup window, click on plugins.

There you can load an icq plugin, and loads of other stuff.
And then u can click on accounts button on  signup window, 
and edit your accounts, and select the ones on which gaim would 
logon automatically.

I hope that helps.

 Or is there some other icq client in debian that supports the new
 protocol?
 
 
 tia,
 Andreas
 
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpdC47D1GhjP.pgp
Description: PGP signature


Re: working icq client for debian?

2001-11-20 Thread Dmitriy
On Tue, Nov 20, 2001 at 06:01:44PM +0100, Andreas Leitner wrote:
 On Tue, 2001-11-20 at 07:45, Dmitriy wrote:
  On Tue, Nov 20, 2001 at 05:42:50AM +0100, Andreas Leitner wrote:
[snip]
 Yes - thanks alot, I got it working now. Although I also played with
 ickle. There is no .deb for it yet and it is lacking a gnome applet, but
 it looks very prommising and works without tweaking the firewall (; 
 
There are unofficial ones at 
http://tag-ltd.spb.ru/~mbravo/debian/

Not an APT source AFAIK :-(


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

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp7sWwGHvYsM.pgp
Description: PGP signature


Re: unable to mount cdrom

2001-11-20 Thread Dmitriy
On Tue, Nov 20, 2001 at 09:53:17PM +, Hans Steinraht wrote:
 Hi,
 
 I have a problem mounting my cdrom, maybe someone can help?
 
 When I look with dmesg, I see that my cdrom is recognized as /dev/hdc (hdc: 
 CD-ROM 36X/AKU, ATAPI CDROM drive).
 
 Next what I did was making a symbolic link to /dev/hdc (ln -s /dev/hdc 
 /dec/cdrom) and checked that /etc/fstab contains the line: dev/cdrom /cdrom  
   iso9660 defaults,ro,user,noauto 0 0
 
I assume you are not using DevFS right?

And I hope the `ln -s /dev/hdc /dec/cdrom` and dev/cdrom /cdrom
iso9660 defaults,ro,user,noauto 0 0  were  typos .

First try using a different CD in your CD drive, and you can just put
/dev/hdc/cdrom   iso9660 defaults,ro,user,noauto 0 0 in fstab

Also, if that doesn't help, do you use custon-built / configured kernel?


 I restarted and tried to mount the cdrom as root with: mount /cdrom
 
 What I get is: mount: No medium found
 
 Can anyone tell me what I'm doing wrong.
 Thanks,
 Hans
 
 
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpyLGfhu9HRA.pgp
Description: PGP signature


Re: ISP asking about switching to Debian from OpenBSD

2001-11-20 Thread Dmitriy
On Tue, Nov 20, 2001 at 03:05:42PM -0500, jeff wrote:
 dear DD,
 
 before you go and delve into the world of new distros, you need only break 
 down your whole questionaire into one simple complete thought...
 
 my man, debian is fine for all of your tasks...the real question is, are you 
 ready for debian?
 
 DNS, webserver, email, and all the other fun stuff will only work as good as 
 the admin who puts it to use.
 
 to answer your obvious question, of course debian is a fine distro for all 
 your networking needs. it uses the linux kernel...and, if you're keeping up 
 to date with that, then all you really need is to keep asking specific 
 'debianized' questions on the list and read/learn more about the kernel.
 
 any distro is only as good as you make it bubba...there is no other way.
 
 p.s. i use mandrake, debian, and freebsd...not in a 'production' or ISP 
 environment...i am however willing to bet money that any of them would do the 
 trick simply because i'm more than willing to invest some serious brainpower 
 into them.
 

There is also debian-isp list , which seems more appropriate.


 good luck and good fortune with your company...
 
 -jeff
 
 -- 
 Q:What is purple and commutes?
 A:A boolean grape.
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpea4U4lQyHj.pgp
Description: PGP signature


Re: unable to mount cdrom

2001-11-20 Thread Dmitriy
On Tue, Nov 20, 2001 at 10:48:01PM +, Hans Steinraht wrote:
 First of thanks for the responses.
 
 I'm sorry, but I'm not very long working with Linux, enjoy it very much and 
 discover from time to time some behaviours that I never saw before.
 So, again this time.
 
 After putting the cd in the cdrom it WORKED perfect
You've gotta be kidding me :-)

 
 Silly huh, I've never thought about that.
 
 Thanks,
 Hans
 
 
 
 
 On Tue, Nov 20, 2001 at 09:53:17PM +, Hans Steinraht wrote:
  Hi,
  
  I have a problem mounting my cdrom, maybe someone can help?
  
  When I look with dmesg, I see that my cdrom is recognized as /dev/hdc 
  (hdc: CD-ROM 36X/AKU, ATAPI CDROM drive).
  
  Next what I did was making a symbolic link to /dev/hdc (ln -s /dev/hdc 
  /dec/cdrom) and checked that /etc/fstab contains the line: dev/cdrom 
  /cdromiso9660 defaults,ro,user,noauto 0 0
  
  I restarted and tried to mount the cdrom as root with: mount /cdrom
  
  What I get is: mount: No medium found
  
  Can anyone tell me what I'm doing wrong.
  Thanks,
  Hans
  
  
  
  
  -- 
  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]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpMRXgjPyKi1.pgp
Description: PGP signature


Re: Continuing VooDoo3 Problem

2001-11-17 Thread Dmitriy
On Sat, Nov 17, 2001 at 12:06:40AM -0800, Erik Steffl wrote:
 [EMAIL PROTECTED] wrote:
  
  Hi, I just ran test3Dfx and it can't find the VooDoo3 board! ... Then it
  segfaults! I am working on installing the 3dfx device now, but even when I
  had it installed, Quake 3 still ran at 1 fps, even at 16bpp in XFree86 (I
  think 3.3.6, it's whatever version comes with the Disc 1 2.2.19pre17 Debian
  ISO). I have all the packages I seem to need and have ./configure'd, make'd,
  and make install'ed MESA 4.0 and placed the Mesa-4.0 dir in the /usr
  directory, but I still have the same problems. I compiled in DRI and VooDoo 
  3
  drivers into the kernel. Can't find tdfx .. where is it in make xconfig?
 
   I just wrote another email where to find it but:
 
   not sure which versions you use but it's easier to use X 4.x and 2.4.x
 kernel.
 
Yes, but he was specifcally interested in Unreal Tournament, which
works only  with Glide in XF 3.3.X , which really sucks :-(


   with older X 3.x you don't need tdfx, you might need device3dfx (or
 3dfxdevice (I forgot which), it's module 3dfx.o) to be able to run
 openGL as non-root. I would strongly suggest to go with unstable (and
 new X and kernel). Stable is good for server that you absolutely need to
 have running but unstable (or testing, but I have better experience with
 unstable (roughly: it's about as stable as testing but has much better
 support - you get info about problems sooner and problems are fixed
 faster)) is good enough for workstation and since you playing with
 openGL I guess your life does not depend on the computer:-) openGL
 support is also better in X 4.x, e.g. you get openGL in window, you
 won't get stuck in fullscren openGL (at least it didn't happen to me yet
 and it seems like in 3.x that was the norm)...
 
   erik
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpo34pWUmKMv.pgp
Description: PGP signature


Re: Help Please.

2001-11-16 Thread Dmitriy Kropivnitskiy
Generic advice.

1. Get a set of small screw drivers, grounding strip and a set of small 
stickers, the kind you can write on.
2. Clear some large table space.
3. Put laptop on table space, ground yourself and start taking it apart.
4. Every part you take lable with a sticker and write a number on it, so that 
you are sure what order you took parts out in. Also if a part is affixed with 
screwes, put screwes together with the part itself ( like on top or right 
beside ).
5. When you see the battery - replace.
6. Reverse things you did in step 4.

On Thursday 15 November 2001 09:20 pm, [EMAIL PROTECTED] wrote:
 Hi
I am pretty handy when it comes to fixing PC type products, But I
 recently purchased a bios battery for my thinkpad 755c and I need some help
 t o replace it.
  Are you the right person? Or Can you point me in the right direction.

 Thanks In Advance
 [EMAIL PROTECTED]



Re: xscreensaver

2001-11-16 Thread Dmitriy Kropivnitskiy
You know, the guys are right about DRI. GL needs it to run full screen.
What was not mentioned is the fact that xscreensaver will not run as a root 
and DRI has root only permissions by default. Put following in your XF86Config
Section DRI
Mode 0666
EndSection
See if that helps

how do you run it fullscreen? if you just run it with -root option it
  is in root window and looks ugly (blinkig and choppy). Are you using
  xscreensaver to run it?

 ya ya...the natural state screensavers look yucky...really slow and kind of
 choppy.

  erik



Re: OT: Hardware upgrades

2001-11-16 Thread Dmitriy Kropivnitskiy
On Thursday 15 November 2001 06:40 pm, Erik Steffl wrote:
   that should not matter. the point is that the LILO doesn't even start
 - the bios thinks that you have no bootable disk which can have
 following causes:

I guessed that much. But BIOS sees the partition and LILO is installed in MBR 
( boot=/dev/hda ) . What is happening is that for some wierd reason BIOS 
doesn't recognize LILO enabled MBR as bootable.

   if it still does not work post your /etc/lilo.conf

That will be the next step, although it is a default one from installation.

2. What driver should I use for the sound card?
  
 what soundcard do you have? Is it the onboard one? ac97 or something
   like that is often found on via motherboards, there's a driver for that
   chipset for linux (at least alsa), but the sound quality is quite poor
   (at least that's my observation and also confirmed by other people on
   this list)
 
  Yes, I was talking about the internal one.

   you can probably use bios to make it look as what it is, as
 soundblaster or disable it. Make sure that you enable it and then use
 lspci to figure out what it is. then check kernel sound modules or alsa
 to see whether the chip is supported. or post output of lspci to this
 list.

Thanx for the tip, lspci makes more readable output than cat /proc/pci
I will see what has to be done as soon as I get home :)



Re: Making a TCP or UDP or Unux Socket Server Listen on a port

2001-11-16 Thread Dmitriy Kropivnitskiy
Can your systems ping each other?

On Thursday 15 November 2001 11:35 am, [EMAIL PROTECTED] wrote:
 I am having  Server Programs (for TCP,UDP,Unix Sockets) , that listen on a
 port number say , 9888 at
 10.10.1.4
 and they are being contacted by a Client (for TCP,UDP,Unix Sockets)  Linux
 machine from 10.10.1.1 .

 Both macines are on the LAN , nothing more nothing less . We have not yet
 gone for any higher stuff like DNS , etc . So , basically  10.10.1.4
 and 10.10.1.1 are not on any Linux network , but simply they identify and
 respond on the LAN.

 My Clients and Server (socket  programs) do not communicate at all on this
 network .

 Please guide me on what I should do .

 My line of thinking is : Add some  entry to the
 /etc/services   specifying the port , but this is what I tried and failed
 :- # At the bottom of /etc/services  :-
 tcp 9888/tcp
 a.out 9889/tcp

 Please help me get these programs to communicate .

 Warm regards,
 ([EMAIL PROTECTED])
 Shyam



Re: ftp behind firewall

2001-11-15 Thread Dmitriy Kropivnitskiy
Just load ip_conntrack_ftp module and you should be fine. That's for iptables.

On Thursday 15 November 2001 10:13 am, Paulo Henrique Baptista de Oliveira 
wrote:
 Hi all,
   I have two Debian Potato servers.
   I installed a firewall machine (real IP) and behind it instaled
 another machine (false IP - 10.0.0.*) with ftp service (proftpd).
   I redirect ftp port throught firewall and everything is working
 except that every ftp client have to access with passive directive.
   How to get ride of this?
   TIA,Paulo Henrique



Re: nvidia drivers kernel 2.4.14

2001-11-15 Thread Dmitriy Kropivnitskiy
Uhmm... I have NVIDIA drivers working on my 2.4.14 no problems.
I am running previous version of drivers though.

On Wednesday 14 November 2001 06:52 pm, Dimitri Maziuk wrote:
 * Dimitri Maziuk ([EMAIL PROTECTED]) spake thusly:
  * Kyle Girard ([EMAIL PROTECTED]) spake thusly:
   Has anyone been able to get the nvidia drivers to work with the stock
   2.4.14 kernel?
  
   I've compiled the drivers many times before but it just doesn't want to
   work with this kernel ... no matter what I do I get unresolved
   symbols... i've tried using the kernel headers in the kernel-source
   package and the kernel-headers package but nothing works
 
  It's not supposed to. Search kernel mailing list archives for
  details. (And email nvidia, ask them to update the drivers.)

 (Seeing that someone has it working) actually, I've seen messages
 about nvidia drivers not working on 2.4.14 on the kernel list, but
 I haven't tried that myself (I have other problems with 2.4.14).

 Dima



OT: Hardware upgrades

2001-11-15 Thread Dmitriy Kropivnitskiy
I have just upgraded my box ( unstable about 3-4 months berhind on the 
updates ).  The upgrade was from PII 233 BX chipset motherboard to Athlon 
1800+ XP VIA KT266A motherboard. The problem seems to be the following:

1. I cannot boot off the hard drive. It will see all the partitions and 
system will work fine once booted from floppy/CDROM. It will install and 
reinstall LILO without any problems. But every time I try to boot off of HD I 
get there is not boot device insert bootable disk and press enter or 
something. If anyone has any suggestions I would truly appreciate.

2. What driver should I use for the sound card?



Re: ftp behind firewall

2001-11-15 Thread Dmitriy Kropivnitskiy
There should be a module named ip_masq_ftp.

On Thursday 15 November 2001 01:00 pm, Paulo Henrique Baptista de Oliveira 
wrote:
 Hi,
   I'm using 2.2.* series. Do you know what module I can load?
   TIA,Paulo Henrique
 Em Thu, 15 Nov 2001 10:32:00 -0500, Dmitriy Kropivnitskiy

 [EMAIL PROTECTED] escreveu:
  Just load ip_conntrack_ftp module and you should be fine. That's for
  iptables.
 
  On Thursday 15 November 2001 10:13 am, Paulo Henrique Baptista de
  Oliveira
 
  wrote:
   Hi all,
 I have two Debian Potato servers.
 I installed a firewall machine (real IP) and behind it instaled
   another machine (false IP - 10.0.0.*) with ftp service (proftpd).
 I redirect ftp port throught firewall and everything is working
   except that every ftp client have to access with passive
 
  directive.
 
 How to get ride of this?
 TIA,Paulo Henrique



Re: OT: Hardware upgrades

2001-11-15 Thread Dmitriy Kropivnitskiy
On Thursday 15 November 2001 04:16 pm, Erik Steffl wrote:
 Dmitriy Kropivnitskiy wrote:
  I have just upgraded my box ( unstable about 3-4 months berhind on the
  updates ).  The upgrade was from PII 233 BX chipset motherboard to Athlon
  1800+ XP VIA KT266A motherboard. The problem seems to be the following:
 
  1. I cannot boot off the hard drive. It will see all the partitions and
  system will work fine once booted from floppy/CDROM. It will install and
  reinstall LILO without any problems. But every time I try to boot off of
  HD I get there is not boot device insert bootable disk and press enter or
  something. If anyone has any suggestions I would truly appreciate.

   first the obvious: check bios settings,

What am I looking for? The major difference is that BX didn't support 
advanced ATA modes so my HD used to be ATA33 and now it is ATA66.


   now just slightly less obvious:  make sure lilo is installed on mbr
 (at least I think that's where it needs to be, check the docs for lilo)

It is installed in MBR. I have tried to clean it out with DOS fdisk /mbr and 
reinstall and it still doesn't work. I use 'lba32' flag and stuff.


  2. What driver should I use for the sound card?

   what soundcard do you have? Is it the onboard one? ac97 or something
 like that is often found on via motherboards, there's a driver for that
 chipset for linux (at least alsa), but the sound quality is quite poor
 (at least that's my observation and also confirmed by other people on
 this list)

Yes, I was talking about the internal one.


   erik



Re: using grub to install mbr on other hard drive.

2001-11-15 Thread Dmitriy
On Thu, Nov 15, 2001 at 01:39:58PM -0800, Adam Shand wrote:
 
 hey.
 
 i'm building a debian disk image as a linux based 802.11b access point
 (using jouni malinen's host ap mode drivers).  basically at this point it
 works but i'm trying to convert from lilo to grub because as i become
 familiar with it i like it a lot better.
 
 this image will be batch loaded onto fujitsu stylistic 1000's (which have
 a type 3 pcmcia hard drive).  so the basic procedure will be:
 
  * put pcmcia drive in laptop (shows up as /dev/hde)
  * cfdisk /dev/hde
  * mke2fs /dev/hde1
  * mount /dev/hde1 /mnt
  * tar Ixvf image.tar.bz2 /mnt
  * install mbr onto drive so it's bootable
 
 and here's where i get stuck.  i can make it work with lilo but i can't
 figure out how to do it with grub.  can anyone point me in the right
 direction please?
See man page for grub-install(8) .

Pay special attention to  --root-directory=DIR option, since GRUB needs to put
some stuff under DIR/boot .

I hope that helps.

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

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpf1V6ozO6EZ.pgp
Description: PGP signature


Re: Will the Progeny graphical install process inspire our developers ?

2001-11-15 Thread Dmitriy
On Thu, Nov 15, 2001 at 02:03:23PM +0100, spear wrote:
 Hi there !
 
 I was wondering : a few weeks ago, i contacted Steve Schaffer from Progeny,
 about the graphical installation process of the Progeny Debian, wondering if
 they would let it to our community ...
 He said yes ...
 
 So, did anybody hear about it's amelioration, and, maybe, future integration
 in our favorite distribution ?
 
 Even if, once you installed it many times, it seems easy, i force myself not
 to forget how lost i felt when i installed it for the first time (not very 
 inspiring  procedure when you come from Mandrake).
 
 So, let's have the choice of installing by the old way we know (and i'll
 keep on using it), but open our Debian to a more  end user  world by
 helping people to join our community  more easily  ...
 
 What do you think ? Does anyone know if our developers intend to put a
 graphical install one day (not criticizing, they work har, just wondering) ?
What exactly does make a GUI install easier?

It is a lot more hassle, and not much use.

I agree that installer can be made more userfriendly proably for some 
people, but there can be a nice Curses based install.

I think many people on this list share this point of view :-)
 
 Mathias
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255
* encrypted personal mail is very much preferred *
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp6a9JzprrC3.pgp
Description: PGP signature


Re: screen blows up!

2001-11-15 Thread Dmitriy Kropivnitskiy
It is a stupid suggestion, but do you have any of those pesky ViewPort lines 
in your XF86Config? If yes, delete all of them, if no your fate lies the way 
of Video-Timing-HOWTO. How horrible.

On Thursday 15 November 2001 05:09 pm, Hans wrote:
 Running xvidtune is kind of difficult because I can't get to the buttons
 because of the bloated screen. Any more suggestions? --Hans

 At 08:30 AM 11/14/01 -0600, Brooks R. Robinson wrote:
 |-Original Message-
 |From: Hans Fong [mailto:[EMAIL PROTECTED]
 |Sent: Wednesday, 14 November, 2001 05:37 AM
 |To: debian-user@lists.debian.org
 |Subject: screen blows up!
 |
 |
 |Okay, it's not that bad, it's only the screen size.
 |I'm trying to save an old Compay 75 MHz Pentium for
 |Linux box at work. Installed Potato, X ran fine.
 |Upgraded to Woody (testing), ran xf86config, X came
 |up, but only left-lower quarter of the screen. I wear
 |glasses already, so no need for a blown-up desktop.
 |Any idea's on how to fix this?
 |
 |I tried a Trident and Tseng ET3000 and both have the
 |same problem.
 |
 |Please CC as I'm at work. Thanks.
 |
 |Hans
 
 Greetings,
  I had a similar problem.  I ran xvidtune to get it to look right.  Once 
  I
 had the settings properly record, then I modified my /etc/X11/XF86Config-4
 to include and use a custom mode:
 
 Section Monitor
 Identifier  Compaq QVision 172
 HorizSync   31.5-82
 VertRefresh 50-110
 Option  DPMS
 Mode Good_1024x768
 DotClock94.50
 HTimings1024 1072 1168 1376
 VTimings768  769  772  860
 Flags   +hsync +vsync
 EndMode
 EndSection
 
 Section Screen
 Identifier  Default Screen
 Device  Diamond SpeedStar A200
 Monitor Compaq QVision 172
 DefaultDepth24
 SubSection Display
 Depth   24
 Modes   Good_1024x768
 EndSubSection
 EndSection
 
 Now it works fine!
 
 HTH,
 
 Brooks



Re: CDROM related

2001-11-15 Thread Dmitriy Kropivnitskiy
Shouldn't be any.

On Thursday 15 November 2001 12:33 pm, Jeffrin wrote:
  Hello all ,

  Is there any problem if a hurd related iso image  is written to a
  CDROM using Microsoft Windows NT.



Re: ALSA: woody alsa drivers?

2001-11-07 Thread Dmitriy
On Tue, Nov 06, 2001 at 11:15:51PM -0800, Karsten M. Self wrote:
 I'm trying to configure a Cirrus Logic 4614-series driver, understand
 that it wants ALSA, but the alsa-drivers packages are AWHOL.
 
 $ lspci
 00:06.0 Multimedia audio controller: Cirrus Logic CS 4614/22/24
 [CrystalClear SoundFusion Audio Accelerator] (rev 01)
 
 Best I can figure, the alsa-modules components aren't in Woody at the
 moment.  I'm not quite clear on best means to configure them under
 Debian either.  Enlightment or references?
Take a look at alsa-source package.

Last time I used alsa was a long while ago,
but as far as I remeber it was easy to compile your own modules
(and AFAIK you have to if you use custom kernel).

See documentation for that package, it describes in detail how to use
kernel-package to roll your own deb with modules.

Hope that helps.
 
 Thanks.
 
 -- 
 Karsten M. Self kmself@ix.netcom.com   http://kmself.home.netcom.com/
  What part of Gestalt don't you understand? Home of the brave
   http://gestalt-system.sourceforge.net/   Land of the free
Free Dmitry! Boycott Adobe! Repeal the DMCA! http://www.freesklyarov.org
 Geek for Hire http://kmself.home.netcom.com/resume.html



-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpr1HkvNBnSR.pgp
Description: PGP signature


Re: Doing on Windows what dmesg does on Linux

2001-10-31 Thread Dmitriy
On Wed, Oct 31, 2001 at 11:17:35AM +0530, [EMAIL PROTECTED] wrote:
 Dear members, 
   On Linux systems you can do a dmesg to
 get what the system is chattering at the boot up.
 What corresponding thing can I get done on 
 Windows (98 or 2K/NT).
Install UNIX on it.

This list is about Debian, and not about windows or anything.

Please ask on Windows mailing list.


 
 Warm Regards,
 ([EMAIL PROTECTED])
 Shyam
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpavdsBx43r2.pgp
Description: PGP signature


Re: Green blinking 'D' in console

2001-10-22 Thread Dmitriy
On Mon, Oct 22, 2001 at 10:13:19AM -0700, Erik Steffl wrote:
 wayne wrote:
  
  Hi Aaron,
  I run RedHat and I get the same thing.
  I don't have a solution for you.
  Wayne
  
  Aaron Maxwell wrote:
  
   Hi.  I'm running yesterday's sid.  In the console, occasionally a green
   blinking 'D' will appear at a certain position on the screen.  When and 
   where
   it appears seems to be random.  It will scroll and can be 'overwritten', 
   just
   like normal text.
  
   I've seen this about  8 times in the past six days (I apt-get update every
   day or three)..  It's always a green blinking 'D', never another
   letter|color|state.
  
   Anyone experienced this?  Anyone know what might be causing it?
 
   I've seen it too, don't remember exact situation, I think it usually
 appears when I'm shutting down and X server exits. I don't remember
 seeing it in other cases (e.g. just switching to console) but I don't
 use concole (VTs) much...
 
   I have voodoo III, X 4.x, don't remember seeing it with X 3.x
 
   what video cards do you (=who had seen the mysterious green D) have?
 
   erik
Voodoo 3 2000 PCI, same thing here. :-(

Happens when switching from X to VT.

I have no idea either why is this happening, but it is extremely
annoying.

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

-- 
GPG key-id: 1024D/DF04A255 Dmitriy
AA16 8FAB 74E1 3511 83D0  9F4B F087 CEC9 DF04 A255

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp4cHdPUkIvB.pgp
Description: PGP signature


Re: Dockable bandwidth monitors?

2001-10-18 Thread Dmitriy
On Thu, Oct 18, 2001 at 10:45:32AM -0700, Paul 'Baloo' Johnson wrote:
 I'm looking for something similar to the look of wmavgload, that will
 dock in wharf, that will do preferrably a line graph showing percentage
 of the pipe being used on a particular (virtual) interface.
 
 Is there anything like this or similar to this?

Give wmnd a shot.  Imo works great.

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

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp7LnrX7AaiF.pgp
Description: PGP signature


Re: Galeon in unstable

2001-10-16 Thread Dmitriy
On Mon, Oct 15, 2001 at 05:57:47PM -0700, Karsten M. Self wrote:
 on Mon, Oct 15, 2001 at 03:57:10PM -0700, Patrick Lane ([EMAIL PROTECTED]) 
 wrote:
  I'm trying to apt-get install galeon in unstable. It's telling me that 
  it needs mozilla-browser 0.9.5 and that mozilla-browser 0.9.5-2 is to be 
  installed. Anything I can do?
 
 I've grabbed the relevant debs from unstable and resolved dependencies
 by hand.
Worked fine for me with 0.9.5 .
I've just compiled new upstream, and it works well too.



 
 -- 
 Karsten M. Self kmself@ix.netcom.com   http://kmself.home.netcom.com/
  What part of Gestalt don't you understand? Home of the brave
   http://gestalt-system.sourceforge.net/   Land of the free
Free Dmitry! Boycott Adobe! Repeal the DMCA! http://www.freesklyarov.org
 Geek for Hire http://kmself.home.netcom.com/resume.html



-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpSqoR2RZkMG.pgp
Description: PGP signature


Re: Lock ups with kernel 2.4.10 2.4.12

2001-10-14 Thread Dmitriy
On Sun, Oct 14, 2001 at 02:46:33PM -0500, Dimitri Maziuk wrote:
 * Morgan Terry ([EMAIL PROTECTED]) spake thusly:
  I know this probably isn't debian related, but I figured I'd ask
  here anyway.  My system is locking solid whenever I either (a)
  exit X windows, or (b) switch to a VT from X (i.e. Ctrl-Alt-F2),
  or (c) the console blanker comes on.  I have this happen with
  kernels 2.4.10 and 2.4.12.  I am running 2.4.8 right now, and I
  don't get the lockups with this kernel.  I haven't tried 2.4.9.
  I've searched google (web and groups) with no success.  Anyone
  know what's up with this?
 
 I haven't seen this with 2.4.10, but I had one lock-up with 2.4.12 
 when switching from X to vc (and I think Midnight Commander started 
 screen saver on that vc). No idea what's causing it, 
 CONFIG_APM_DISPLAY_BLANK is my main suspect.
 
I still have 2.4.10, and seen the following behavior.

I did 2 things:
Unset XMMS to use realtime priority
Unapplied preemptive patch.

I don't know if one of those things really fixed anything,
But it works now, and I didn't have the time to expirment 
with it.
Switching to X and back works fine, although I haven't tried MC's
screensaver.

I don't know if you use XMMS or not but perhaps that's on of the
things to try.
 Dima
 -- 
 The wombat is a mixture of chalk and clay used for respiration.  -- 
 MegaHal
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpeLej8ipInp.pgp
Description: PGP signature


Re: JPEG or GIF background in fvwm?

2001-10-13 Thread Dmitriy
On Sat, Oct 13, 2001 at 12:17:43AM -0400, Marc Shapiro wrote:
 This is somewhat off-topic, but can anyone point me in the right
 direction to finding out how to use a .gif or .jpeg file as a desktop
 background in fvwm?
Either Esetroot from eterm (i think that's where it is)
or xsetroot. But I am not sure which formats xsetroot suports, 
but Esetroot supports jpeg at least.
Hope that helps.

 
 TIA
 -- 
 Marc Shapiro If you drink melomel every day,
 [EMAIL PROTECTED]you will live to be 150 years old,
 Please visit The Meadery at:   unless your wife shoots you.
 http://www.bigfoot.com/~m_shapiro/   -- Dr. Ferenc Androczi, winemaker,
  Little Hungary Farm Winery
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpwTMPF8y0iP.pgp
Description: PGP signature


Re: .Xdefaults or .Xsession ( Test-post)

2001-10-12 Thread Dmitriy
On Fri, Oct 12, 2001 at 02:21:04AM +0200, Josef Oswald wrote:
 Hi all:-) 
Hi!
 
 First off I would like to thank all those people who made Debian to
 what it is now :-) Right now I do use Progeny-Debian, and I like what
 I see. 
 
 A couple of questions though:
 Which version ofg Debian does Progeny use, can I install or mix
 packages from different distributions?
 
Progenny AFAIK took an unstable branch back when it was still called
woody ( if I am not messing up on chronology here), did some work on
it , and  released.  I would not recommend mixing progeny and and
unstable/testing.  You can probably upgrade from progeny to unstable/testing.
I never used progeny, so I don't know if it will work out well.


 Does Debian  use .Xdefaults or Xsession as the X-Configuration file?
Depends on what you mean by X-Configuration file, because they have
different uses.

Progeny and debian should be similar, becase chief X guy, Branden,
works (at least worked) at Progeny, and does a splendid job on X
packages. 
 
 Did this message make it to the list?
yes :-)
 
 Actually this is also a Test-post to see if my News-reader (Gnus) does
 work properly :-)
 
 -- 
 LinuxUser aka Josef Oswald [EMAIL PROTECTED] 
 registered-linux-user # 134.818 at http://counter.li.org
 
 The box said Windows, NT or better, so I installed Linux :-) 
 
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpib283Tw6ZS.pgp
Description: PGP signature


Re: X stopped working

2001-10-09 Thread Dmitriy
On Tue, Oct 09, 2001 at 05:57:42PM -0400, Sean Kelleher wrote:
 Hi folks,
 
 i'm experiencing some problems with X. i'm running sid, and using
 kde for my desktop environment. kdm handles logins. after doing an
 apt-get update  apt-get dist-upgrade + reboot, i can no longer log
 in via kdm. when i try to login, the X server just restarts and i'm
 presented with the kdm login screen again. i have also tried switching
 to xdm with the same results.
 
 FYI my xfree86-common install is 4.1.0-7.
 
 any help that can be given in resolving this problem is much
 appreciated.
If you are using unstable, read debian-devel.
It has been already discuissed:

There is a bug in /etc/X11/Xsession.d/99xfree86-common_start in
4.1.0-7:

Change:

exec $REALSTARTUP

to:

exec $REALSTARTUP



Hope that helps.
 
 TIA,
 Sean
 -- 
 The discovery of vinyl alcohol is significant
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpcQcwbRgYk5.pgp
Description: PGP signature


Re: need help! dpkg corrupted!

2001-10-08 Thread Dmitriy
On Mon, Oct 08, 2001 at 12:10:06PM -0400, James D. Freels wrote:
 I have a major problem with my Debian/Testing/Alpha
 system.  In the process of updating my system today
 via apt-get, apparently dpkg segfaulted.  Apparently
 due to this segfault, my dpkg-dependent files are
 corrupt.  For example, if I issue dpkg -l, I get
 an empty response.  If I issue a manual dpkg command
 on an individual package, I get a response such as
 
 fea6:/var/cache/apt/archives# dpkg -i zip_2.30-3_alpha.deb
 (Reading database ... 0 files and directories currently installed.)
 Unpacking zip (from zip_2.30-3_alpha.deb) ...
 dpkg: error processing zip_2.30-3_alpha.deb (--install):
  unable to create updated files list file for package zip: No such file 
 or directory
 Errors were encountered while processing:
  zip_2.30-3_alpha.deb
 fea6:/var/cache/apt/archives#
 
 This is a major problem that I do not know how to fix.
 
 How do I fix this?  Help is appreciated!
 
I would suugest you look at your dpkg files,
And see wehich ones of them are hosed.

Then look at /var/backups, and see if some previous versions of the
corrupted files are there, and if so, try to use them, althou they
may-be a little bit out of date. And backup all the current files
before attempting any changes.

This can be dangerous, so make sure you know what you're doing!

I hope that can help your problem.
Again, be very careful.


 -- 
 James D. Freels, P.E._i, Ph.D.
 Oak Ridge National Laboratory
 [EMAIL PROTECTED] - work
 [EMAIL PROTECTED] - home
 
 
 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpKd8k1g7fMj.pgp
Description: PGP signature


Re: update

2001-10-03 Thread Dmitriy
On Tue, Oct 02, 2001 at 05:58:33AM -0400, Antonio Rodriguez wrote:
 1. Change your apt-get sources file to reflect unstable
 2. apt-get update
 3. apt-get dist-upgrade
 3. Answer no to question: Delete not needed packages? For nicer handling,
 use apt-move.
 4. This list is in English, so, if you want good and many answers, ask in
 English.

I suggest you use debian-russian@lists.debian.org instead for
questions in russian.


 - Original Message -
 From: admin [EMAIL PROTECTED]
 To: debian-user@lists.debian.org
 Sent: Tuesday, October 02, 2001 4:29 AM
 Subject: update
 
 
  Добрый день
 
  Подскажите пожалуйста, как я могу постоянно обновлять свою версию debian
 до
  ветки
  unstable(KDE, Gnome  и т.д.), с удовлетворением всех зависимостей. И, если
  можно, чтобы загруженные пакеты сохранялись на диске.
 
  Заранее СПАСИБО
 
  Avatar
 
 
 
  --
  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]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpCwBVj4rzre.pgp
Description: PGP signature


Re: dual boot with Win 2000?

2001-10-03 Thread Dmitriy
On Wed, Oct 03, 2001 at 04:02:38PM -0500, Lance Heller wrote:
 X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4
 To: debian-user@lists.debian.org 
 Subject: dual boot with Win 2000?
 Reply-To: [EMAIL PROTECTED]
 Cc: 
 
 Work requires I use Windblows 2000.  Other linux users with whom I 
 work report that while they've successfully built dual boot W95/W98 
 boxen, they've had no success with W2000, apart from a separate boot 
 disk of course.  I expect shortly to begin a linux install into  
 virgin extended partition.  While I've made a number of W95/W98 dual 
 boot boxes booting through lilo, what W2000 specifice problems should 
 I expect?
 
 Thanks for your help.
 
Myself, I have GRUB in MBR on the same disk W2K is.
And second HDD is linux.

It works flawlessly.
tell me if you want more info.

 
 Lance
 
 
 
 --
 Lance Heller   [EMAIL PROTECTED] 
 --
 
 
 -- 
 047CF18A: 55F1 FF14 0620 1B7F A82E  B5F8 3C94 02F7 047C F18A
 8B7C7901: 424F 17DB 5683 6A18 CDD6  6C65 5E1E 9F86 8B7C 7901
 5F648A7E: 8B86 24FB 1CD9 C997 C2A3  9E5D 16BD 5F7F 5F64 8A7E
 
 



-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpfJB7rgUc0k.pgp
Description: PGP signature


Re: Memory problems, zombie processes

2001-09-30 Thread Dmitriy
On Sun, Sep 30, 2001 at 02:04:12PM +, Dope on Plaztic,,, wrote:
 Hi
 
 Please forgive me as this is my first post but i think i have the format 
 right ;
 
 I have been experiencing problems on my Debian box(2.2r2, sid dist. pIII 
 500mhz 128mb ram).  The problems include 'zombie processes', ie issuing a 
 'cat' of a file, and it does not happen, so i  have to ctrl+c and i see 'cat 
 defunct' in a `ps` output.  I've experienced other problems too, concerning 
 'wait' and 'no child process' errors.
 
 The following example is from `make`, when making a new kernel, althought 
 i've experience the same errors with `tar`, among others.
 
 make[1]: Entering directory `/usr/src/linux/arch/i386/boot'
 rm -f tools/build
 Putting child 0x08074140 (clean) PID 745 on the chain.
 Live child 0x08074140 (clean) PID 745
 make[1]: *** wait: No child processes.  Stop.
 make[1]: *** Waiting for unfinished jobs
 Live child 0x08074140 (clean) PID 745
 make[1]: *** wait: No child processes.  Stop.
 Got a SIGCHLD; 1 unreaped children.
 Reaping losing child 0x0808a928 PID 744
 make: *** [archclean] Error 2
 Removing child 0x0808a928 PID 744  from chain.
 ([EMAIL PROTECTED]):/usr/src/linux#
 
 that is a `make` with the debug flag, for better understanding of what is 
 going on(i dont get it!).  Me and a few friends have tried to figure out what 
 the problem is, but to no avail.  Trying new ram, etc has not worked.  The 
 thing is, i 've experienced these errors with two Debian computers i have, so 
 i  get the idea its something i have done -- i have NO clue what!.  
 
 Please email me if you need any more info, i will keep a sharp eye on the 
 list other the week to see replies. 

Hmmm...If you tried to change  RAM, perhaps it is something on the
motherboard that makes RAM malfunction?

I hope you are not overclocked.

I suggest you try memtest86 package,
which put a memtest86 image in your /boot , which you can boot and
let it run for a while.

Maybe that will help.

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

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpqDZZcaeOI2.pgp
Description: PGP signature


Re: Wine 0.0.20010824-1 won't even run sol.exe

2001-09-28 Thread Dmitriy
On Fri, Sep 28, 2001 at 08:57:58AM +0200, David Knudsen wrote:
 wine _always_ fails with the attached error message.  Has anyone seen
 anything similar?
I don't think you attached the message, or it got lost along the way.

Perhaps you should try to use 'winesetuptk' package to set up a
built-in wine system (not relying on external windows dlls)


 
 Wine is installed with mostly defaults on a woody system, but is using files
 from an existing windows 95 installation.
 
 I've even tried pointing it to a different, fresher, windows 95 installation
 (yes, I have several on different partitions).  Same result.
 
 The error _might_ have started just after I upgraded from kernel 2.2.19 to
 kernel 2.4.9, which I compiled myself using make-kpkg.  Any specific config
 options I should look out for?
 
 -- System Information
 Debian Release: testing/unstable
 Architecture: i386
 Kernel: Linux hal 2.4.9 #1 Tue Sep 11 13:09:19 CEST 2001 i586
 Locale: LANG=no_NO, LC_CTYPE=no_NO
 
 Versions of packages wine depends on:
 ii  debconf   1.0.00 Debian configuration management
 sy
 ii  libwine   0.0.20010824-1 Windows Emulator (Library)
 ii  xbase-clients 4.1.0-6miscellaneous X clients
 ii  xbase-clients [xcontrib]  4.1.0-6miscellaneous X clients
 
 Thank you for any help, ideas, musings, ramblings or pointers in the right
 direction.
 
 
 David Knudsen,  
 new to linux, chose Debian mostly because of apt and stability
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpobsIUbqKBc.pgp
Description: PGP signature


Preemptive kernel patch?

2001-09-24 Thread Dmitriy
Hi everyone,

I was experimenting with preemptive kernelpatch for 2.4.10.

There are actually two patches:
patch-rml-2.4.10-preempt-kernel-1
patch-rml-2.4.10-preempt-ptrace-and-jobs-fix-2

If anyone else is using/trying it,
I applied both of them, but do I really need to apply the ptrace and jobs
fix patch ?

And url is :
http://www.tech9.net/rml/linux/  BTW.

Thank you.

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpLSuGvi8gBB.pgp
Description: PGP signature


Re: CD Burner permissions

2001-09-23 Thread Dmitriy
On Sun, Sep 23, 2001 at 03:45:07PM -0400, Stephen Gran wrote:

Are you sure that you want to send encrypted mail to this list and
expect an answer :-) ? 
-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgppp2RYNJXyf.pgp
Description: PGP signature


Re: text in menu bars has turned to hash marked boxes

2001-09-22 Thread Dmitriy
On Fri, Sep 21, 2001 at 07:19:00PM -0700, Marc Wilson wrote:
 Yes, see bugs 109480 and 109611 in the BTS.  Annoying, isn't it?
Uhh  Are u shure about #109480 ?
It says: #109480: ITP: yardradius -- Yet Another RADIUS Daemon 

 
 -
 Marc Wilson
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]
 http://www.moonkingdom.net/mwilson/
 
 
 - Original Message -
 From: joe golden [EMAIL PROTECTED]
 To: debian-user@lists.debian.org
 Sent: Friday, September 21, 2001 6:28 PM
 Subject: text in menu bars has turned to hash marked boxes
 
 
  text in menu bars has turned to hash marked boxes in the following
 programs:
  abiword, netscape, skipstone, gaby, the gimp, etc.
 
  I recently changed permissions (chmod 777) on my .netscape/bookmarks.html
  file after getting error saving bookmark file messages.  This seems to
  have caused this error.
 
  Is this a gtk related thing?
 
  Many thanks.
 
  Joe Golden
  The Stevens School of Peacham
  thestevensschoolofpeacham.com
 
 
  _
  Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
 
 
  --
  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]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpbnpeMArR1i.pgp
Description: PGP signature


Re: Newer Mozilla for Potato(2.2)

2001-09-22 Thread Dmitriy
On Fri, Sep 21, 2001 at 01:22:18PM -0700, Eric Richardson wrote:
 Hi,
 I was wondering if there is Mozilla package somewhere that is newer than
 the Debian M18 that is in the standard mirror locations. I want to try
 multizilla which would like 0.92 or 0.94.
I'm pretty sure you don't want to do this,
But I herad that Ximian GNOME has a newer mozilla for potato, 
but I don't know what version is there. Probably At least 0.9.1 .

Hope that helps.

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

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp7NuoWQwOc1.pgp
Description: PGP signature


Re: Daemontools

2001-09-21 Thread Dmitriy
On Fri, Sep 21, 2001 at 10:03:19PM -0400, Bob Hughes wrote:
 
 Is there a document on how to safely remove Daemontools?
  
 Bob Hughes
  
Please refrain from using HTML in this list.


-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpT7tiodMAy9.pgp
Description: PGP signature


Re: debian-user-digest Digest V101 #1495

2001-09-19 Thread Dmitriy
WTF is application/ms-tnef ???

[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Encoding: base64, Size: 3.7K --]

[-- application/ms-tnef is unsupported (use 'v' to view this part) --]



-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpV8FVU4AU12.pgp
Description: PGP signature


Re: what's the name?

2001-09-18 Thread Dmitriy
On Tue, Sep 18, 2001 at 10:24:15PM -0400, Jeff Maxson wrote:
 
 slink, potato, woody...what's going to be the name of the next testing?
Sarge AFAIK.  Not sure if it's official, but heard it from several
differnt sources.

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

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp4L8ob5zM46.pgp
Description: PGP signature


Re: Tiny fonts on Kylix OE

2001-09-11 Thread Dmitriy
On Mon, Sep 10, 2001 at 02:42:05PM -0500, Philippe Cl?ri?  wrote:
 On Monday 10 September 2001 12:51, Daniel de los Reyes wrote:
  Today I installed kylix open edition under Woody, but fonts on the gui
  look tiny. MAybe something wrong with my font server? Anybody else?
 
 I have a similar problem. But only the popup and dropdown menus are affected. 
 The editor and the dialog boxes are all right. It all started after I 
 installed TrueType fonts and xfs-xtt. Can't offer a fix though but I plan to 
 look at it... eventually.
 
Yes, I have the same problem too :-(

If anyone solves it, please post it to the list and maybe even CC me
:-)

I'll try removing TTF fonts from my fontpath when I have some free
time.


-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpYWIIVFabWh.pgp
Description: PGP signature


Re: Install Problems (Now in text!!!)

2001-09-08 Thread Dmitriy
On Sat, Sep 08, 2001 at 01:12:06PM -0500, Andy Ward wrote:
[nothing]


This time it is not a binary, but still HTML :-)
I'll post it for you:
Original messgage:

-
Sorry  for  the  HTML  posting... OWA 2000 doesn't let me select which
format I want.. =P

I  recently  switched my hard-disks over to RAID 0 on my iWill KK266-R
(AMI  IDE MegaRAID controller, which is based on a CMD649 chip), but I
cannot  for  the life of me figure out how to get the install disks to
work.  I'm  trying  to install 2.2r3, using images provided (mind you,
I'm bootinglinuxusingloadlin). Anyonehavean
suggestions/comments/flames/images I could use?

Thanks!

   -- andyw
-   
   

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpHRKGOLMYLL.pgp
Description: PGP signature


Re: fetchmail question

2001-09-07 Thread Dmitriy
On Fri, Sep 07, 2001 at 03:06:42AM +, john smith wrote:
 Hi,
 
 a question on fetchmail
 
 1. I have created my $.fetchmailrc file via fetchmailconf and set daemon at 
 60..(that's in seconds right?) and sent myself a test message but 
 bizarringly fetchmail doesn't go get it even after 10 minutes until I tell 
 fetchmail to go check my mail! I don't know what's going on...
 
Try to isolate proplem first.

There is either dealy untill your mail gets into your mailbox ( none
of fetchmail's business), or whether fetchmail doesn't take it for a
long time.

So I suggest send yourself a message (and watch your mail-daemon logs
for any anomalies) and run 'fetchmail -d0' (runs fetchmail, but
ignores damon setting in .fmrc), and see how fast it gets there.
If everytime you run it, it says something like no messages for user
at mail.foo.org , then mail is not coming into your mailbox, but if
this works almost right away, and fetchmail daemon just doesn't get
your mail, it's fetchmail problem.


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

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpgQQCGyUrji.pgp
Description: PGP signature


Re: Install Problems...

2001-09-07 Thread Dmitriy
On Fri, Sep 07, 2001 at 05:22:10PM -0500, Andy Ward wrote:
[nothing]


Please refraun from using HTML in mail lists. It is depricated.
-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgp5PZrcl5cOd.pgp
Description: PGP signature


Re: Help installing Debian 2.2r17

2001-09-05 Thread Dmitriy
On Wed, Sep 05, 2001 at 04:16:46PM +1000, Matthew Dalton wrote:
 Hall Stevenson wrote:
 
  No worries here... Using seperate physical drives makes things
  much easier. This will actually be a LILO 'issue', but it can
  handle it just fine. One thing: Install Lilo to your 'first'
  (/dev/hdaX) hard disk's MBR.
 
 Don't install LILO to the MBR! If Windows 2000 is anything like NT (it
 is supposed to be NT 5, after all), you will need to setup Linux to boot
 from the Windows 2000 bootloader.
 
 If you install LILO to the MBR, you will likely render your Windows 2000
 installation unbootable.
 
 This howto tells you what to do for a Windows NT/Linux dual boot
 machine. Read it and see if it can apply to Windows 2000 as well.
 
 http://www.linuxdoc.org/HOWTO/mini/Linux+NT-Loader.html
 
I really don't know about LILO with this,
but I have GRUB in my MBR, and it is able to load W2K using 
chainloader  +1 , but I am not sure if LILO will be able to load it.



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

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpYToZ26c0N0.pgp
Description: PGP signature


Re: Does official redhat 7.1 have any exploit?

2001-09-05 Thread Dmitriy
On Wed, Sep 05, 2001 at 07:03:55AM -0400, Tom Allison wrote:
 If I did, why would I tell you?

Because he desperatly needs to root someone's RH box, and doesn't have
any time to search online :-) ?



 
 Tao Liu wrote:
 I find a machine runs redhat7.1(2.4.2) and telnet.
 Do you know any known exploit of redhat 7.1?
 
 _
 Do You Yahoo!?
 Get your free @yahoo.com address at http://mail.yahoo.com
 
 
 
 
 
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact 
 [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpvxq1HPdPeU.pgp
Description: PGP signature


Re: Java 1.3.1 for stable (2.2) ?

2001-09-04 Thread Dmitriy
On Tue, Sep 04, 2001 at 08:05:34AM +0200, Danie Roux wrote:
 On Mon, Sep 03, 2001 at 01:33:06PM +0200, Eugene van Zyl wrote:
  Hi,
  
  Does anyone know where I can get .deb's for Java 1.3.1 or 1.2.2 for Potato 
  2.2 ?
  
  Thanks,
  Eugene van Zyl
 
 Don't know about Potato, but as mentioned already, blackdown is the place for 
 Java-for-Linux.
 
 Put this in you sources.list:
 
 # Blackdown Java
 deb http://www.mirror.ac.uk/sites/ftp.blackdown.org/java-linux/debian woody 
 non-free

s/woody/potato/

If you don't want to upgrade to testing/unstable...

 
 -- 
 Danie Roux *shuffle* Adore Unix
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpdBVO7r0key.pgp
Description: PGP signature


Re: Java 1.3.1 for stable (2.2) ?

2001-09-04 Thread Dmitriy
On Tue, Sep 04, 2001 at 01:58:36PM -0400, dman wrote:
 On Mon, Sep 03, 2001 at 11:09:42PM -0700, Dmitriy wrote:
 | On Tue, Sep 04, 2001 at 08:05:34AM +0200, Danie Roux wrote:
 ...
 |  Put this in you sources.list:
 |  
 |  # Blackdown Java
 |  deb http://www.mirror.ac.uk/sites/ftp.blackdown.org/java-linux/debian 
 woody non-free
 | 
 | s/woody/potato/
 | 
 | If you don't want to upgrade to testing/unstable...
 
 The only packages at that server are the jdk packages.  You can't
 upgrade anything else by having that server pointing to woody in your
 sources.list.
 
No, but JDK on  that server depens on woody packages AFAIK.


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

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpmLi2upKa1U.pgp
Description: PGP signature


Re: ibook and debian

2001-09-03 Thread Dmitriy
On Mon, Sep 03, 2001 at 10:55:16AM +0200, LAMIRAULT Nicolas wrote:
 
 
 
 -- 
 Nicolas LAMIRAULT
Pretty hard to answer your question (could you give a little bit more
detail?)

But I suspect the answer is yes :-)


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

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Adobe put Dmitry in jail for the crime against 
society of revealing that they were selling 
ROT-13 as encryption. He is rotting in US prison 
as a political prisoner for speaking out. 
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpE6nc8V46qy.pgp
Description: PGP signature


Re: Mounting a windows partition with full access

2001-09-03 Thread Dmitriy
On Mon, Sep 03, 2001 at 10:02:03AM +0200, Guy Geens wrote:
  ace22b == ace22b  [EMAIL PROTECTED] writes:
 
  Eduard == Eduard Bloch wrote:
 
 Eduard Put umask=000 to the other options in /etc/fstab. man
 Eduard mount will tell you more about needed options, eg. gid or
 Eduard uid.
 
 ace22b I know it's '000', but why ?
 
 ace22b Why not 666? I was rather puzzled by this a couple of years
 ace22b ago...
 
 Umask is the `reverse' of the permissions. If a bit is set in the
 umask, it means `don't set this bit in the permissions of a new
 file/directory'.
 
 So, using umask=0 will give you all permissions bits set.
Ah, I c.

That makes sense. Thanks alot.


 
 -- 
 G. ``Iggy'' Geens - ICQ: #64109250
 Home: [EMAIL PROTECTED] - Work: [EMAIL PROTECTED]
 WWW: http://users.pandora.be/guy.geens/
 `I want quality, not quantity. But I want lots of it!'
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Adobe put Dmitry in jail for the crime against 
society of revealing that they were selling 
ROT-13 as encryption. He is rotting in US prison 
as a political prisoner for speaking out. 
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpsbsGM39NyU.pgp
Description: PGP signature


Re: news servers and port 119

2001-09-03 Thread Dmitriy
On Mon, Sep 03, 2001 at 05:47:13PM -0500, Paul B. Bertrand wrote:
 I recently upgraded to a generic 2.4.8-k6 kernel from a 2.2.17 kernel
 and found that I am no longer able to connect to my non-isp newsserver,
 namely giganews.  I am, however, still able to connect to my isp
 newsserver.  Initially, I thought this was a giganews or isp issue, but
 when I rebooted with my old kernel, I was able to connect to my
 giganews.
 
 Does anyone know why I wouldn't be able to connect to a newsserver
 outside of my isp?  I don't remember ever doing anything special in
 order to do this before, especially with the kernel.
 
 This is the error message I receive:
 
 Connecting to host news-central.giganews.com
  ...connection to 216.166.62.35, port 119:Connection refused
 Unable to make connection. Giving up.
 slrn fatal error:
 Failed to initialize server.
 
 I also tried using port 23 but that didn't work either.  Also, I am able
 to ping giganews with the new kernel.
 
Sounds like it couold be ECN.
Is it enabled in your kernel?

If so, try as root:

'echo 0  /proc/sys/net/ipv4/tcp_ecn'


I hope that helps you.
 Thanks for your help.
 
 Paul
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Adobe put Dmitry in jail for the crime against 
society of revealing that they were selling 
ROT-13 as encryption. He is rotting in US prison 
as a political prisoner for speaking out. 
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpCtBhb2IzjX.pgp
Description: PGP signature


Re: Programming in Java

2001-09-02 Thread Dmitriy
On Sun, Sep 02, 2001 at 07:57:52PM +0100, Jon Masters wrote:
 On 02 Sep 2001 14:34:56 -0400, Steve Dondley wrote:
 
  I'm interested in learning the Java programming language.
 
 I suggest aquiring a good book, a number of these are available :)
 
  What do I need to install the JVM and program in Java on my Debian
 
 There are a number of JDKs available for Debian GNU/Linux. Many seem to
 like using the IBM/Sun Java Development Tools, however that's purely
 personal preference - you might also give some thought to various
 runtime JREs though, kaffe is good if you're not developing Swing GUIs.
 
Or I suggest you get balckdown JDK.
get it by becoming root, then type:

echo deb ftp://ftp.tux.org/pub/java/debian potato non-free 
/etc/apt/sources.list (all one line)

apt-get update

apt-get install j2sdk1.3


 Have a look the packages jikes and ibm-fdk1.1-installer for example.
 
 You're also going to want emacs and maybe Apache/Tomcat for
 Servlets/JSP. Pretty soon you'll hate Java like everyone else :)
 
 --jcm
 
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Adobe put Dmitry in jail for the crime against 
society of revealing that they were selling 
ROT-13 as encryption. He is rotting in US prison 
as a political prisoner for speaking out. 
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgphrttbTghsg.pgp
Description: PGP signature


Re: Mounting a windows partition with full access

2001-09-02 Thread Dmitriy
On Mon, Sep 03, 2001 at 12:40:24AM +0200, Eduard Bloch wrote:
 #include hallo.h
 Raffaele Sandrini wrote on Mon Sep 03, 2001 um 12:21:34AM:
 
  The right are set defaultly set to 755 for all files. So only Root can 
  write.
  I want that it will be mounted with 666 rights set. How can i make that?
 
 Put umask=000 to the other options in /etc/fstab. man mount will
 tell you more about needed options, eg. gid or uid.

I know it's '000', but why ? 

Could someone please explain it to me?

Why not 666?
I was rather puzzled by this a couple of years ago...

 
 Gruss/Regards,
 Eduard.
 -- 
 begin LOVE-LETTER-FOR-YOU.txt.vbs
 Ich bin ein Signature Virus. Verbreite mich!
 End
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Adobe put Dmitry in jail for the crime against 
society of revealing that they were selling 
ROT-13 as encryption. He is rotting in US prison 
as a political prisoner for speaking out. 
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpqrN7E3dPVH.pgp
Description: PGP signature


Re: mounting CDs? and emacs under SU?

2001-09-02 Thread Dmitriy
On Sun, Sep 02, 2001 at 09:24:58PM -0400, Stephen Gran wrote:
 Thus spake Peter Christensen:
  I'm still learning about the basics of Linux, so please excuse a very
  basic question:  If I want to access a CD do I need to add a line to
  /etc/fstab:
  
/dev/cdrom /cd iso9660 ro,user,noauto,unhide
  
  and then under superuser type:
  
mount -t iso9660 /dev/cdrom /cdrom
  
  This is how I did it (I think!) before my hard drive crashed and I had
  to replace it.  Now that I've reloaded Linux I can't edit /etc/fstab
  with emacs.  Emacs works OK with a normal signon, but under SU I get the
  following messages:
  
Xlib:  connection to :0.0 refused by server
Xlib:  Invalid MIT-MAGIC-COOKIE-1 key
emacs:  Cannot connect to X server :0.0
check the display environment variable or use -d
Also use the 'xhost' program to verify that it is set to permit
  connections from your machine
  
  So...  two questions:  Do I always need to type the full mount command,
  or is there a shortcut for this?  And how can I get emacs to work under
  Superuser?
 
 It looks like your /etc/fstab is OK - you should be able to mount as a 
 normal user - try mount /cd.  That's what the 'user' in the 4th column 
 means.  As for the emacs problem, I'm out of my depth, at least without
 some more information (and probably then as well) - but - are you doing
 this in an X session?  Are you running emacs or xemacs?  This might help
 to sort things out with someone who knows more about this.  I'm pretty new
 myself.
 Good luck,
 Steve
when you open up normal emacs with DISPLAY variable set, it tries to
create it's own window (and I repeat emacs, not Xmeacs).  So you just
have to figure out how to allow root from su session to conncet to
xserver. look at xhost as advised.

lame joke
and after you are sufficiently frustarated with Eight Megs And
Continuously Swapping , you cay try vim :-) (no flames plz, it's just
a joke, OK?)
/lame joke


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

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Adobe put Dmitry in jail for the crime against 
society of revealing that they were selling 
ROT-13 as encryption. He is rotting in US prison 
as a political prisoner for speaking out. 
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpr60cDwI77x.pgp
Description: PGP signature


Re: mutt and PGP query

2001-09-01 Thread Dmitriy
On Sat, Sep 01, 2001 at 08:29:34PM -0600, Dean Allen Provins wrote:
 Hello:
 
 I have been trying to encrypt messages with PGP 6.5.8 when using mutt
 to no avail.  Signing, and decoding seem to work fine, but mutt
 cannot seem to locate the correct key for encoding.
 
 When sending (after indicating that I want the message encrypted), it
 asks if it should use keyID  = 0x9643AE65 for [EMAIL PROTECTED]
 (my userid and address).  When I respond yes, it lists several
 choices.  Each has the correct Email adress, and my name, but none
 have the correct keyID.  In fact, these keyID's do not correspond to
 any in my public key file.
 
 No matter which I choose, PGP cannot encrypt because, as it says:
 
   Cannot find the public key matching userid '0x72A1F430'
   This user will not be able to decrypt this message.
   Encryption error
 
 This isn't surprising, as the key is incorrect.
 
 For the record, the 'pgp_getkeys_command=pkspxycwrap %r' doesn't work,
 as I don't have the script enabled, but then I figured as I'm using a
 public key that I already have, I shouldn't need a key caching proxy.
 
 Does any reader know where I'm going wrong?  I'd appreciate any and
 all input.
 
Maybe you can use GnuPG ?

It is a  patent-free alternative to PGP,
and works flawlessly with mutt in debian.

package name is 'gnupg'



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

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Adobe put Dmitry in jail for the crime against 
society of revealing that they were selling 
ROT-13 as encryption. He is rotting in US prison 
as a political prisoner for speaking out. 
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpSbcgej4HiR.pgp
Description: PGP signature


  1   2   >