Funkgerät

1999-06-01 Thread christian
Hallo,

gibt es eine Möglichkeit, mit Hilfe eines Funkgerätes, Daten von PC's zu
übertragen?

cu christian



Re: LC_LANG and Init

2004-12-13 Thread Christian
Am Montag, 13. Dezember 2004 10:47 schrieb Christian Schaefer:
> Hi,
>
> how can I set environment variables for processes listed in
> /etc/inittab? Especially LC_LANG which is needed for correct running
> (german umlauts) of a backup client.
>
> The file /etc/environment doesn't seem to be the right place. I tried it
> also with putting the line '/usr/bin/env LC_ALL=en_US foo' into inittab
> instead of a simple 'foo' without any effect.
>
> Chris

Hello Chris, 

you could try to use a shell script like this:

#! /bin/sh
export [EMAIL PROTECTED]
foo


You need to verify that you are using a valid locale name! for me its 
"[EMAIL PROTECTED]". (You can verify it with the "locale" command)

-Christian


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



Re: LC_LANG and Init

2004-12-13 Thread Christian
Am Dienstag, 14. Dezember 2004 00:11 schrieb Miquel van Smoorenburg:
> In article <[EMAIL PROTECTED]>,
>
> Christian Schaefer  <[EMAIL PROTECTED]> wrote:
> >Hi,
> >
> >how can I set environment variables for processes listed in
> >/etc/inittab? Especially LC_LANG which is needed for correct running
> >(german umlauts) of a backup client.
>
> aa:2:respawn:/bin/sh 'LC_LANG=de_whatever exec /bitte/bitte/ja'
>
> Mike.

That's even better than my tip. I think you missed the "-c" option to /bin/sh, 
so the correct line should look like this:

aa:2:respawn:/bin/sh -c 'LC_LANG=de_whatever exec /bitte/bitte/ja'

-Christian


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



Re: Replacing Dying Harddisk (ReiserFS)

2004-12-19 Thread Christian
Am Sonntag, 19. Dezember 2004 14:36 schrieb Darryl Clarke:
> Hi,
>
> I was wondering if anybody has any wonderful ideas as to how I should
> go about "ghosting" my existing linux system.
>
> Norton Ghost only supports EXT2/3 for linux and I used ReiserFS so
> using it is out of the question.
>
> Does anybody have any ideas as to how I could transfer my existing
> setup to the new drive?
>
> Old Disk: 8gb /dev/hda
> New Disk: 80gb /dev/sda (currently plugged into USB2, to be moved to
> /dev/hda) Bootloader: Grub
> Filesystems: ReiserFS
>
> Hopefully there's a simple solution ;) Thanks!
>
> --
> Darryl
> [EMAIL PROTECTED]
> http://smartssa.com / http://darrylclarke.com

This is really simple to do. You don't need tools like ghost. You can do 
everything with linux' native utils. Just do the following steps:

Plug in your new disk and partition it to your needs. (i'll assume the new 
disk is /dev/sda)

Reboot after partitioning

Make a filesystem on the new partition (i'd choose reiserfs or ext3)
 mkfs -t reiserfs /dev/sda1

Mount the new filesystem
 mount /dev/sda1 /mnt/new_disk

Copy the whole old disks contents to the new disk and preserve all file 
attributes
 cp -a / /mnt/new_disk

Open a new shell and chroot to the filesystem on the new disk
 chroot /mnt/new_disk

Install a boot loader on the MBR of the new disk (if you have Grub)
 grub-install /dev/sda

Pull out your old disk and insert your new disk. 

Reboot and pray ;-)

HTH
-Christian


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



Re: Replacing Dying Harddisk (ReiserFS)

2004-12-21 Thread Christian
Am Dienstag, 21. Dezember 2004 22:16 schrieb Ron Johnson:
> On Sun, 2004-12-19 at 15:33 +0100, Christian wrote:
> > Am Sonntag, 19. Dezember 2004 14:36 schrieb Darryl Clarke:
> > > Hi,
>
> [snip]
>
> > Make a filesystem on the new partition (i'd choose reiserfs or ext3)
> >  mkfs -t reiserfs /dev/sda1
> >
> > Mount the new filesystem
> >  mount /dev/sda1 /mnt/new_disk
> >
> > Copy the whole old disks contents to the new disk and preserve all file
> > attributes
> >  cp -a / /mnt/new_disk
>
> This has failed for me, with symlink issues.
>
> Say the original drive /dev/hda is partitioned into :
>   hda1 /
>   hda2 /usr
>
> Because of /etc/alternatives, there are symlinks between hda1 and
> hda2.  So, if you cp hda1 to sda1 and hda2 to sda2, the symlinks
> will still be pointing to the hda partitions.  Thus, when you
> umount, all the inter-partition symlinks will be broken.

I think I missed something. The -x option to "cp" namely. 
 cp -ax / /mnt/new_disk

I currently don't understand what you mean with symlink issues (this should 
_not_ sound rude, i'm not a native english speaker). The only disadvantage I 
can think of is that hardlinked files will be seperated. One can only avoid 
this by using a filesystem dump utility. 
Symlinks should not make any problems if the path to the linked to file does 
not change. (Even if the partitioning scheme changes there should be no 
problems as long as the mount point is the same)

One could also try to use "dd" as long as the sector adressing of the disk 
won't change...

-Christian


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



Re: Synchronize two servers (warm backup)

2004-12-24 Thread Christian
Am Freitag, 24. Dezember 2004 15:32 schrieb Jean-Michel Hiver:
> Carl Fink wrote:
> >Hi.
> >
> >I'm in the process of setting up a warm backup for a server I run.  I was
> > in the middle of hacking together scripts to keep them in sync, but then
> > it came to me:  what if Debian has a package that does that *for* me?
>
> I'm interested in this too. Ideally I'd like to have a tool that uses a
> second disk to do incrementally but that would also be bootable so that
> if the 1st hard drive crashes, I can simply swap the disks and be back
> in business after a reboot.
>
> Anybody knows about such a tool?

RAID 1 ??

-Christian


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



Re: machine falling into a non-usable state for no apparent reason

2004-12-29 Thread Christian
Am Mittwoch, 29. Dezember 2004 17:47 schrieb Thomas McLean:
> Hi all,
>
> I'm running SID on 2.6.9 (no other kernel was installed before the
> current one). I've got a problem where my box randomly hangs and
> doesn't allow any connections in or out - ssh, telnet, finger, httpd -
> nothing except icmp ping requests. I've ran memtest and that seems to
> log the X session I'm currently in out. I also get the following error
> messages after it terminates itself from /var/log/messages:
>
> Dec 29 15:51:02 fresh kernel: memtest: page allocation failure.
> order:0, mode:0xd2
> Dec 29 15:51:02 fresh kernel: [] __alloc_pages+0x29f/0x2bc
> Dec 29 15:51:02 fresh kernel: [] do_anonymous_page+0x63/0x14e
> Dec 29 15:51:02 fresh kernel: [] do_no_page+0x4f/0x2cf
> Dec 29 15:51:02 fresh kernel: [] handle_mm_fault+0x6c/0x125
> Dec 29 15:51:02 fresh kernel: [] get_user_pages+0x194/0x306
> Dec 29 15:51:02 fresh kernel: [] make_pages_present+0x6b/0x85
> Dec 29 15:51:02 fresh kernel: [] mlock_fixup+0x76/0x8c
> Dec 29 15:51:02 fresh kernel: [] do_mlock+0x54/0x99
> Dec 29 15:51:02 fresh kernel: [] sys_mlock+0x91/0xb1
> Dec 29 15:51:02 fresh kernel: [] syscall_call+0x7/0xb
> Dec 29 15:51:02 fresh kernel: memtest: page allocation failure.
> order:0, mode:0xd2
> Dec 29 15:51:02 fresh kernel: [] __alloc_pages+0x29f/0x2bc
> Dec 29 15:51:02 fresh kernel: [] read_swap_cache_async+0x54/0xba
> Dec 29 15:51:02 fresh kernel: [] swapin_readahead+0x3d/0x80
> Dec 29 15:51:02 fresh kernel: [] do_swap_page+0x60/0x22a
> Dec 29 15:51:02 fresh kernel: [] handle_mm_fault+0x92/0x125
> Dec 29 15:51:02 fresh kernel: [] do_page_fault+0x19a/0x4ec
> Dec 29 15:51:02 fresh kernel: [] call_console_drivers+0xe3/0xeb
> Dec 29 15:51:02 fresh kernel: [] release_console_sem+0x4a/0xc0
> Dec 29 15:51:02 fresh kernel: [] vprintk+0xfa/0x11a
> Dec 29 15:51:02 fresh kernel: [] scheduler_tick+0x317/0x3df
> Dec 29 15:51:02 fresh kernel: [] print_context_stack+0x18/0x52
> Dec 29 15:51:02 fresh kernel: [] do_page_fault+0x0/0x4ec
> Dec 29 15:51:02 fresh kernel: [] error_code+0x2d/0x38
> Dec 29 15:51:02 fresh kernel: [] __copy_to_user_ll+0x196/0x1b6
> Dec 29 15:51:02 fresh kernel: [] __do_softirq+0x34/0x79
> Dec 29 15:51:02 fresh kernel: [] setup_frame+0xdd/0x27a
> Dec 29 15:51:02 fresh kernel: [] common_interrupt+0x18/0x20
> Dec 29 15:51:02 fresh kernel: [] handle_signal+0x76/0xc8
> Dec 29 15:51:02 fresh kernel: [] do_signal+0x79/0xcc
> Dec 29 15:51:02 fresh kernel: [] mlock_fixup+0x76/0x8c
> Dec 29 15:51:02 fresh kernel: [] do_mlock+0x54/0x99
> Dec 29 15:51:02 fresh kernel: [] do_notify_resume+0x27/0x38
> Dec 29 15:51:02 fresh kernel: [] work_notifysig+0x13/0x15
> Dec 29 15:51:02 fresh kernel: memtest: page allocation failure.
> order:0, mode:0xd2
> Dec 29 15:51:02 fresh kernel: [] __alloc_pages+0x29f/0x2bc
> Dec 29 15:51:02 fresh kernel: [] read_swap_cache_async+0x54/0xba
> Dec 29 15:51:02 fresh kernel: [] do_swap_page+0x6b/0x22a
> Dec 29 15:51:02 fresh kernel: [] handle_mm_fault+0x92/0x125
> Dec 29 15:51:02 fresh kernel: [] do_page_fault+0x19a/0x4ec
> Dec 29 15:51:02 fresh kernel: [] call_console_drivers+0xe3/0xeb
> Dec 29 15:51:02 fresh kernel: [] release_console_sem+0x4a/0xc0
> Dec 29 15:51:02 fresh kernel: [] vprintk+0xfa/0x11a
> Dec 29 15:51:02 fresh kernel: [] scheduler_tick+0x317/0x3df
> Dec 29 15:51:02 fresh kernel: [] print_context_stack+0x18/0x52
> Dec 29 15:51:02 fresh kernel: [] do_page_fault+0x0/0x4ec
> Dec 29 15:51:02 fresh kernel: [] error_code+0x2d/0x38
> Dec 29 15:51:02 fresh kernel: [] __copy_to_user_ll+0x196/0x1b6
> Dec 29 15:51:02 fresh kernel: [] __do_softirq+0x34/0x79
> Dec 29 15:51:02 fresh kernel: [] setup_frame+0xdd/0x27a
> Dec 29 15:51:02 fresh kernel: [] common_interrupt+0x18/0x20
> Dec 29 15:51:02 fresh kernel: [] handle_signal+0x76/0xc8
> Dec 29 15:51:02 fresh kernel: [] do_signal+0x79/0xcc
> Dec 29 15:51:02 fresh kernel: [] mlock_fixup+0x76/0x8c
> Dec 29 15:51:02 fresh kernel: [] do_mlock+0x54/0x99
> Dec 29 15:51:02 fresh kernel: [] do_notify_resume+0x27/0x38
> Dec 29 15:51:02 fresh kernel: [] work_notifysig+0x13/0x15
> Dec 29 15:51:02 fresh kernel: VM: killing process memtest
>
>
> I've also ran chkrootkit from unstable to see if it could be anything
> else and to rule other factors out and that can't find any obvious
> breakins.
>
> What I'm curious about why the box will go into an unusable state but
> when restarted it will be fine up until a random point. It could be
> two hours or two days. So if it is the memory why would the box still
> be accepting ICMP ping requests but nothing else that I can see?
>
> Any help in this matter is very much appreciated.
>
> Tam.

The syslog output is the same on my system if I run memtest. This seems to b

question regarding post-installed packages

2021-06-22 Thread Christian

Hi altogether,

I'm new to *Debian* and so far I like it very much.

I´ve some (basic) knowledge regarding Linux-distros but this knowledge 
is based on the fact that I´ve been using Lubuntu (ubuntu derivative) 
for some time now.


I appreciate there are some differences between Ubuntu and Debian so I 
installed *Debian10 buster* as a VM - in order to gather some experience 
with it.


Up and until now I seem to be getting along with it just fine and I like 
the fact that it´s really lightweight.


I´ve got one question though:

Using (L)Ubuntu I had a certain _command_ at hand which helped me with 
fresh/clean installs.


Before converting to a new version I entered the following command (on 
the old OS) in the terminal:


/comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc 
/var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u)/


This gave me list of all packages which were post-installed after the 
initial setup.
All I had to do was putting the results of the command in a text file, 
say "*result.txt*".


The beauty of this command is that it produces the packages (programmes 
that I installed with apt) *without* any dependencies.


After installing the new system I used the command

/xargs -a /path-to-result.txt sudo apt-get install/

and my new system was on the same level as my old one before.

Trying out that very command in Debian however didn´t work as desired:

/comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc 
/var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u)//

//gzip: /var/log/installer/initial-status.gz: No such file or directory//
//adduser//
//anydesk//
//apt//
//...//
//zlib1g/

So there was some output but not the one I was looking for.

The file "*initial-status.gz*" indeed doesn´t exist in /var/log/installer.

Here are the contents of /var/log/installer in Debian:

/rosika2@debian ~> ll /var/log/installer///
//insgesamt 1,4M//
//drwxr-xr-x 2 root root 4,0K Jun 16 16:59 cdebconf///
//-rw-r--r-- 1 root root  20K Jun 16 16:59 hardware-summary//
//-rw-r--r-- 1 root root  160 Jun 16 16:59 lsb-release//
//-rw--- 1 root root 107K Jun 16 16:59 partman//
//-rw-r--r-- 1 root root  72K Jun 16 16:59 status//
//-rw--- 1 root root 1,2M Jun 16 16:59 syslog//
//-rw--- 1 root root  41K Jun 16 16:59 Xorg.0.log/

So my question is: Does this file exist at all (possibly using another 
path)?
Or is there another preferred way of getting info concerning all 
post-installed packages (without their dependencies)?


Thanks a lot for your help in advance.

Many greetings.
Rosika


Re: question regarding post-installed packages

2021-06-22 Thread Christian

Hello Hans,


thanks so much for your very quick reply.

I just tried out the command you provided and it seems to produce quite 
an extensive list beginning with "acl" and ending with "zlib1g:amd64".
So it´s basically a list with all the packages which are installed by  
default plus the packages I installed afterwards.


I was hoping for a list that provides just my post-installed packages.
But I assume that in view of the fact that the /i*nitial-status.gz 
*/doesn´t seem to exist on Debian there´s no way of achieving this goal.


Never mind. Your command will certainly be of great assistance when 
setting up a new system.


Thank you very much for that, Hans.

Many greetings and keep safe.

Rosika


Am 22.06.21 um 15:52 schrieb Hans:

Am Dienstag, 22. Juni 2021, 15:30:35 CEST schrieb Christian:
Hi,

maybe this is the command you need? From an older doku:
-

3.3.10 Record/copy system configuration

To make a local copy of the package selection states:

$ dpkg --get-selections "*" > myselections

  # or use \*

“*” makes myselections include package entries for “purge” too.

You can transfer this file to another computer, and install it there with:

dselect update
dpkg --set-selections 

Re: question regarding post-installed packages

2021-06-22 Thread Christian

Dear Hans, 😁


thanks again for your help.

> if you can see in this file, which packages are postinstalled or 
dependent [...]


Alas that doesn´t seem to be the case.

As an example I post-installed the fish-shell and the respective entry 
simply is:


/fish    install/

, so basically like all the other entries as well.

But your suggestion of making two files - one after the initial OS setup 
and then another one after having done my post-installs - and then

comparing these two files really makes sense. Thanks for pointing that out.

Thanks also for your personal suggestion referring to a minimal install 
which is very good indeed and seems to be best suited for my purposes.


Your help is highly appreciated; thanks so much again.  😁

Many greetings
Rosika


Am 22.06.21 um 16:31 schrieb Hans:

Am Dienstag, 22. Juni 2021, 16:17:15 CEST schrieb Christian:
Hi Christian,

I looked not further into te result file. However, if you can see in this
file, which packages are postinstalled or dependent, you can just filter this
file with tools like cat, grep or even sort.

On the other hand, you can make two result files. One at the first
installation, the second one after you installed your packages. After that,
you will see the difference of both.

In fact, my personal suggestion is, just install a minimal system, one as
small as possible. When this is up, install all the tools and packages you
really need. So you will always install only the stuff, you REALLY need,
verything else ist just crap (and may be misused).

Hope this helps either.

Best regards

Hans



Re: question regarding post-installed packages

2021-06-22 Thread Christian

Hi Andrei,

thanks a lot for your reply. 😁

> It's unclear what exactly '/comm -23' is supposed to be

Well, from the man pages (man comm) :

/comm [OPTION]... FILE1 FILE2//
//
//DESCRIPTION//
//   Compare sorted files FILE1 and FILE2 line by line.

  -1 suppress column 1 (lines unique to FILE1)

   -2 suppress column 2 (lines unique to FILE2)
/
So I think the comm-command should be for comparison of files.

I´ve always used *bash* for executing the command, so this shouldn´t be 
the problem.


> [initial-status.gz-file] I'm guessing it is created by the Ubuntu 
installer.


Yes, I think so as well. Thanks for confirming that.

> If you show us an example [...]

Sorry, Andrei, I´m not quite sure what you mean by that.

Thanks anyway for your kind help.

All the best.
Rosika


Am 22.06.21 um 16:44 schrieb Andrei POPESCU:

On Ma, 22 iun 21, 15:30:35, Christian wrote:

/comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc
/var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u)/

It's unclear what exactly '/comm -23' is supposed to be and it seems
your mail program messed with line breaks.

Also, guessing from the command, this is supposed to be run under fish
(the shell). The default shell in Debian is bash, which needs slightly
different syntax for what you want to do.

In any case, 'apt-mark showmanual' definitely exists and works in Debian
and is one way to achieve what you need (aptitude is another).

The file /var/log/installer/initial-status.gz doesn't exist on a fairly
recent install of Debian bullseye (soon to be Debian 11). I'm guessing
it is created by the Ubuntu installer.

If you show us an example (attaching it might work, if it's not too big)
we might come up with methods to recreate the information on a fresh
Debian install.

Hope this helps,
Andrei




Debian stable - updates

2021-06-25 Thread Christian

Hi altogether,

as I´m a newcomer to Debian and coming from Lubuntu I searched for 
information as far as the release model is concerned.


I learned that there are three different releases: stable, testing, and 
unstable.


I know I´m not supposed to post any links here but for the sake of 
reference I´ll still do it this time (sorry).
I´m referring to the article  "Debian vs Ubuntu" on 
https://linuxconfig.org/debian-vs-ubuntu .


I quote:

"Debian's stable release is insanely stable. There are few distributions 
in the same league when it comes to rock solid reliability.


[...] There is a tradeoff, though. The software in Debian Stable is 
usually fairly outdated.
In fact, it's usually outdated when the distribution first ships. Now, 
that's not much of a problem for servers, but it's awful for desktops. "


Despite reading through the entire article I couldn´t really understand 
why the author refers to Debian stable as being "awful" for desktops.


So I have a question in order to be clear about the matter.

Is Debian stable safe to use - I mean in the sense that it gets security 
updates for the installed packages?


I don´t really care about updates which would introduce new features of 
programmes. All I´m concerned about is getting security updates so that 
I can use Debian stable as my daily driver.


Thanks in advance for your help.

Many greetings
Rosika



Re: Debian stable - updates

2021-06-25 Thread Christian

Hi Doc Evans,

thanks a lot for your reply.

That´s great news indeed.
The fact that Debian stable is rock solid is a great asset in itself. So 
together with security updates it will surely make for a fine production 
system especially for older

computers like my Lenovo H520e desktop.

Thank you for clarifying the matter for me.

Many greetings and keep safe.
Rosika





Re: Debian stable - updates

2021-06-25 Thread Christian

Hi Tomas,

thank you so much for your reply.

> Thing is: "stable" means [...]  Only bug fixes and security patches 
go in.


Great! That is the most important aspect for me.
I really don't need the latest-and-greatest version of packages. All I 
do need is a stable and secure system.

So Debian stable turns out to be ideally suited for my purposes.

I've installed it in a VM for now (qemu, KVM) to see how it performs. I 
must say I'm very impressed. It runs smoothly even with just 1 GB RAM 
allocated to it.

I'm sure it'll make a fine system as a production system.

Thanks again and keep safe.

Many greetings.
Rosika




Re: Debian stable - updates

2021-06-25 Thread Christian

Hi Didar,

thanks for your opinion as well.
Good to learn there are so many users satisfied with Debian stable.

Many greetings.
Rosika



Re: Debian stable - updates

2021-06-25 Thread Christian

Hi again,

so sorry to bother you kind people once more. It turns out I've got an 
additional question regarding  updates.


On https://www.debian.org/security/#keeping-secure under "Keeping your 
Debian system secure" it says:


"You can use apt to easily get the latest security updates. This 
requires a line such as deb http://security.debian.org/debian-security 
buster/updates main contrib non-free
in your /etc/apt/sources.list file. Then execute apt-get update && 
apt-get upgrade"


I looked up  the respective file on my system and it looks like this:

1     #
2
3     # deb cdrom:[Debian GNU/Linux 10.9.0 _Buster_ - Official amd64 
xfce-CD Binary-1 20210327-10:42]/ buster main

4
5     #deb cdrom:[Debian GNU/Linux 10.9.0 _Buster_ - Official amd64 
xfce-CD Binary-1 20210327-10:42]/ buster main

6
7     deb http://deb.debian.org/debian/ buster main
8     deb-src http://deb.debian.org/debian/ buster main
9
10   deb http://security.debian.org/debian-security buster/updates main
11   deb-src http://security.debian.org/debian-security buster/updates main
12
13   # buster-updates, previously known as 'volatile'
14   deb http://deb.debian.org/debian/ buster-updates main
15   deb-src http://deb.debian.org/debian/ buster-updates main
16
17   # This system was installed using small removable media
18   # (e.g. netinst, live or single CD). The matching "deb cdrom"
19   # entries were disabled at the end of the installation process.
20  # For information about how to configure apt package sources,
21  # see the sources.list(5) manual.

From the advice given at the debian page (see above) I gather I have to 
change the contents of line 10, right? As there's just "main" in it 
right now I'd have to add "contrib" and "non-free" I think.

But what about line 11? Would I have to do the same there as well?

Thanks a lot in advance for your help.
Many greetings.
Rosika



Re: Debian stable - updates

2021-06-25 Thread Christian

Hi Greg,

thank you so much for your very quick reply.

> It's not necessary at this time.

Good to know.

I see. So in case I want it I'd have to add "contrib" and "non-free" in 
line 7 first.


Perhaps I'm a bit slow to understand, but what about lines 8, 11, 14 and 
15 then? All these also contain just "main". Would they have to be 
altered as well?


Thanks a lot.
Rosika




Re: Debian stable - updates

2021-06-25 Thread Christian

Hi Greg,

thank you very much for your help. It's highly appreciated.

It's so good to have have some confirmation by such knowledgeable people 
like you.


So for now I think I won't have to change anything as I'm currently 
running Debian stable in a virtual machine.
Yet when setting it  up as a daily driver (as a main system) I'd 
consider applying the changes especially in view of microcode.


I'm really glad to have learnt something new (to me at least) again.

Thanks a lot for your help.

Many greetings and keep safe.
Rosika




Re: Debian stable - updates

2021-06-26 Thread Christian

Hi and a very good day to all of you, 😁

thank you very much for the new input of yours. You're too kind.

@T.J. Duchene:

Thanks a lot for the warm welcome. That' s really nice. I enjoy it very 
much here.


Your instruction to update policies used by Debian stable is very good; 
I understand it much better now. Thanks a lot.
Stable and well-maintained are exactly what I'm looking for in an OS. So 
Debian stable seems to be perfectly suited for my purposes.
Plus: it's really lightweight (especially with xfce). Ideal for my 
Lenovo H520e. 😉


Thanks again for your kind help.


@Francesco Florian:

> This is, if you really want to track 'stable', i.e., automatically 
switch to the new stable release when it becomes such.


I see.
Yet personally I'd like to stay at Buster as long as I can.
Thanks for the suggestion anyway.

@Greg Wooledge:

Thanks so much for the warning and the additional info. It's much 
appreciated.



@Tomas:

Thanks to you as well.


@Andrew M.A. Cater

> If you say buster, then when buster slides to become oldstable, your 
system won't change underneath you suddenly.


Yes, that's exactly how I want it to be.
No nasty surprises and no big downloads (at least for the time being).

My sole means of internet connection is a UMTS-stick with 5 GB data 
available per 28 days. So I have to be able to plan well in advance for 
occasions like that.

Thanks a lot for the info.


@Andrei POPESCU:

> It's much better to use the codename instead and subscribe to 
debian-announce (in addition to debian-security-announce, of course).
> When a new release is announced start preparing for the upgrade, you 
have one year to do so.


Wow, that info is really new to me; well I'm just a beginner as far as 
Debian is concerned. But really good to know. Thanks a lot. 😁


> You might want to switch to `apt` instead.

Indeed I've made it a habit to use "apt" instead of "apt-get" for quite 
a while now.


Thanks for the additional info as well.


So I think (and hope) I understand much better now how Debian updates 
are to be configured and work.
It's really good to have a place to go to and post questions when help 
is needed. You´re a great community! I appreciate it very much. 😉


Thanks again to all of you for your kind help.

A very nice weekend and do keep safe.

Many greetings from Rosika 😁







building custom package

2008-02-20 Thread Christian
Hi,

I am trying to build a custom zenoss package (http://www.zenoss.com/).
I made a DEBIAN directory which contains control file and pre / post
scripts, and the directory
/usr/local/zenoss with all the files. However when trying to install get the
following error :

package control info rmdir of `usr' didn't say not a dir: Directory not
empty
Errors were encountered while processing:

anybody know what's that supposed to mean (googled everything)


no higher resolution on grub2-screen

2009-10-25 Thread Christian
Hello out there,
I have a problem regarding grub2 or what is now called grub.
I want to change the screen-resolution of my grub-screen (first the
grub-screen, if this works also the console), but if I write a
"GRUB_GFXMODE=1400x1050" into /etc/default/grub and invoke update-grub,
the grub-screen is still 640x480.
I asked for the actual screen-mode with vbetest on the grub-console and
it is really 0x101 which means 640x480.
In my /boot/grub/grub.cfg I have the desired line "set
gfxmode=1400x1050", but it is totally ignored by grub.

Where is the problem? Can anybody help.
Ah yes, I use Squeeze and a thinkpad T60.

Thank you...

Christian


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



Re: skype?

2012-04-10 Thread Christian
On Mon, 09 Apr 2012 18:03:28 -0500, Scott Ferguson  
 wrote:









I am concerned with the "big brother" privacy,


Then, sadly, Ekiga is *not* the answer for your needs as it doesn't
support encryption. (one of the reasons it's not a fit for my needs).

Kphone, Jitsi, Mumble, QuteCom, Linphone, MicroSIP, SFLPhone, and Blink
do. Note that not all are multiplatform, see one of my previous posts to
this thread for a list of those that are ported to the three main PC
platforms.

Note also that Skype is encrypted, but Skype has a history of handing
out the private key.


The term "handing out" makes me curious. Who exactly are they handing it  
out to?


Personally I am presented with a few requirements from my employer to be  
able to use Linux as my work OS. One is MS Word the other is Skype, with  
or without key handed out.







Kind regards




--
//Christian


--
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/op.wcks80xqp7q...@hit-nxdomain.opendns.com



Network Manager forgets WPA2 password.

2012-04-30 Thread Christian

Hi,

When I log into Gnome-Shell my WPA2 password is remembered between  
sessions in Network Manager. But when I log into my default desktop  
(Pekwm/Tint2) which also uses Network Manager I have to enter the password  
every time. What can I do to get Network Manager remember the password  
outside of Gnome?


I'm running Debian Wheezy with Gnome 3.2

--
//Christian


--
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/op.wdlpd5lep7q...@hit-nxdomain.opendns.com



Re: Network Manager forgets WPA2 password.

2012-04-30 Thread Christian
On Mon, 30 Apr 2012 19:21:26 -0500, Adrian Fita   
wrote:



On 01/05/12 02:11, Christian wrote:

Hi,

When I log into Gnome-Shell my WPA2 password is remembered between
sessions in Network Manager. But when I log into my default desktop
(Pekwm/Tint2) which also uses Network Manager I have to enter the
password every time. What can I do to get Network Manager remember
the password outside of Gnome?

I'm running Debian Wheezy with Gnome 3.2


I think you don't have gnome-keyring-daemon running in Pekwm. This is a
common problem with window managers; you have to configure/start the
Gnome daemons that give the nice functionality by hand.


That's probably it.


What does it look like when running 'ps aux | grep gnome-keyring-daemon'
in a terminal? On my machine it gives the following:

ps aux | grep gnome-keyring-daemon
adrian2964  0.0  0.0   4052   760 pts/2S+   03:15   0:00 grep
gnome-keyring-daemon
adrian3816  0.0  0.1  58308  3696 ?SLl  01:30   0:00  
/usr/bin/gnome-keyring-daemon --daemonize --login


On mine:

1000 17180  0.0  0.0   7792   876 pts/0S+   23:41   0:00 grep  
gnome-keyring-daemon




I'm not sure how gnome-keyring-daemon is started, there is gnome-keyring  
stuff in /etc/xdg/autostart which gets started at login and also there  
is /usr/share/dbus-1/services/org.gnome.keyring.service (but neither  
starts gnome-keyring-daemon with '--daemonize --login'). I myself am  
running Openbox, but thank god, I didn't have problems with this.


In Pekwm the startup "manage" is a text file called 'start'. I already  
have a few things started from there, so I will look into having  
gnome-keyring-daemon start also.


Thanks!


HTH.



--
//Christian


--
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/op.wdl4uaolp7q...@hit-nxdomain.opendns.com



Re: Network Manager forgets WPA2 password.

2012-04-30 Thread Christian
On Mon, 30 Apr 2012 20:40:49 -0500, Indulekha   
wrote:



I'm running Debian Wheezy with Gnome 3.2


If you can, the best solution is to use wpa_supplicant to identify your
networks and provide appropriate authentication. It just takes a little
editing of the wpa_supplicant.conf. There's also a gui for it if you  
prefer,

archwiki has the best howto for it here:
https://wiki.archlinux.org/index.php/WPA_supplicant#Dynamic_method:_.27wpa_gui.27.2C_.27wpa_cli.27


Thanks, I will look into that.

NM is not the most reliable piece of software, and wicd only allows one  
network

interface to be used at a time last I tried it.


I've been pretty happy with Network Manager over the last couple of years.  
Before that it was wicd, but I was under the impression that wicd was  
lagging development wise and not all up to date.


Thanks!

--
//Christian


--
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/op.wdl4x1pvp7q...@hit-nxdomain.opendns.com



Weird behaviour on System under high load

2023-05-20 Thread Christian
Hi there,

I am having trouble with a new build system. It works normal and stable
until I put extreme stress on it, e.g. using all 12 cores with stress
tool.

System will suddenly loose network connection and become unresponsive.
Only a reset works. I am not sure what is going on, but it is
reproducible: Put stress on the system and it fails. It seems, that
something is getting out of step.

Stuff below I found in the logs. I tried quite a bit, even upgraded to
bookworm, to see if the newer kernel works.

If anyone knows how to analyze this issue, it would be very helpful.

Kind regards
  Christian


2023-05-20T20:12:17.054224+02:00 diskstation kernel: [ 1303.236428] ---
-[ cut here ]
2023-05-20T20:12:17.054234+02:00 diskstation kernel: [ 1303.236430]
NETDEV WATCHDOG: enp3s0 (r8169): transmit queue 0 timed out
2023-05-20T20:12:17.054235+02:00 diskstation kernel: [ 1303.236437]
WARNING: CPU: 5 PID: 2411 at net/sched/sch_generic.c:525
dev_watchdog+0x207/0x210
2023-05-20T20:12:17.054236+02:00 diskstation kernel: [ 1303.236442]
Modules linked in: eq3_char_loop(OE) rpi_rf_mod_led(OE) ledtrig_timer
ledtrig_default_on xt_MASQUERADE nf_conntrack_netlink xfrm_user
xfrm_algo xt_addrtype br_netfilter bridge stp llc overlay ip6t_rt
nft_chain_nat nf_nat xt_set xt_tcpmss xt_tcpudp xt_conntrack
nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nft_compat nf_tables
ip_set_hash_ip ip_set binfmt_misc nfnetlink nls_ascii nls_cp437 vfat
fat amdgpu iwlmvm btusb intel_rapl_msr btrtl intel_rapl_common btbcm
btintel edac_mce_amd btmtk mac80211 snd_hda_codec_realtek bluetooth
snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi gpu_sched
kvm_amd drm_buddy libarc4 snd_hda_intel drm_display_helper
snd_intel_dspcfg snd_intel_sdw_acpi iwlwifi kvm cec snd_hda_codec
jitterentropy_rng irqbypass rc_core snd_hda_core cfg80211 snd_hwdep
drm_ttm_helper snd_pcm ttm drbg wmi_bmof rapl ccp snd_timer ansi_cprng
drm_kms_helper sp5100_tco snd pcspkr ecdh_generic rng_core i2c_algo_bit
watchdog soundcore k10temp rfkill hb_rf_usb_2(OE) ecc
2023-05-20T20:12:17.054240+02:00 diskstation kernel: [ 1303.236494] 
generic_raw_uart(OE) acpi_cpufreq button joydev evdev sg nct6775
nct6775_core drm hwmon_vid fuse loop efi_pstore configfs efivarfs
ip_tables x_tables autofs4 ext4 crc16 mbcache jbd2 btrfs
blake2b_generic xor raid6_pq zstd_compress libcrc32c crc32c_generic
dm_crypt dm_mod hid_generic usbhid hid sd_mod crc32_pclmul crc32c_intel
ahci ghash_clmulni_intel sha512_ssse3 libahci xhci_pci sha512_generic
xhci_hcd r8169 nvme realtek libata aesni_intel nvme_core t10_pi
crypto_simd mdio_devres usbcore scsi_mod crc64_rocksoft_generic cryptd
libphy crc64_rocksoft crc_t10dif i2c_piix4 crct10dif_generic
crct10dif_pclmul crc64 crct10dif_common usb_common scsi_common video
wmi gpio_amdpt gpio_generic
2023-05-20T20:12:17.054241+02:00 diskstation kernel: [ 1303.236534]
CPU: 5 PID: 2411 Comm: stress Tainted: G   OE  6.1.0-9-
amd64 #1  Debian 6.1.27-1
2023-05-20T20:12:17.054241+02:00 diskstation kernel: [ 1303.236536]
Hardware name: To Be Filled By O.E.M. B550M-ITX/ac/B550M-ITX/ac, BIOS
L2.62 01/31/2023
2023-05-20T20:12:17.054242+02:00 diskstation kernel: [ 1303.236537]
RIP: 0010:dev_watchdog+0x207/0x210
2023-05-20T20:12:17.054242+02:00 diskstation kernel: [ 1303.236540]
Code: 00 e9 40 ff ff ff 48 89 df c6 05 ff 5f 3d 01 01 e8 be 79 f9 ff 44
89 e9 48 89 de 48 c7 c7 c8 16 9b a8 48 89 c2 e8 09 d2 86 ff <0f> 0b e9
22 ff ff ff 66 90 0f 1f 44 00 00 55 53 48 89 fb 48 8b 6f
2023-05-20T20:12:17.054243+02:00 diskstation kernel: [ 1303.236541]
RSP: :a831c345fdc8 EFLAGS: 00010286
2023-05-20T20:12:17.054243+02:00 diskstation kernel: [ 1303.236543]
RAX:  RBX: 91a3c141 RCX: 
2023-05-20T20:12:17.054243+02:00 diskstation kernel: [ 1303.236544]
RDX: 0103 RSI: a893fa66 RDI: 
2023-05-20T20:12:17.054244+02:00 diskstation kernel: [ 1303.236545]
RBP: 91a3c1410488 R08:  R09: a831c345fc38
2023-05-20T20:12:17.054244+02:00 diskstation kernel: [ 1303.236546]
R10: 0003 R11: 91aafe27afe8 R12: 91a3c14103dc
2023-05-20T20:12:17.054245+02:00 diskstation kernel: [ 1303.236547]
R13:  R14: a7e2e7a0 R15: 91a3c1410488
2023-05-20T20:12:17.054245+02:00 diskstation kernel: [ 1303.236548] FS:
7f169849d740() GS:91aade34() knlGS:
2023-05-20T20:12:17.054246+02:00 diskstation kernel: [ 1303.236550] CS:
0010 DS:  ES:  CR0: 80050033
2023-05-20T20:12:17.054246+02:00 diskstation kernel: [ 1303.236551]
CR2: 55d05c3f4000 CR3: 000103cf2000 CR4: 00750ee0
2023-05-20T20:12:17.054246+02:00 diskstation kernel: [ 1303.236552]
PKRU: 5554
2023-05-20T20:12:17.054247+02:00 diskstation kernel: [ 1303.236553]
Call Trace:
2023-05-20T20:12:17.054247+02:00 diskstation kernel: [ 1303.236554] 

2023-05-20T20:12:17.054248+02:00 diskstation kernel: [ 1303.236557]  ?
pfifo_fast_reset

Re: Weird behaviour on System under high load

2023-05-21 Thread Christian
Hi there,

Lets go through the different topics:
- Setup: It is a AMD 5600G on a ASRock B550M-ITX/ac, powered by a
BeQuiet SP7 300W

- Power: From the specifications it should fit. As it takes 5-20
minutes for the error to occur, I would take that as an indication,
that the power supply is ok. Otherwise would expect that to fail right
away? Is there a way to measure/test if there is any issue with it?
I also tested to limit PPT to 45W which also makes no difference.

- Memory: Yes was tested right after the build with no errors

- Thermal: I am observing the temperatures on the stresstest. If I am
correct in reading Smbusmaster0, Temps haven't been above 71°C, but
error also occurs earlier, way below 70.

- OS: I was running Debian stable in quite a minimal configuration
(fresh install as most services are dockerized) when first observed the
error. Now moved to Debian 12/Bookworm to see if it makes any
difference with higher kernel (it does not). Also exchanged r8169 for
the r8168. It changes the error messages, however system instability
stays.

I could disconnect the disks and see if it makes any difference.
However when reproducing this error, disks other than system where
unmounted. So would guess this would be a test to see if it is about
power?

 Ursprüngliche Nachricht 
Von: David Christensen 
An: debian-user@lists.debian.org
Betreff: Re: Weird behaviour on System under high load
Datum: Sat, 20 May 2023 18:00:48 -0700

On 5/20/23 14:46, Christian wrote:
> Hi there,
> 
> I am having trouble with a new build system. It works normal and
> stable
> until I put extreme stress on it, e.g. using all 12 cores with stress
> tool.
> 
> System will suddenly loose network connection and become
> unresponsive.
> Only a reset works. I am not sure what is going on, but it is
> reproducible: Put stress on the system and it fails. It seems, that
> something is getting out of step.
> 
> Stuff below I found in the logs. I tried quite a bit, even upgraded
> to
> bookworm, to see if the newer kernel works.
> 
> If anyone knows how to analyze this issue, it would be very helpful.
> 
> Kind regards
>    Christian
> 
> 
> 2023-05-20T20:12:17.054224+02:00 diskstation kernel: [ 1303.236428] -
> --
> -[ cut here ]
> 2023-05-20T20:12:17.054234+02:00 diskstation kernel: [ 1303.236430]
> NETDEV WATCHDOG: enp3s0 (r8169): transmit queue 0 timed out
> 2023-05-20T20:12:17.054235+02:00 diskstation kernel: [ 1303.236437]
> WARNING: CPU: 5 PID: 2411 at net/sched/sch_generic.c:525
> dev_watchdog+0x207/0x210
> 2023-05-20T20:12:17.054236+02:00 diskstation kernel: [ 1303.236442]
> Modules linked in: eq3_char_loop(OE) rpi_rf_mod_led(OE) ledtrig_timer
> ledtrig_default_on xt_MASQUERADE nf_conntrack_netlink xfrm_user
> xfrm_algo xt_addrtype br_netfilter bridge stp llc overlay ip6t_rt
> nft_chain_nat nf_nat xt_set xt_tcpmss xt_tcpudp xt_conntrack
> nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nft_compat nf_tables
> ip_set_hash_ip ip_set binfmt_misc nfnetlink nls_ascii nls_cp437 vfat
> fat amdgpu iwlmvm btusb intel_rapl_msr btrtl intel_rapl_common btbcm
> btintel edac_mce_amd btmtk mac80211 snd_hda_codec_realtek bluetooth
> snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi gpu_sched
> kvm_amd drm_buddy libarc4 snd_hda_intel drm_display_helper
> snd_intel_dspcfg snd_intel_sdw_acpi iwlwifi kvm cec snd_hda_codec
> jitterentropy_rng irqbypass rc_core snd_hda_core cfg80211 snd_hwdep
> drm_ttm_helper snd_pcm ttm drbg wmi_bmof rapl ccp snd_timer
> ansi_cprng
> drm_kms_helper sp5100_tco snd pcspkr ecdh_generic rng_core
> i2c_algo_bit
> watchdog soundcore k10temp rfkill hb_rf_usb_2(OE) ecc
> 2023-05-20T20:12:17.054240+02:00 diskstation kernel: [ 1303.236494]
> generic_raw_uart(OE) acpi_cpufreq button joydev evdev sg nct6775
> nct6775_core drm hwmon_vid fuse loop efi_pstore configfs efivarfs
> ip_tables x_tables autofs4 ext4 crc16 mbcache jbd2 btrfs
> blake2b_generic xor raid6_pq zstd_compress libcrc32c crc32c_generic
> dm_crypt dm_mod hid_generic usbhid hid sd_mod crc32_pclmul
> crc32c_intel
> ahci ghash_clmulni_intel sha512_ssse3 libahci xhci_pci sha512_generic
> xhci_hcd r8169 nvme realtek libata aesni_intel nvme_core t10_pi
> crypto_simd mdio_devres usbcore scsi_mod crc64_rocksoft_generic
> cryptd
> libphy crc64_rocksoft crc_t10dif i2c_piix4 crct10dif_generic
> crct10dif_pclmul crc64 crct10dif_common usb_common scsi_common video
> wmi gpio_amdpt gpio_generic
> 2023-05-20T20:12:17.054241+02:00 diskstation kernel: [ 1303.236534]
> CPU: 5 PID: 2411 Comm: stress Tainted: G   OE  6.1.0-9-
> amd64 #1  Debian 6.1.27-1
> 2023-05-20T20:12:17.054241+02:00 diskstation kernel: [ 1303.236536]
> Hardware name: To Be Filled By O.E.M. B550M-ITX/ac/B550M-ITX/ac, BIOS
> L2.62 01/31/2023
> 2023-05-20T20:1

Re: Weird behaviour on System under high load

2023-05-21 Thread Christian
>  Ursprüngliche Nachricht 
> Von: David Christensen 
> An: debian-user@lists.debian.org
> Betreff: Re: Weird behaviour on System under high load
> Datum: Sun, 21 May 2023 03:11:43 -0700
> 
> On 5/21/23 01:14, Christian wrote:
> 
> > >  Ursprüngliche Nachricht 
> > > Von: David Christensen 
> > > An: debian-user@lists.debian.org
> > > Betreff: Re: Weird behaviour on System under high load
> > > Datum: Sat, 20 May 2023 18:00:48 -0700
> > > 
> > > On 5/20/23 14:46, Christian wrote:
> > > > Hi there,
> > > > 
> > > > I am having trouble with a new build system. It works normal
> and
> > > > stable
> > > > until I put extreme stress on it, e.g. using all 12 cores with
> > > > stress
> > > > tool.
> > > > 
> > > > System will suddenly loose network connection and become
> > > > unresponsive.
> > > > Only a reset works. I am not sure what is going on, but it is
> > > > reproducible: Put stress on the system and it fails. It seems,
> > > > that
> > > > something is getting out of step.
> > > > 
> > > > Stuff below I found in the logs. I tried quite a bit, even
> > > > upgraded
> > > > to
> > > > bookworm, to see if the newer kernel works.
> > > > 
> > > > If anyone knows how to analyze this issue, it would be very
> > > > helpful.
> 
> 
> Please use inline posting style and proper indentation.

Phew... will be quite hard to read. But here you go.

> 
> 
> > > Have you verified that your PSU has sufficient capacity for the
> > > load on
> > > each and every rail?
> 
>  > Hi there,
>  >
>  > Lets go through the different topics:
>  > - Setup: It is a AMD 5600G
> 
> https://www.amd.com/en/products/apu/amd-ryzen-5-5600g
> 
> 65 W
> 
> 
>  > on a ASRock B550M-ITX/ac,
> 
> 
> https://www.asrock.com/mb/AMD/B550M-ITXac/index.asp
> 
> 
>  > powered by a BeQuiet SP7 300W
>  >
>  > - Power: From the specifications it should fit. As it takes 5-20
>  > minutes for the error to occur, I would take that as an
> indication,
>  > that the power supply is ok. Otherwise would expect that to fail
> right
>  > away? Is there a way to measure/test if there is any issue with
> it?
>  > I also tested to limit PPT to 45W which also makes no difference.
> 
> 
> If all you have a motherboard, a 65W CPU, and an SSD, that looks like
> a 
> good quality 300W PSU and I would think it should support long-term
> full 
> loading of the CPU.  But, there is no substitute for doing the
> engineering.
> 
> 
> I do PSU calculations using a spreadsheet.  This requires finding
> power 
> specifications (or making estimates) for everything in the system,
> which 
> can be tough.
> 
> 
> BeQuiet has a PSU calculator.  I suggest using it:
> 
> https://www.bequiet.com/en/psucalculator
> 
> 
> Measuring actual power supply output and system usage would involve 
> building or buying suitable test equipment.  The cost would be non-
> trivial.
> 
> 
> An easy A/B test would be to connect a known-good, high-quality PSU
> with 
> a higher power rating (say, 500-1000W).  I use:
> 
> https://www.fractal-design.com/products/power-supplies/ion/ion-2-platinum-660w/black/
> 
Used the calculator, however might be, that the onboard graphics is not
attributed properly for. Will see that I get a 500W PSU for testing.
> 
> > > Have you cleaned the system interior, filters, fans, heatsinks,
> > > ducts,
> > > etc., recently?
> 
> 
> ?
As written in OP, the system is new. Only PSU is used. So it is clean
> 
> 
> > > Have you tested the thermal solution(s) recently?
> 
>  > - Thermal: I am observing the temperatures on the stresstest. If I
> am
>  > correct in reading Smbusmaster0, Temps haven't been above 71°C,
> but
>  > error also occurs earlier, way below 70.
> 
> 
> Okay.
> 
> 
> What is your CPU thermal solution?
> 
What is a thermal solution?
> 
> What stresstest are you using?
> 
stress running in s-tui
> 
> > > Have you tested the power supply recently?
> 
It was working before without issues, so not explicitly tested.
> 
> I suffered a rash of bad PSU's recently.  I was able to figure it out
> because I bought an inexpensive PSU tester years ago.  It has saved
> my 
> sanity more than once.  I suggest that you buy something like it:
> 
> https://www.ebay.com/sch/i.html?_from=R40&

Re: Weird behaviour on System under high load

2023-05-21 Thread Christian
>  Ursprüngliche Nachricht 
> Von: David Christensen 
> An: debian-user@lists.debian.org
> Betreff: Re: Weird behaviour on System under high load
> Datum: Sun, 21 May 2023 14:22:22 -0700
> 
> On 5/21/23 06:31, Christian wrote:
> > David Christensen Sun, 21 May 2023 03:11:43 -0700
> 
>  >>> David Christensen Sat, 20 May 2023 18:00:48 -0700
> 
> > > Please use inline posting style and proper indentation.
> > 
> > Phew... will be quite hard to read. But here you go.
> 
> 
> It is not hard when you delete the portions that you are not
> responding to.
> 
> 
> > > > > Have you cleaned the system interior, filters, fans,
> heatsinks,
> > > > > ducts,
> > > > > etc., recently?
> 
> > As written in OP, the system is new. Only PSU is used. So it is
> clean
> 
> 
> Okay.
> 
> 
> > What is a thermal solution?
> 
> 
> Heat sinks, heat pipes, water blocks, radiators, fans, ducts, etc..
> 
It is quite simple 
- Noctua NH-L9a-AM4 for CPU
- Chassis 12cm fan
- PSU Integrated fans
> 
> > > What stresstest are you using?
> > > 
> > stress running in s-tui
> 
> 
> Do you mean "in situ"?
> 
> https://www.merriam-webster.com/dictionary/in%20situ
> 
No, it is the package and command "s-tui" and "stress"
s-tui gives you an overview on power usage, fan control, temps, core
frequencies and core utilization on the console

stress is just producing load on selected # of cpus, it can be
integrated in s-tui.

> I prefer a tool that I can control.  That is why I wrote the
> previously 
> attached Perl script.  It is public domain; you and everyone are free
> to 
> use, modify, distribute, etc., as you see fit.
> 
> 
> > > > > Have you tested the power supply recently?
> 
> > It was working before without issues, so not explicitly tested.
> 
> > I am not building regularly, so would need to borrow such equipment
> > somewhere
> 
> 
> Understand that an ATX PSU has multiple stages that produce +12 VDC,
> +5 
> VDC, +5 VDC standby, +3.3 VDC, and -12 VDC ("rails").  It is common
> for 
> one or more rails to fail and the others to continue working. 
> Computers 
> exhibit "weird behaviour" when this happens.
> 
> 
> Just spend the US$20.
> 
> 
> > > > > Have you tested the memory recently?
> 
> > > Did you do multi-threaded/ stress tests?
> > > 
> > Yes, stress is running multiple threads. Only on 2 threads it was
> > stable so far. However it takes longer for the errors to come up
> when
> > using less threads. might be that I did not test long enough.
> 
> 
> I use Memtest86+ 5.01 on a bootable USB stick.  In the
> "Configuration" 
> menu, I can choose "Core Selection".  It appears the default is 
> "Parallel (all)".  Other choices include "Round Robin" and
> "Sequential". 
>   Memtest 5.01 also displays the CPU temperature.  Running it an
> Intel 
> Core i7-2600S with matching factory heat sink and fan for 30+
> minutes, 
> the current CPU temperature is 50 C.  This leads me to believe that
> the 
> memory is loaded to 100%, but the CPU is less (perhaps 60%?).
> 
> https://memtest.org/
> 
> 
> I recommend that you run Memtest86+ in parallel mode for at least one
> pass.  I have seen computers go for 20+ hours before encountering a 
> memory error.
> 
> 
> > > Did you see the problems when running Debian stable OOTB, before
> > > adding
> > > anything?
> 
> > I would need to do this with a liveUSB, to have it run OOTB
> 
> 
> Okay.  Put my Perl script on your liveUSB.  Also put some tool for 
> monitoring CPU temperature, such as sensors(1).

Will have time again in a few days and check.

> 
> 
> David
> 
> 



Re: Weird behaviour on System under high load

2023-05-26 Thread Christian
>  Ursprüngliche Nachricht 
> Von: David Christensen 
> An: debian-user@lists.debian.org
> Betreff: Re: Weird behaviour on System under high load
> Datum: Sun, 21 May 2023 15:04:44 -0700
> 
> 
> > > > > What stresstest are you using?
> 
> > ... the package and command "s-tui" and "stress"
> > s-tui gives you an overview on power usage, fan control, temps,
> core
> > frequencies and core utilization on the console
> > 
> > stress is just producing load on selected # of cpus, it can be
> > integrated in s-tui.
> 
> 
> Thanks -- I like tools and will play with it:
> 
> https://packages.debian.org/bullseye/s-tui
> 
> 
> > > Okay.  Put my Perl script on your liveUSB.  Also put some tool
> for
> > > monitoring CPU temperature, such as sensors(1).
> > 
> > Will have time again in a few days and check.
> 
> 
> Please let us know what you find.
> 
Good and bad things: 
I started to test different setups (always with full 12 core stress
test). Boot from USB liveCD (only stress and s-tui installed):

- All disks disconnected, other than M2. Standard BIOS
- All disks disconnected, other than M2. Proper Memory profile for
timing
- All disks disconnected, other than M2. Memory profile, undervolted
and overclocked with limited burst to 4ghz
- All disks connected. Memory profile, undervolted and overclocked with
limited burst to 4ghz

All settings so far are stable. :-/
Will see tomorrow any differences in non-free firmware and kernel
modules and test again.

Very strange...



Re: Weird behaviour on System under high load

2023-05-27 Thread Christian
>  Ursprüngliche Nachricht 
> Von: David Christensen 
> An: debian-user@lists.debian.org
> Betreff: Re: Weird behaviour on System under high load
> Datum: Fri, 26 May 2023 18:22:17 -0700
> 
> On 5/26/23 16:08, Christian wrote:
> 
> > Good and bad things:
> > I started to test different setups (always with full 12 core stress
> > test). Boot from USB liveCD (only stress and s-tui installed):
> > 
> > - All disks disconnected, other than M2. Standard BIOS
> > - All disks disconnected, other than M2. Proper Memory profile for
> > timing
> > - All disks disconnected, other than M2. Memory profile,
> undervolted
> > and overclocked with limited burst to 4ghz
> > - All disks connected. Memory profile, undervolted and overclocked
> > with
> > limited burst to 4ghz
> > 
> > All settings so far are stable. :-/
> > Will see tomorrow any differences in non-free firmware and kernel
> > modules and test again.
> > 
> > Very strange...
> 
> 
> If everything is stable, including undervoltage and overclocking, I 
> would consider that good.  I think your hardware is good.
> 
> 
> When you say "USB liveCD", is that a USB optical drive with a live
> CD, a 
> USB flash drive with a bootable OS on it, or something else?  If it
> is 
> something that can change, I suggest taking a image of the raw blocks
> with dd(1) so that you can easily get back to this point as you
> continue 
> testing.
> 

New day, new tests. Got a crash again, however with the message "AHCI
controller unavailable".
Figured that is the SATA drives not being plugged in the right order.
Corrected that and a 3:30h stress test went so far without any issues
besides this old bug
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=947685

Seems that I am just jumping from one error to the next...

> 
> AIUI Debian can include microcode patches (depending upon processor).
> If you are using such, I suggest adding that to your test agenda
> first.
> 
> 
> Firmware and kernel modules seem like the right next steps.
> 
> 
> David
> 
> 



Re: Weird behaviour on System under high load

2023-05-28 Thread Christian
>  Ursprüngliche Nachricht 
> Von: David Christensen 
> An: debian-user@lists.debian.org
> Betreff: Re: Weird behaviour on System under high load
> Datum: Sat, 27 May 2023 16:30:05 -0700
> 
> On 5/27/23 15:28, Christian wrote:
> 
> > New day, new tests. Got a crash again, however with the message
> "AHCI
> > controller unavailable".
> > Figured that is the SATA drives not being plugged in the right
> order.
> > Corrected that and a 3:30h stress test went so far without any
> issues
> > besides this old bug
> > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=947685
> > 
> > Seems that I am just jumping from one error to the next...
> 
> 
> 3 hours and 30 minutes?  Yikes!  Please stop before you fry your 
> computer.  10 seconds should be enough to see a problem; 1 minute is 
> more than enough.
> 
Sadly not always. My crashes before would occur between a few minutes
and 1 hour load. Now I hope everything is stable. Crashes are gone,
only the network error seems to be unresolved (even though there is
some workaround).

With the undervolting / overclocking on 12 core stress test, the system
stays below 65°C (on Smbusmaster0) so should be no risk of damage.

Thanks for the help!
> 
> David
> 
> 
> 



Bookworm upgrade on AWS

2023-06-22 Thread Christian
Hi there,

I just upgraded my AWS Instance to bookworm. It went sort of seamless,
however the current kernel headers give an error.

DKMS make.log for amzn-drivers-ena-linux-1.1.3 for kernel 6.1.0-9-
cloud-amd64 (x86_64)
Do 22. Jun 15:43:22 CEST 2023
make: Verzeichnis „/var/lib/dkms/amzn-drivers-ena-
linux/1.1.3/build/kernel/linux/ena“ wird betreten
make -C /lib/modules/6.1.0-9-cloud-amd64/build M=/var/lib/dkms/amzn-
drivers-ena-linux/1.1.3/build/kernel/linux/ena modules
make[1]: Verzeichnis „/usr/src/linux-headers-6.1.0-9-cloud-amd64“ wird
betreten
CC [M] /var/lib/dkms/amzn-drivers-ena-
linux/1.1.3/build/kernel/linux/ena/ena_netdev.o
In file included from /var/lib/dkms/amzn-drivers-ena-
linux/1.1.3/build/kernel/linux/ena/ena_netdev.h:44,
from /var/lib/dkms/amzn-drivers-ena-
linux/1.1.3/build/kernel/linux/ena/ena_netdev.c:53:
/var/lib/dkms/amzn-drivers-ena-
linux/1.1.3/build/kernel/linux/ena/kcompat.h:42: warning:
"KERNEL_VERSION" redefined
42 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
|
In file included from /var/lib/dkms/amzn-drivers-ena-
linux/1.1.3/build/kernel/linux/ena/ena_netdev.c:46:
./include/generated/uapi/linux/version.h:2: note: this is the location
of the previous definition
2 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + ((c) >
255 ? 255 : (c)))
|
/var/lib/dkms/amzn-drivers-ena-
linux/1.1.3/build/kernel/linux/ena/ena_netdev.h: In function
‘ena_bp_unlock_napi’:
/var/lib/dkms/amzn-drivers-ena-
linux/1.1.3/build/kernel/linux/ena/ena_netdev.h:387:28: error: ‘struct
napi_struct’ has no member named ‘gro_list’; did you mean ‘rx_list>
387 | if (rx_ring->napi->gro_list)
| ^~~~
| rx_list
compilation terminated due to -Wfatal-errors.
make[2]: *** [/usr/src/linux-headers-6.1.0-9-
common/scripts/Makefile.build:255: /var/lib/dkms/amzn-drivers-ena-
linux/1.1.3/build/kernel/linux/ena/ena_netdev.o] Fehler 1
make[1]: *** [/usr/src/linux-headers-6.1.0-9-common/Makefile:2037:
/var/lib/dkms/amzn-drivers-ena-linux/1.1.3/build/kernel/linux/ena]
Fehler 2
make[1]: Verzeichnis „/usr/src/linux-headers-6.1.0-9-cloud-amd64“ wird
verlassen
make: *** [Makefile:19: all] Fehler 2
make: Verzeichnis „/var/lib/dkms/amzn-drivers-ena-
linux/1.1.3/build/kernel/linux/ena“ wird verlassen

Any clue on what this could be?
System is running normal so far without any issues popping up.

Kind regards
  Christian


Debian 12.6 - clamav-deamon does not use a socket

2024-06-30 Thread christian

Hello,
I'm currently struggling with the problem that my clamav daemon creates 
/var/run/clamav/clamd.ctl as a socket, but I can't connect to Rspamd. At 
first I thought that rspamd wasn't sending anything, but clamav isn't 
addressing any socket.


When I check this using sockstat, no active socket is displayed. So 
clamav doesn't seem to be addressing the socket.


I uninstalled everything from clamav again and deleted the directories 
by hand. Then I downloaded everything again from the Debian 12 
repository. Everything is created and a new socket is created, but the 
same thing happens again: the socket doesn't work.


Do I have to tell it beforehand via a setting that it should be active?

Of course, the clamav.conf states:

LocalSocket /var/run/clamav/clamd.ctl
The logs show that the signatures are loaded and the function is checked 
every 3600 seconds. But the socket is not working.


What could be the reason for this?

Christian

clamconf
Checking configuration files in /etc/clamav

Config file: clamd.conf
---
AlertExceedsMax disabled
PreludeEnable disabled
PreludeAnalyzerName = "ClamAV"
LogFile = "/var/log/clamav/clamav.log"
LogFileUnlock disabled
LogFileMaxSize = "4294967295"
LogTime = "yes"
LogClean disabled
LogSyslog = "yes"
LogFacility = "LOG_LOCAL6"
LogVerbose = "yes"
LogRotate = "yes"
ExtendedDetectionInfo = "yes"
PidFile disabled
TemporaryDirectory disabled
DatabaseDirectory = "/var/lib/clamav"
OfficialDatabaseOnly disabled
LocalSocket = "/var/run/clamav/clamd.ctl"
LocalSocketGroup = "clamav"
LocalSocketMode = "666"
FixStaleSocket = "yes"
TCPSocket disabled
TCPAddr disabled
MaxConnectionQueueLength = "15"
StreamMaxLength = "104857600"
StreamMinPort = "1024"
StreamMaxPort = "2048"
MaxThreads = "12"
ReadTimeout = "180"
CommandReadTimeout = "30"
SendBufTimeout = "200"
MaxQueue = "100"
IdleTimeout = "30"
ExcludePath disabled
MaxDirectoryRecursion = "15"
FollowDirectorySymlinks disabled
FollowFileSymlinks disabled
CrossFilesystems = "yes"
SelfCheck = "3600"
ConcurrentDatabaseReload = "yes"
DisableCache disabled
VirusEvent disabled
ExitOnOOM disabled
AllowAllMatchScan = "yes"
Foreground disabled
Debug = "yes"
LeaveTemporaryFiles disabled
GenerateMetadataJson disabled
User = "clamav"
Bytecode disabled
BytecodeSecurity = "TrustSigned"
BytecodeTimeout = "1"
BytecodeUnsigned disabled
BytecodeMode = "Auto"
DetectPUA disabled
ExcludePUA disabled
IncludePUA disabled
ScanPE = "yes"
ScanELF = "yes"
ScanMail = "yes"
ScanPartialMessages disabled
PhishingSignatures = "yes"
PhishingScanURLs = "yes"
HeuristicAlerts = "yes"
HeuristicScanPrecedence disabled
StructuredDataDetection disabled
StructuredMinCreditCardCount = "3"
StructuredMinSSNCount = "3"
StructuredSSNFormatNormal = "yes"
StructuredSSNFormatStripped disabled
ScanHTML = "yes"
ScanOLE2 = "yes"
AlertBrokenExecutables disabled
AlertBrokenMedia disabled
AlertEncrypted disabled
StructuredCCOnly disabled
AlertEncryptedArchive disabled
AlertEncryptedDoc disabled
AlertOLE2Macros disabled
AlertPhishingSSLMismatch disabled
AlertPhishingCloak disabled
AlertPartitionIntersection disabled
ScanPDF = "yes"
ScanSWF = "yes"
ScanXMLDOCS = "yes"
ScanHWP3 = "yes"
ScanArchive = "yes"
ForceToDisk disabled
MaxScanTime = "12"
MaxScanSize = "52428800"
MaxFileSize = "26214400"
MaxRecursion = "16"
MaxFiles = "1"
MaxEmbeddedPE = "10485760"
MaxHTMLNormalize = "10485760"
MaxHTMLNoTags = "2097152"
MaxScriptNormalize = "5242880"
MaxZipTypeRcg = "1048576"
MaxPartitions = "50"
MaxIconsPE = "100"
MaxRecHWP3 = "16"
PCREMatchLimit = "1"
PCRERecMatchLimit = "5000"
PCREMaxFileSize = "104857600"
OnAccessMountPath disabled
OnAccessIncludePath disabled
OnAccessExcludePath disabled
OnAccessExcludeRootUID disabled
OnAccessExcludeUID disabled
OnAccessExcludeUname disabled
OnAccessMaxFileSize = "52428800"
OnAccessDisableDDD disabled
OnAccessPrevention disabled
OnAccessExtraScanning disabled
OnAccessCurlTimeout = "5000"
OnAccessMaxThreads = "5"
OnAccessRetryAttempts disabled
OnAccessDenyOnError disabled
DevACOnly disabled
DevACDepth disabled
DevPerformance disabled
DevLiblog disabled
DisableCertCheck disabled
AlgorithmicDetection = "yes"
BlockMax disabled
PhishingAlwaysBlockSSLMismatch disabled
PhishingAlwaysBlockCloak disabled
Partitio

X server blocked by SecureBoot

2024-10-29 Thread Christian
Hello out there, I have an issue with my new Debian installation. I 
choose stable for now, to keep it simple. So used the stable 
installation ISO to install Debian on a MSI Z690-A with a Intel Core 
I7-14700 and a GeForce RTX 4060Ti. The Nouveau driver did not work with 
this card so I installed the Nvidia driver and everything to build it. 
Then I created my MOK key and enrolled them. So the nvidia-current 
module is signed now and is getting loaded as nvidia_drm, nvidia_modeset 
and nvidia. But something still prevents the X server from starting:


[   304.354] (II) NVIDIA GLX Module  535.183.01  Sun May 12 19:37:53 UTC 
2024

[   304.355] (II) NVIDIA: The X server supports PRIME Render Offload.
[   308.891] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA GPU at 
PCI:1:0:0.  Please
[   308.891] (EE) NVIDIA(GPU-0): check your system's kernel log for 
additional error
[   308.891] (EE) NVIDIA(GPU-0): messages and refer to Chapter 8: 
Common Problems in the

[   308.891] (EE) NVIDIA(GPU-0): README for additional information.
[   308.891] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA 
graphics device!

[   308.891] (EE) NVIDIA(0): Failing initialization of X screen
[   308.891] (II) UnloadModule: "nvidia"
[   308.891] (II) UnloadSubModule: "glxserver_nvidia"
[   308.891] (II) Unloading glxserver_nvidia

and dmesg gives me this:

[   40.344811] nvidia: module license 'NVIDIA' taints kernel.
[   40.344811] Disabling lock debugging due to kernel taint



[   46.716241] NVRM: GPU :01:00.0: RmInitAdapter failed! 
(0x23:0x65:1426)
[   46.716422] NVRM: GPU :01:00.0: rm_init_adapter failed, device 
minor number 0




[   47.042454] Lockdown: Xorg: raw io port access is restricted; see man 
kernel_lockdown.7
[   51.092248] NVRM: GPU :01:00.0: RmInitAdapter failed! 
(0x23:0x65:1426)
[   51.092330] NVRM: GPU :01:00.0: rm_init_adapter failed, device 
minor number 0
[   55.097874] NVRM: GPU :01:00.0: RmInitAdapter failed! 
(0x23:0x65:1426)
[   55.097953] NVRM: GPU :01:00.0: rm_init_adapter failed, device 
minor number 0


the last two lines repeats 1000++ times

I think it's still SecureBoot, but what is it this time? Can anyone help


Thank you in advance


BR Chris



Re: X server blocked by SecureBoot

2024-11-03 Thread Christian
AE_ALREADY_EXISTS, During name lookup/catalog 
(20220331/psobject-220)
[    0.277351] ACPI: Skipping parse of AML opcode: OpcodeName 
unavailable (0x0014)
[    0.277352] ACPI BIOS Error (bug): Failure creating named object 
[\_SB.PC00.XHCI.RHUB.HS14.GLAX], AE_ALREADY_EXISTS (20220331/dswload2-326)
[    0.277352] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog 
(20220331/psobject-220)
[    0.277355] ACPI BIOS Error (bug): Failure creating named object 
[\_SB.PC00.XHCI.RHUB.HS14.GLAI], AE_ALREADY_EXISTS (20220331/dswload2-326)
[    0.277356] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog 
(20220331/psobject-220)
[    0.277356] ACPI: Skipping parse of AML opcode: OpcodeName 
unavailable (0x0014)
[    0.277357] ACPI BIOS Error (bug): Failure creating named object 
[\_SB.PC00.XHCI.RHUB.HS14.BTLY], AE_ALREADY_EXISTS (20220331/dswload2-326)
[    0.277358] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog 
(20220331/psobject-220)
[    0.277360] ACPI BIOS Error (bug): Failure creating named object 
[\_SB.PC00.XHCI.RHUB.HS14.BTLC], AE_ALREADY_EXISTS (20220331/dswload2-326)
[    0.277361] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog 
(20220331/psobject-220)
[    0.277362] ACPI: Skipping parse of AML opcode: OpcodeName 
unavailable (0x0014)

[    0.278459] ACPI: 12 ACPI AML tables successfully acquired and loaded
[    0.284491] ACPI: Dynamic OEM Table Load:
[    0.284496] ACPI: SSDT 0x913A02036600 0001AB (v02 PmRef Cpu0Psd  
3000 INTL 20200717)

[    0.284906] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked

But most hits at $SEARCHENGINE showed this is nothing to worry. And I 
need to start a new thread anyway.


Has anyone any more successions ?

Thank you


BR Christian



Re: X server blocked by SecureBoot

2024-10-30 Thread Christian
Hi Thomas, thank you for your help. So far I couldn't see anything in my 
cmdline which is kernel_lockdown related. And I grep'ed the whole /etc 
and /boot directory recursively. Nothing. And neither in the dmesg, 
there is no "lsm=" line. Only in the kernel .config is 
CONFIG_SECURITY_LOCKDOWN=y, enabled. So yes the kernel supports it.
Debian Live boot system couldn't either boot up my new PC, but Ubuntu 
did. WIth Ubuntu I was able to boot it with Desktop and everthing, but 
they used Nouveu driver. And dmesg dumped this out:
[    0.209551] LSM: initializing 
lsm=lockdown,capability,landlock,yama,apparmor,ima,evm


I couldn't find out where this parameters are set. Even on the Ubuntu 
Live system I didn't find a file with just one single line with the 
words lsm= or lockdown (case insensitive)


Thank you

BR Christian



Hi,

Christian wrote:

[   47.042454] Lockdown: Xorg: raw io port access is restricted; see man 
kernel_lockdown.7
I think it's still SecureBoot, but what is it this time? Can anyone help

At least the above log snippet seems to be related to SecureBoot.
In
   https://manpages.debian.org/bookworm/manpages/kernel_lockdown.7.en.html
i see

   "On an EFI-enabled x86 or arm64 machine, lockdown will be automatically
enabled if the system boots in EFI Secure Boot mode.
Coverage
When lockdown is in effect, a number of features are disabled or have
their use restricted. This includes special device files and kernel
services that allow direct access of the kernel image:"
[...]
   NOTES
 The Kernel Lockdown feature is enabled by CONFIG_SECURITY_LOCKDOWN_LSM.
 The lsm=lsm1,...,lsmN command line parameter controls the sequence of
 the initialization of Linux Security Modules. It must contain the
 string lockdown to enable the Kernel Lockdown feature. If the command
 line parameter is not specified, the initialization falls back to the
 value of the deprecated security= command line parameter and further
 to the value of CONFIG_LSM."

So i guess you have to look into your boot configuration for kernel
parameter "lockdown".

On
   https://bbs.archlinux.org/viewtopic.php?id=290866
i see this statement by espritlibre:

   "Re: Secure boot and Nvidia
i have secure boot enabled, but lockdown disabled  (for another
reason). loading the nvidia module does taint the kernel, but loads
and work just fine with prime-run on a hybrid systme. i'm not signing
OOT modules, just kernel and efi stuff."

(Whatever "prime-run" might be ...)


Have a nice day :)

Thomas





Re: X server blocked by SecureBoot

2024-10-30 Thread Christian

Hello out there, I have an issue with my new Debian installation. I
choose stable for now, to keep it simple. So used the stable
installation ISO to install Debian on a MSI Z690-A with a Intel Core
I7-14700 and a GeForce RTX 4060Ti. The Nouveau driver did not work with
this card so I installed the Nvidia driver and everything to build it.
Then I created my MOK key and enrolled them. So the nvidia-current
module is signed now and is getting loaded as nvidia_drm, nvidia_modeset
and nvidia. But something still prevents the X server from starting:

[   304.354] (II) NVIDIA GLX Module  535.183.01  Sun May 12 19:37:53 UTC
2024
[   304.355] (II) NVIDIA: The X server supports PRIME Render Offload.
[   308.891] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA GPU at
PCI:1:0:0.  Please
[   308.891] (EE) NVIDIA(GPU-0): check your system's kernel log for
additional error
[   308.891] (EE) NVIDIA(GPU-0): messages and refer to Chapter 8:
Common Problems in the
[   308.891] (EE) NVIDIA(GPU-0): README for additional information.
[   308.891] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA
graphics device!
[   308.891] (EE) NVIDIA(0): Failing initialization of X screen

According to your log messages The NVIDIA card fails to initialize before X
fails. NVIDIA is a major pain in the ass with Linux. Which is why I do not
use them.

[   308.891] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA
graphics device!
[   308.891] (EE) NVIDIA(0): Failing initialization of X screen

Did the installer have graphics when you installed it? You could try
booting from the live USB image for bookworm and trixie and see how that
works out. If your graphics card is really new then you may have to run
Trixie to support it.



Hello Timothy, thank you for your help. Well I did. I used the Debian 
Live System (Testing version) to boot into my new PC, but I stalled 
really early. And I couln't even open a console or connect to the system 
via SSH. At least I could see with nmap that it fetched an IP address. 
The Debian installer offered me graphics but this is "just" framebuffer 
I guess? With Ubuntu I was able to start the system. With a very (s)low 
resolution though but it worked. It used the Nouveau driver.



Thanks


BR Christian






[   308.891] (II) UnloadModule: "nvidia"
[   308.891] (II) UnloadSubModule: "glxserver_nvidia"
[   308.891] (II) Unloading glxserver_nvidia

and dmesg gives me this:

[   40.344811] nvidia: module license 'NVIDIA' taints kernel.
[   40.344811] Disabling lock debugging due to kernel taint



[   46.716241] NVRM: GPU :01:00.0: RmInitAdapter failed!
(0x23:0x65:1426)
[   46.716422] NVRM: GPU :01:00.0: rm_init_adapter failed, device
minor number 0



[   47.042454] Lockdown: Xorg: raw io port access is restricted; see man
kernel_lockdown.7
[   51.092248] NVRM: GPU :01:00.0: RmInitAdapter failed!
(0x23:0x65:1426)
[   51.092330] NVRM: GPU :01:00.0: rm_init_adapter failed, device
minor number 0
[   55.097874] NVRM: GPU :01:00.0: RmInitAdapter failed!
(0x23:0x65:1426)
[   55.097953] NVRM: GPU :01:00.0: rm_init_adapter failed, device
minor number 0

the last two lines repeats 1000++ times

I think it's still SecureBoot, but what is it this time? Can anyone help


Thank you in advance


BR Chris






Re: X server blocked by SecureBoot

2024-10-30 Thread Christian
Hello Kevin, thank you for support. I choosed Nvidia again deliberately 
because I want to play with Tesorflow, Scikit-Learn and GPT. And yes I 
had my experiences with Nvidia over the year as well. But I decided to 
take Nvidia again. Maybe there are more people like me, giving up the 
installation silently for another distro?


BR Christian


29 Oct 2024 17:38:39 Timothy M Butterworth :


NVIDIA is a major pain in the ass with Linux. Which is why I do not
use them.

Actually this is more Linux being a major pain in the ass to Nvidia.

When secure boot is enabled lockdown is automatically enabled. Really debian 
should provide an Nvidia package that explains the issue, sets lockdown none 
and runs update-grub. Unfortunately I don't believe the kernel allows just 
enabling raw io to even signed modules. You can look up some things like 
disabling debugfs to restore some of lockdowns security. I think kernel memory 
access is kept disabled.





Re: X server blocked by SecureBoot

2024-10-30 Thread Christian
Hello Timothy, I did so. I used Debian Testing/Trixie, which I also use 
on my current old system (build 2015) with apt pinning and everything...

The ISO I used was debian-live-testing-amd64-xfce.iso.

BR Christian


On Wed, Oct 30, 2024 at 10:58 AM Christian  wrote:


Hi Thomas, thank you for your help. So far I couldn't see anything in my
cmdline which is kernel_lockdown related. And I grep'ed the whole /etc
and /boot directory recursively. Nothing. And neither in the dmesg,
there is no "lsm=" line. Only in the kernel .config is
CONFIG_SECURITY_LOCKDOWN=y, enabled. So yes the kernel supports it.
Debian Live boot system couldn't either boot up my new PC, but Ubuntu
did. WIth Ubuntu I was able to boot it with Desktop and everthing, but
they used Nouveu driver.


Try booting with Trixie (testing), https://www.debian.org/CD/live/ It may
just be that the stable kernel is simply too old for your hardware. I am
currently running Trixie and have not had any problems with it. If you do
install Trixie and it asks you if you want to install accesibility tools...
select NO! Otherwise it will install and run everything and you will waste
lots of time figuring out how to disable them.

And dmesg dumped this out:

[0.209551] LSM: initializing
lsm=lockdown,capability,landlock,yama,apparmor,ima,evm

I couldn't find out where this parameters are set. Even on the Ubuntu
Live system I didn't find a file with just one single line with the
words lsm= or lockdown (case insensitive)

Thank you

BR Christian



Hi,

Christian wrote:

[   47.042454] Lockdown: Xorg: raw io port access is restricted; see

man kernel_lockdown.7

I think it's still SecureBoot, but what is it this time? Can anyone help

At least the above log snippet seems to be related to SecureBoot.
In


https://manpages.debian.org/bookworm/manpages/kernel_lockdown.7.en.html

i see

"On an EFI-enabled x86 or arm64 machine, lockdown will be

automatically

 enabled if the system boots in EFI Secure Boot mode.
 Coverage
 When lockdown is in effect, a number of features are disabled or have
 their use restricted. This includes special device files and kernel
 services that allow direct access of the kernel image:"
 [...]
NOTES
  The Kernel Lockdown feature is enabled by

CONFIG_SECURITY_LOCKDOWN_LSM.

  The lsm=lsm1,...,lsmN command line parameter controls the sequence

of

  the initialization of Linux Security Modules. It must contain the
  string lockdown to enable the Kernel Lockdown feature. If the

command

  line parameter is not specified, the initialization falls back to

the

  value of the deprecated security= command line parameter and further
  to the value of CONFIG_LSM."

So i guess you have to look into your boot configuration for kernel
parameter "lockdown".

On
https://bbs.archlinux.org/viewtopic.php?id=290866
i see this statement by espritlibre:

"Re: Secure boot and Nvidia
 i have secure boot enabled, but lockdown disabled  (for another
 reason). loading the nvidia module does taint the kernel, but loads
 and work just fine with prime-run on a hybrid systme. i'm not signing
 OOT modules, just kernel and efi stuff."

(Whatever "prime-run" might be ...)


Have a nice day :)

Thomas







No display found with Nvidia RTX 4060 Ti

2024-11-20 Thread Christian
Hello out there, Im still struggle with my new Nvidia GeForce RTX 4060 
Ti and it seems that it's not the problem with the SecureBoot system. I 
switched off SecureBoot and it's still not working.
First of all again the system consists of MSI Z690-A board with a Intel 
Core I7-14700, 64GB RAM. I installed Debian stable, testing and unstable 
but the symptoms are everwhere the same. With Debian stable I was able 
to boot with a Display Manger (lightdm) but only with standard 
resolution (so Nouveau or Vesa driver). When I build the proprietary 
with DKMS it fails finding a display. With Testing and Unstable is the 
same. I build the driver from the original Nvidia driver and this worked 
(build on Testing and Unstable)
When the system boots up it produces 2 Xorg.log files in an order. It 
finishes the 1st one with the lines:


[   149.799] (II) UnloadSubModule: "glxserver_nvidia"
[   149.799] (II) Unloading glxserver_nvidia
[   149.799] (II) UnloadSubModule: "wfb"
[   149.799] (EE) Screen(s) found, but none have a usable configuration.
[   149.799] (EE)
Fatal server error:
[   149.799] (EE) no screens found(EE)
[   149.799] (EE)
Please consult the The X.Org Foundation support


And then closes this log file, renames it to Xorg.o.log.old (according 
to stat) and opens a new Xorg.o.log which finishes with:


 (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
[   151.047] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[   151.047] (==) NVIDIA(0): RGB weight 888
[   151.047] (==) NVIDIA(0): Default visual is TrueColor
[   151.047] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[   151.047] (**) NVIDIA(0): Enabling 2D acceleration
[   151.047] (II) Loading sub module "glxserver_nvidia"
[   151.047] (II) LoadModule: "glxserver_nvidia"
[   151.047] (II) Loading 
/usr/lib/xorg/modules/extensions/libglxserver_nvidia.so

[   151.055] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[   151.055]     compiled for 1.6.99.901, module version = 1.0.0
[   151.055]     Module class: X.Org Server Extension
[   151.055] (II) NVIDIA GLX Module  535.216.01  Tue Sep 17 16:51:05 UTC 
2024

[   151.056] (II) NVIDIA: The X server supports PRIME Render Offload.

Without any error or warning but no display finding phase neither.

There is no Xorg.conf file !!!

1st Xorg.0.log (Xorg.0.log.old): https://pastebin.com/EbyAZjQC

2nd. Xorg.0.log :  https://pastebin.com/bd7ia3pZ

Display manager is actually running:

● lightdm.service - Light Display Manager
 Loaded: loaded (/usr/lib/systemd/system/lightdm.service; enabled; 
preset: enabled)

 Active: active (running) since Tue 2024-11-19 16:37:55 CET; 7s ago
 Invocation: 21cfed9bb7cd424d91b3f464035c04cd
   Docs: man:lightdm(1)
   Main PID: 5448 (lightdm)
  Tasks: 6 (limit: 76613)
 Memory: 8.6M (peak: 10.4M)
    CPU: 7.028s
 CGroup: /system.slice/lightdm.service
 ├─5448 /usr/sbin/lightdm
 └─5455 /usr/lib/xorg/Xorg :0 -seat seat0 -auth 
/var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch


Nov 19 16:37:55 jupiter systemd[1]: lightdm.service: Scheduled restart 
job, restart counter is at 235.
Nov 19 16:37:55 jupiter systemd[1]: Starting lightdm.service - Light 
Display Manager...
Nov 19 16:37:55 jupiter lightdm[5448]: Could not enumerate user data 
directory /var/lib/lightdm/data: Error opening directory 
'/var/lib/lightdm/data': No such file or directory
Nov 19 16:37:55 jupiter systemd[1]: Started lightdm.service - Light 
Display Manager.


nvidia-detect gives me:
Detected NVIDIA GPUs:
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation AD106 
[GeForce RTX 4060 Ti] [10de:2803] (rev a1)


Checking card:  NVIDIA Corporation AD106 [GeForce RTX 4060 Ti] (rev a1)
Your card is supported by all driver versions.
Your card is also supported by the Tesla 535 drivers series.
It is recommended to install the
    nvidia-driver
package.

nvidia-smi gives me:
No devices were found

dmesg doesn't give me much:
[    4.402786] nvidia: module license 'NVIDIA' taints kernel.
[    4.544061] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 
535.216.01  Tue Sep 17 16:54:04 UTC 2024
[    5.311434] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver 
for UNIX platforms  535.216.01  Tue Sep 17 16:46:49 UTC 2024


but then lots of

[   57.307869] NVRM: GPU :01:00.0: RmInitAdapter failed! 
(0x23:0x65:1438)
[   57.307948] NVRM: GPU :01:00.0: rm_init_adapter failed, device 
minor number 0
[   62.579863] NVRM: GPU :01:00.0: RmInitAdapter failed! 
(0x23:0x65:1438)
[   62.579964] NVRM: GPU :01:00.0: rm_init_adapter failed, device 
minor number 0


full dmesg: https://pastebin.com/VrWUEZM2


Can anyone tell me what part of the GFX stack doesn't work here?

Thank you in advance

BR Christian




unmet dependencies in xine-dvdnav (sid)

2003-03-02 Thread Christian Schoenebeck
Hi!

I have this unmet dependency in xine-dvdnav since a while:

 xine-dvdnav: Depends: libxine0 (>= 0.9.11) but 0.9.8-2 is to be installed

Is there no libxine0 package for sid yet?

Regards, Christian


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



Re: Howto auto unpack/read "README.Debian.gz" ?

2003-03-02 Thread Christian Schoenebeck
On Sun, Mar 02, 2003 at 06:41:59AM +, Joao Pedro Clemente wrote:
> 
> AS I've seen some of these files after installing some packages, as since
> they are not unpacked by apt-get, I am wondering if there isn't a "smart"
> way of reading this instead of unpacking first...
> 
> I wonder if, for instance, "less" could automatically unpack it for

Use zless

Regards, Christian


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



Re: Networking configuration?

2003-03-04 Thread Christian Schoenebeck
On Tue, 4 Mar 2003 18:15:53 -0500 (EST)
Patrick Wiseman <[EMAIL PROTECTED]> wrote:

> Hi, all:
> 
> I'm not sure how I broke networking, but when I boot up, my ethernet
> card is recognised, but it has no IP address and the box is not known
> to my other lan boxes.  Doing
> 
> #ifconfig eth1 192.168.1.11
> 
> corrects the problem, but now the external network is unavailable. 
> Doing
> 
> #route add default gw 192.168.1.1
> 
> fixes that problem.
> 
> Where are the configuration files to automate all this?  It used to
> work,

The startup script for basic network is /etc/init.d/networking.
But adding your NICs to /etc/network/interfaces should be all you have
to do. It should look like this:

# The loopback interface
auto lo
iface lo inet loopback

# 1st NIC
auto eth0
iface eth0 inet static
address 192.168.200.7
netmask 255.255.255.0
network 192.168.200.0
broadcast 192.168.200.255
gateway 192.168.200.254

# 2nd NIC
...

Regards,
Christian


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



Re: Building Nvidia driver

2003-03-05 Thread Christian Schoenebeck
On Wed, 5 Mar 2003 12:08:45 +0100
"Willem-Jan Meijer" <[EMAIL PROTECTED]> wrote:

> I'm trying to build the nvidia driver, and I posted some questions before.
> One of the answers was a step-by-step manual on how to do it. One of those
> steps is:
> 
> 6.Then build nvidia-kernel package:
>   cd /usr/src/modules/nvidia-kernel-1.0.2880/Debian/rules
> binary_modules
> 
> When I do that, I get:
> 
> -bash:  rules:  command not found

You have to run binaries either with full qualified path like:

/usr/src/modules/nvidia-kernel-1.0.2880/Debian/rules binary_modules

Or if you alreay changed to that directory this way:

./rules binary_modules

Regards,
Christian


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



Re: Updating packages while being able to use the old distributionCDs

2003-03-05 Thread Christian Schoenebeck
On Tue, 04 Mar 2003 18:04:53 -0700
[EMAIL PROTECTED] wrote:

> When I run "apt-get update", Debian logs on to the updates ftp site
> (such as ftp.debian.org) and downloads an entirely new list of
> packages which overrides the older list. Thus if I install Debian from
> CDs and update, I will no longer be able to use them. Debian will
> insist on installing any previously not installed programs from the
> site, rather than the discs. Can I somehow tell apt-get only to update
> my X Windows System to version 4.2 (and to download any required
> dependency library updates) without making me dependent on the website
> forever?

First of all, if your CDs are still mentioned in /etc/apt/sources.list,
then your CDs will be the primary source for installing new packages, as
long as there are no newer versions in the Debian archive and / or you
don't have added sources for a younger distribution version (testing /
unstable). In the latter  cases the packages will be fetched from the
net. So first have a look if entries like these exist in your sources
list:

deb cdrom:[Debian GNU/Linux 2.2 r3 _Potato_ - Official i386 Binary-3
(20010427)]/ unstable contrib main non-US/contrib non-US/main
deb cdrom:[Debian GNU/Linux 2.2 r3 _Potato_ - Official i386 Binary-2
(20010427)]/ unstable contrib main non-US/contrib non-US/main
deb cdrom:[Debian GNU/Linux 2.2 r3 _Potato_ - Official i386 Binary-1
(20010427)]/ unstable contrib main non-US/contrib non-US/main

If not you can use apt-cdrom to add all your CDs, so you don't need to
edit that by hand.

Beside that you can define priorities for your sources in
/etc/apt/preferences. Create it if doesn't already exist. You can set
your prefered distribution version and that way you can use e.g.
packages from testing by default and if needed you can also install
packages from unstable with 'apt-get install -t unstable '. For
using packages from testing by default /etc/apt/preferences  would look
like this:

# this lowers the priority level of unstable packages
Package: *
Pin: release a=unstable
Pin-Priority: 50

And of course you can also set versions for single packages. See 'man
apt_preferences' for details.

Regards,
Christian


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



Re: Nvidia driver

2003-03-06 Thread Christian Schoenebeck
On Thu, 6 Mar 2003 11:24:44 +0100
"Willem-Jan Meijer" <[EMAIL PROTECTED]> wrote:

> Hello again,
> 
> Now i've built the nvidia package and I installed it, dselect says
> it's installed correctly, But now I don't know how get the driver
> installed so I can use the driver with X

You're speaking about the kernel driver, right? You also need to install
the nvidia-glx package and then modify your /etc/X11/XF86Config-4 like
the following description from the nvidia-glx readme file:

If you already have an XF86Config file working with a different driver
(such as the 'nv' or 'vesa' driver), then all you need to do is find
the relevant Device section and replace the line:

   Driver "nv"
(or Driver "vesa")

with

   Driver "nvidia"

In the Module section, make sure you have:

   Load   "glx"

You should also remove the following lines:

   Load  "dri"
  Load  "GLcore"

Note: if you have version 4.x of the X server (you can check this with 
'dpkg --status xserver-common'), which is most probably the case, then
you have to edit XF86Config-4 instead of XF86Config.

Regards,
Christian


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



Re: How to gather information about a open port?

2003-03-06 Thread Christian Schoenebeck
On Thu, 6 Mar 2003 10:45:05 +0100
Qian Gong <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> I use nmap to detect the security of my friend's win2k machine and
> find a open tcp port 1039. We tried several days but can not find any
> information about this port. Is it possible to use some Linux tools to
> probe this port and gather information during communication with this
> port? Thanks a lot for any suggestions.

Is it a Dell system?

As this is not known to me as a standard service, it could be either
Dell's monitoring software or a trojan. There's a VB trojan that uses
this port.

Fiddling with 'telnet host port' can also help in such cases.

Regards,
Christian


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



Re: How to gather information about a open port?

2003-03-06 Thread Christian Schoenebeck
On Thu, 6 Mar 2003 14:44:48 +0100
Qian Gong <[EMAIL PROTECTED]> wrote:

> > As this is not known to me as a standard service, it could be either
> > Dell's monitoring software or a trojan. There's a VB trojan that
> > uses this port.
> > 
> > Fiddling with 'telnet host port' can also help in such cases.
> 
> After this command, the program just hangs after 
> 
> Escape character is'^]'.

Of course, you just established a connection to that port at this
moment. It's up to you to type in a command that the service will
respond on. So you have to know or to guess what the protocol looks
like. That's why I called it 'fiddling'. Just to get an impression what
I'm talking about, establish a telnet connection to any webserver (port
80) and then type "HEAD / HTTP/1.0" and the server will return it's
identification, version, etc. or try "GET /" and you will get the start
page of this server in plain text.

Again, there are several trojans that use that specific port e.g.:

http://securityresponse.symantec.com/avcenter/venc/data/backdoor.gapin.html
http://www.simovits.com/trojans/tr_data/y935.html

Google will tell you more! :)

Regards,
Christian


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



Re: How can I handle this situation?

2003-03-06 Thread Christian Schoenebeck
On Thu, 6 Mar 2003 16:43:34 -0600
"Phil Sager" <[EMAIL PROTECTED]> wrote:

> deb:/# iptables -L
> Note: /etc/modules.conf is more recent than
> /lib/modules/2.4.18-bf2.4/modules.dep
> /lib/modules/2.4.18-bf2.4/kernel/net/ipv4/netfilter/ip_tables.o:
> init_module: Device or resource busy
> Hint: insmod errors can be caused by incorrect module parameters,
> including invalid IO or IRQ parameters
> /lib/modules/2.4.18-bf2.4/kernel/net/ipv4/netfilter/ip_tables.o:
> insmod/lib/modules/2.4.18-bf2.4/kernel/net/ipv4/netfilter/ip_tables.o
> failed/lib/modules/2.4.18-bf2.4/kernel/net/ipv4/netfilter/ip_tables.o:
> insmod ip_tables failed
> iptables v1.2.6a: can't initialize iptables table `filter': iptables
> who?(do you need to insmod?)
> Perhaps iptables or your kernel needs to be upgraded.
> 
> I guess what I need is an answer to that last question Linux is
> asking.
> 
> Thanks in advance...I appreciate any and all help...

I'm just guessing, but it looks like you have installed another kernel
version recently. Have you tried 'update-modules'  and 'depmod -a'?

Regards,
Christian


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



Re: kernel: lp0 on fire ????

2003-03-07 Thread Christian Kaenzig
On Thursday 06 March 2003 20:57, Carla Schroder wrote:
> A Google search for  lp0 on fire turns up several hits:
> http://216.239.37.100/search?q=cache:bcjVD8F2zJUC:www.kalamazoolinux.org/ma
>ilarchive/0006/msg00188.html+lp0+on+fire&hl=en&ie=UTF-8 Apparently this is
> an old and honorable Unix humor tradition.

Well, according to this orther google search : 

http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&selm=linux.kernel.200208092200.RAA34736%40tomcat.admin.navo.hpc.mil&rnum=5

it is more likely to be here for a historical than for a funny reason.

Must have been great to work with computers back then :-).

Chris


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



compilation problems

2003-03-08 Thread Christian Fuchs
Dear Debian Community,

I just installed Debian 3.0.0r0 from the set of 7 cd's and I am very
excited about it 
(and a new user to debian).

I have, however a problem compiling any kind of C - Files.

I first tried compiling the kernbel source and got errors; then i write
a small 
hello-word program and i also got the same compilation errors.

The output is attached below.

I think that this woudl eb a package misselection i did during the
system install, but I 
cannot think of which package that might be. Can anyone give me a hint
of what to 
try?

Thank your very much for your help and time in advance!

Christian Fuchs

e-mail: [EMAIL PROTECTED]

===Cut===
File: test.c

#include 

void main (void) {
printf("hello world!");
}
===Cut===
Output compilation errors test.c

In file included from /usr/include/sys/types.h:132,
from /usr/include/stdlib.h:390,
from test.c:1:
/usr/include/time.h:82: parse error before `clockid_t'
/usr/include/time.h:82: warning: data definition has no type or storage
class
/usr/include/time.h:94: parse error before `timer_t'
/usr/include/time.h:94: warning: data definition has no type or storage
class
In file included from /usr/include/sys/types.h:215,
from /usr/include/stdlib.h:390,
from test.c:1:
/usr/include/sys/select.h:49: parse error before `suseconds_t'
/usr/include/sys/select.h:49: warning: data definition has no type or
storage class
/usr/include/sys/select.h:55: conflicting types for `__fd_mask'
/usr/local/include/bits/types.h:89: previous declaration of `__fd_mask'
test.c: In function `main':
test.c:3: warning: return type of `main' is not `int'
===Cut===


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



Re: buy or build computer?

2003-03-09 Thread Christian Schoenebeck
On Sun, 9 Mar 2003 13:55:32 -0500
"Peter Christensen" <[EMAIL PROTECTED]> wrote:

> A few people recommended the AMD Athlon processor over
> Pentiums.

Correct, e.g. more efficient in floating point operations than an Intel,
which you will appreciate in multimedia apps, but there are also
commercial apps which are specialized for Intel and only for Intel. So
it might also be dependend on which applications you're going to use.
But usually I would prefer AMD.

> And Matrox for video, 

I never used a matrox, but it's strength lies AFAIK in 2D and TV out
quality. If you need a good 3D card (e.g. if you're a gamer) then I
guess it would be a better idea to buy an ATI which seems to have
slightly better performance than NVidia based cards at the moment.

>Soundblaster or Ensoniq for sound.

Depends on what you're doing. Usually most people don't spend too much
consideration on their sound card. If you just want to know if they're
supported - Soundblaster is very well supported. But if you want to make
music you probably want to look for a better card or even an external
audio interface. No matter which card you'll prefer, I recommend it is
mentioned on this list:

http://www.alsa-project.org/alsa-doc/

> I've heard that computers nowadays are built with the cheapest
> possible components,

Nowadays? Of course on low-end computers, I don't remember a time when
that was not the case, but you also have to see the aspect that
computers are now as cheap as never before. There was a time when you
had to spend more than 5000$ for a lame 8088 (not even mentioning it's
poor capabilies). And today, if you were still willing to spend those
5000$ ...  do you think you'd have to fear poor components?

> so I was wondering if building it myself would be a good idea.
> It might not be much cheaper than buying one from Dell or Gateway, but
> if the result was a better quality machine it might be worthwhile.

If you have the time and patience, it always will.

> So far I've
> only had to replace broken components in my Gateway, such as the hard
> drive and CDrom, also added memory.  Building a computer would be a
> challenge, but I think I'd enjoy doing it...

Don't worry, fortunately doing that is child's play nowadays.

Regards,
Christian


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



Re: Bad Debian (L.A.H.)

2003-03-09 Thread Christian Schoenebeck
On Sun, 9 Mar 2003 20:35:22 +0100
Frans Pop <[EMAIL PROTECTED]> wrote:

> Glad you think well of Debian. It seems to me that people reviewing
> Debian frequently make the mistake of looking only superficially and
> giving a negative opinion because they fail to understand the concepts
> behind it.

You know what's fussing me the most? Why don't people face their
critical theories to the people who are actually responsible for it
before making it public? It's always good to make your own ideas,
opinions and raise critics about something - that's the only way for
improvements and going on forward, but if you are going to make your
critics public to thousands or even millions of people it's very unfair
and lazy not even to verify your critics when the other side won't get 
the chance to disprove it. Unfortunately most people are still so green
to believe in such statements without also looking for other opinions.

Regards,
Christian


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



Re: Video Screen shift to the right

2003-03-13 Thread Christian Schoenebeck
On Thu, 13 Mar 2003 14:23:08 -0500
"Wathen, Metherion" <[EMAIL PROTECTED]> wrote:

> solution. I just installed Woody (stable) on an older PC with a 3Dfx
> Voodoo3 video card (16Mb RAM on the vid card) after some trial and
> error I finally got X-4.1 to work but now it shifts the video screen
> to right far enough that the monitor/screen adjustment buttons aren't
> effective, yet everything (so far) displays in the visible area.

Play a bit with xvidtune and if your satisfied with one setting, then
add those to your /etc/x11/XF86Config-4. You could add one or more new
video modes to your monitor section like this:

Section "Monitor"
Identifier  "Generic Monitor"
HorizSync   30-69
VertRefresh 50-120
Option  "DPMS"

# 1024x768 @ 82 Hz, 65.18 kHz hsync
Mode "1024x768c"
DotClock85
HTimings1024 1056 1176 1304
VTimings768 772 775 795
EndMode

...

EndSection

Of course you can call the video mode(s) whatever you want, but I always
use to name it to the resolution plus "c" for "custom". Then you can use
this video mode in your display modes in the screen section:

Section "Screen"
Identifier  "Default Screen"
Device  "Generic Video Card"
Monitor "Generic Monitor"
DefaultDepth24

...

SubSection "Display"
Depth   16
Modes   "1024x768c" "800x600" "640x480"
EndSubSection
SubSection "Display"
    Depth   24
Modes   "1024x768c" "800x600" "640x480"
EndSubSection
EndSection

Don't forget to set your default depth and that's it!

Regards,
Christian


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



Re: Unstable/Java/Mozilla

2003-03-16 Thread Christian Schoenebeck
On Sun, 16 Mar 2003 11:54:42 -0800 (PST)
Florentin Ionescu <[EMAIL PROTECTED]> wrote:

> There is blackdown java compiled with gcc3.2 - but there is no debian
> package AFAIK and that should solve the problem.
> 
> ftp://ftp.mirror.ac.uk/sites/ftp.blackdown.org/java-linux/
> JDK-1.4.1/i386/01/j2re-1.4.1-01-linux-i586-gcc3.2.bin
> 
> ftp://ftp.mirror.ac.uk/sites/ftp.blackdown.org/java-linux/
> JDK-1.4.1/i386/01/j2sdk-1.4.1-01-linux-i586-gcc3.2.bin
> 
> Now from my previous experience, if you use update-alternative command
> you can set java and javac but my question is haw do you inform the
> system that you do _have_ an JRE otherwise is trying to intall
> kaffe,etc ?

It should be packaged with:
Provides: java-virtual-machine, java-runtime, java1-runtime

But I would like to know if there's a way to use one of the free VMs
with mozilla. If anybody already made it or knows how to do it, let me
know!

Regards,
Christian


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



Re: AD 1980 audio driver

2003-10-17 Thread Christian Schnobrich
On Thu, 2003-10-16 at 14:41, Adam Galant wrote:

> My system:
> ASUS A7V8X (manual says it has AD1980 codec)
> Debian 3.0 / 2.4.18 kernel.

I had almost the same problem this week. My board is an ASUS K7M, don't
know how far away that is from your hardware.

Eventually, I got the sound working although I don't quite know how.

My /etc/modules now contains only the entry "via82cxxx_audio" and
everything is mostly fine, however, I'm quite sure that it did not work
when I tried the same driver with lsmod on the running system.

BTW, "mostly fine" means that I get a terribble noisy clicking at first;
it sounds very much like a hardware issue, but once the first sound is
played the noise stops and won't come again.

cu,
Schnobs




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



HP ProLiant DL560

2003-10-17 Thread Christian Riis
Hello,

I am charged with the job of installing Debian on an HP ProLiant DL560-server. Now 
this machine has a wierd SCSI-controller (Smart Array 5i plus from Compaq) which needs 
the bf24 kernel in order to run. The machine also has two NC7781 NICs. These I am 
having trouble with. As I understand it, a nice driver for these cards is the bmc5700 
which I have gotten to compile. However when I try to insmod it (or anyone of the .o 
files the compilations creates) it reports that it's written for the 2.4.18 kernel and 
that I'm running 2.4.18-bf24 (which is true due to the SCSI-controller). If i insmod 
-f it, it reports all sorts of horrible errors. I was hoping that someone here might 
have had succes getting Debian to run decently on an HP ProLiant DL560. Any help would 
be greatly appreciated.

Regards
    Christian Riis

-- 
PUNKT KU, IT-Afdelingen
Københavns Universitet
Post: Nørregade 10, POB 2177, 1017 Kbh. K
Besøg: Museumsbygningen lok. 217
Tlf. 353-22846
http://www.ku.dk/portal


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



Advanced printing... continued

2003-10-21 Thread Christian Schnobrich
Hello,

after some try-and-error I eventually got printing to work; cups,
foomatic and xpp now work hand-in-hand.

One issue left: my paper size is A4, but xpp won't let me select
anything other than US Letter. Or rather, I can point at A4, do the
selection, and end up with US Letter still being highlighted.

This doesn't seem to be too much of a problem; at any rate, all
printouts I made so far fit on my (smaller) A4 sheets. Still, it's
annoying and I'd like to know how to fix it.
Even more because I'd like to print envelopes now and then.

cu,
Schnobs




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



Re: Advanced printing... continued

2003-10-23 Thread Christian Schnobrich
On Wed, 2003-10-22 at 15:43, Wayne Topa wrote:

> > One issue left: my paper size is A4, but xpp won't let me select
> > anything other than US Letter. Or rather, I can point at A4, do the
> > selection, and end up with US Letter still being highlighted.
> 
> Have your tried editing the .ppd file?
> 
> Changing the below to A4?
> 
> *DefaultPageSize: Letter
> *DefaultPageRegion: Letter
> *DefaultImageableArea: Letter
> *DefaultPaperDimension: Letter

I did, but in vain -- I thought at first. I also had to reconfigure the
printer through the cups web-frontend to make it use the changed ppd.
Now it's a half-solution, A4 being the fixed paper size as Letter was
before.
While this will do for approx. 98% of my print jobs, I still wonder why
I can't change the media format through xpp.

I also changed the following .ppd line (was 'False'):

*VariablePaperSize: True

If this makes any difference, I didn't notice it so far.

cu,
Schnobs

PS: apologies for my recent post coming four times. I hope it was my
personal fault; if this message again comes in several copies, I'll need
help with my configuration for evolution as well...





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



how to set up a mix from stable/testing/etc

2003-10-23 Thread Christian Schnobrich
Hello,

Woody's spamassassin (2.20) provides me with a hit rate of about 60%;
partly to increase this, partly because I'm curious about that fancy
Bayes filter, I'd like to have a more recent spamassassin.

But how?
I'm a little shy of installing tarballs -- I'm afraid this would give me
trouble when eventually I want to install the .deb package.

Leaves me with getting it from testing; I regularly see posts on this
list where people claim to have a mixed setup from stable / testing /
unstable, but I found no clue on how I could do this myself.

Could someone please provide me with a few keywords for a google search,
or point me directly to the appropriate documentation?

cu,
Schnobs


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



Re: how to figure out the gateway number?

2003-10-23 Thread Christian Schnobrich
On Thu, 2003-10-23 at 18:52, Andrew Kasza wrote:

> I know my IP address, netmask, broadcast.
> 
> Is there a way to figure out the network and gateway
> number?

Simple answer:
The gateway is the machine on your network that is connected to the
internet. Unless you have dhcp on your network, you can't 'figure out'
the gateway adress. Either you know, or you dont. If in doubt, ask your
Sysadmin.

More complex:
Learn more, read http://www.tldp.org/LDP/nag2/index.html

Sorry if this doesn't really help you, but to give you a precise answer
I'd need a lot more information. Starting with "is this machine on a
network, or do you have a ppp link to your provider"?

> Is it enough to do the following three steps?:
> 1step 'ifdown --all'
> 2step
> ' to change the file /etc/network/interfaces'
> 3step 'ifup --all'

You don't need to shut down your interfaces before editing the file, it
will only be read once each time the interfaces are brought up.
So, just change your file and ifdown/ifup afterwards.
Or, even better, type '/etc/init.d/networking restart'

cu,
Schnobs



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



dpkg --get-selections

2003-11-01 Thread Christian Schnobrich
I've got a machine with a freshly installed woody and wanted to clone
the installed software from a running system. I did as seemingly is
common lore:

> > On source machine:
> >
> > dpkg --get-selections >selections.txt
> >
> > On destination machine:
> >
> > (make sure sources.list is the same)
> > apt-get update
> > dpkg --set-selections  > apt-get upgrade


And nothing happens. apt-get upgrade won't install a single package.
Doing another get-selections on the target machine indicates that the
package list was not changed by set-selections.

Did I miss something?

cu,
Schnobs


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



aptitude and dependency handling

2003-11-04 Thread Christian Schnobrich
Hi,

I'm running a woody system with backports of Gnome2 and OpenOffice.
And I noticed that Aptitude has at times a strange way of handling
dependencies.

When browsing the packages, I regularly find unmet dependencies.
Well, not exactly dependencies but packages labeled 'recommended' or
'suggested'. This although I told aptitude to 'get it all' 

In the first cases I noticed, there were several choices available. So I
presumed that aptitude, not knowing what to do, just left it as it was.
But in the mean time I've stumbled across several cases where there
would be only one package to provide the recommendation/suggestion.

I didn't keep notes -- but mozilla-psm was one I had to fetch manually,
another case I had often was -doc.

As in many cases the usability of my system increased a lot by
installing them, I wonder wether there is a way to turn this off, or at
least to get a list of all required/recommended/suggested packages that
were not installed.

Another issue while I'm at it, though not aptitude-related as I think:
after installing a new package, sometimes the manpage is not available
until I run mandb myself. How to fix this?

cu,
Schnobs


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



pppd won't reconnect

2003-11-04 Thread Christian Schnobrich
Hi,

I'm on one of those DSL lines that will disconnect me at least once a
day, so that I don't have a static IP.
I've set up my box to reconnect immediately, but about five days a week
it doesn't work but requires me to log into the box and 'pon' myself.

Here's a few snipplets from syslog. I looked up ioctl and tcflush, but
won't pretend that I understood.

Anyone got a clue what's going on?

Regards,
Schnobs


what I get quite often

> Nov  3 07:00:17 zwerg noflushd[20861]: Spinning up /dev/hdb after 20 minutes.
> Nov  3 07:00:16 zwerg pppoe[9734]: Session terminated -- received PADT from peer
> Nov  3 07:00:20 zwerg pppd[2239]: LCP terminated by peer
> Nov  3 07:00:20 zwerg pppd[2239]: ioctl(PPPIOCSASYNCMAP): Inappropriate ioctl for 
> device(25)
> Nov  3 07:00:20 zwerg pppd[2239]: tcflush failed: Input/output error
> Nov  3 07:00:20 zwerg pppd[2239]: Exit.



what I'd like to have always---

> Nov  4 03:28:50 zwerg pppd[21686]: LCP terminated by peer
> Nov  4 03:28:50 zwerg pppoe[21687]: Session terminated -- received PADT from peer
> Nov  4 03:28:50 zwerg pppd[21686]: Modem hangup
> Nov  4 03:28:50 zwerg pppd[21686]: Connection terminated.
> Nov  4 03:28:50 zwerg pppd[21686]: Connect time 955.7 minutes.
> Nov  4 03:28:50 zwerg pppd[21686]: Sent 2053620 bytes, received 9756235 bytes.
> Nov  4 03:28:52 zwerg noflushd[20861]: Spinning up /dev/hdb after 578 minutes.
> Nov  4 03:29:20 zwerg pppd[21686]: Serial connection established.
> Nov  4 03:29:20 zwerg pppd[21686]: Using interface ppp0
> Nov  4 03:29:20 zwerg pppd[21686]: Connect: ppp0 <--> /dev/ttyp0
> Nov  4 03:29:21 zwerg pppoe[27260]: PADS: Service-Name: ''
> Nov  4 03:29:21 zwerg pppoe[27260]: PPP session is 6578
> Nov  4 03:29:21 zwerg pppd[21686]: kernel does not support PPP filtering
> Nov  4 03:29:22 zwerg pppd[21686]: Cannot determine ethernet address for proxy ARP
> Nov  4 03:29:22 zwerg pppd[21686]: local  IP address 217.229.70.90
> Nov  4 03:29:22 zwerg pppd[21686]: remote IP address 217.5.98.97
> Nov  4 03:38:01 zwerg /USR/SBIN/CRON[27280]: (mail) CMD (  if [ -x /usr/sbin/exim -a 
> -f /etc/exim/exim.conf ]; then /usr/sbin/exim -q ; fi)
> Nov  4 03:43:59 zwerg noflushd[20861]: Spinning down /dev/hdb.



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



Re: aptitude and dependency handling

2003-11-04 Thread Christian Schnobrich
On Tue, 2003-11-04 at 12:07, Colin Watson wrote:
> On Tue, Nov 04, 2003 at 11:59:10AM +0100, Christian Schnobrich wrote:
> > after installing a new package, sometimes the manpage is not available
> > until I run mandb myself. How to fix this?
> 
> The man page is not available *at all*? Could you please expand on that?
> This was often the case with older versions of man-db, but shouldn't
> happen on woody.

OK, although I might now be over-expanding on the matter...

Just yesterday I was trying to make faxing available. To that end, I
installed gfax (and all that comes with it, hylafax-client among
others).
next thing I do is:

[EMAIL PROTECTED]:~$ man gfax
No manual entry for gfax
[EMAIL PROTECTED]:~$ man -k fax
fax: nothing appropriate.
[EMAIL PROTECTED]:~$ su
Password:
pferd:/home/schnobs# mandb
[approx 12 lines of output]
pferd:/home/schnobs# exit
[EMAIL PROTECTED]:~$ man -k fax
faxalter (1hylafax)  - alter parameters of a  job queued for transmission
faxcover (1hylafax)  - generate a  cover page for an outgoing facsimile
faxmail (1hylafax)   -  mail-to-fax gateway application
[..and a few more entries]

-eof-






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



Re: hdparm script

2003-11-04 Thread Christian Schnobrich
On Tue, 2003-11-04 at 03:20, Alfredo Valles wrote:
> Hi all.
> 
> Where should I put a script that sets my drives settings with hdparm?
> 

The sript itself should at any rate reside in /etc/init.d/
Then you create a link from wherever you'd like to get it started; I
suggest putting it in /etc/rc2.d/



HTH,
Schnobs


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



Re: Going to give it another shot-need more help

2003-11-07 Thread Christian Schnobrich
On Fri, 2003-11-07 at 09:11, Mark Healey wrote:
> On Thu, 06 Nov 2003 21:34:57 -0600, Kent West wrote:
> 
> >Mark Healey wrote:
> >> On Thu, 6 Nov 2003 13:09:24 -0500, ScruLoose wrote:
> >>
> >> First off.  I am doing this because none of the kernels on the cds
> >> support my nic.  Consequently, any suggestions that involve using
> >> apt-get isn't really helpful.
> Also, my X isn't working either so the same applies any graphical
> tools.

I recognize this answer is coming rather late...

first off: you don't need a network connection to install stuff.
you can just as well download a package, bring it to some removable
media, and carry it to the box in question. Then "dpkg -i".

Over here we call this the "sneaker network".

To make this easier, there is a package called "apt-zip".
Please note that you don't necessarily have to use zip disks. Any
removable media will do, you can burn it to DVD or punch a paper tape.
Doesn't matter. 

Next, I strongly suggest you build your kernel "the debian way" as has
been pointed out in several posts. That's really easy. The above should
enable you to install all the necessary packages.

HTH,
Schnobs



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



No to wine! (was:"Red Hat recommends...")

2003-11-08 Thread Christian Schnobrich
On Fri, 2003-11-07 at 00:52, David Millet wrote:

> >   
> Or not until wine begins running these and every windoze app that
> everyone uses flawlessly, which hopefully happens soon.

No! 
please.

Anyone remembers OS/2? I think that one important reason why it failed 
(among admittedly many others) is that many developers didn't see any
need to write software for it. I've heard/read many times that an OS/2
version wasn't necessary as people can run the windows software almost
just as well.
In the end, I hardly ever booted into OS/2, because there I'd not only
have to deal with the issues of Win31 software, but with the problems of
running them under an alien system as well.

In the same way, I wouldn't use Linux if I had to run 90% of the
applications through wine. Not even if it were 'only' 20%... but as
things are, Linux natively offers almost all I need, and that's why I
consider it to be a good alternative.

Wine is a necessary crutch, suitable to run the one or two apps that are
not (yet?) available for Linux. But in my eyes it will be no solution to
improve the crutch. On the contrary, having a really good wine might
even be dangerous.
At any rate, I think it's a strange philosphy to hope that a workaround
should become the actual solution.

cu,
Schnobs


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



Ways to send mail

2003-11-08 Thread Christian Schnobrich
Hello,

from the yahoo/spam-o-rama thread:
"You should always send outgoing mail through your ISP's smarthost, or
some other similar machine."

Well I've done so on the machine that serves as my internet gateway and
faxserver and so on, and found out that I don't seem to be able to send
mail to anyone else but myself.
Not that I'd have tried too often -- that's not the box I usually send
mail from, even less after I had the first few coming back to me.


What I get is this:

> A message that you sent could not be delivered to one or more of its
> recipients. This is a permanent error. The following address(es)
> failed:
> 
>   [EMAIL PROTECTED]
> SMTP error from remote mailer after RCPT
> TO:<[EMAIL PROTECTED]>:
> host ravintalo.eduart.de [62.146.48.62]: 554
> <[EMAIL PROTECTED]>:
> Relay access denied

I always understood it so that many machines wouldn't accept relayed
mail, perhaps as a means of spam protection.
Or does it mean that ravintalo.eduart.de won't even accept mail to be
relayed?
What's going on here, and can I do something about it (other than
SMTPing directly from evolution, as I do now)?

cu,
Schnobs


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



Re: problems with 'root' floppy

2003-11-10 Thread Christian Schnobrich
On Sun, 2003-11-09 at 13:40, Jon Medding wrote:
> I have an old Pentium 75 mhz laptop from MidWest Micro and I am trying to
> load the latest stable version of Debian (V3.0r1).

> The boot process starts OK.  At the boot prompt, I press enter and then when
> I insert the 'root' floppy into the drive and press enter (upon request), it
> gives the message:
> 
> RAMDISK: Compressed Image found at block 0
> 
> and that's it.

Three things come to mind. How much RAM do you have, actually? I don't
know the exact amount required, but 8Mb will be too little.

Next possible cause would be bad floppies, but you seem to be aware of
that issue.
Anyway, I'd expect a read error to be reported in that case.

Third, some other hardware glitch. Esp with a laptop this might well be
possible. At the time the 'rescue' floppy shows you the boot prompt, you
may call several screens of help by pressing the F2-F10 keys, like
information about much needed boot parameters and stuff.
Btw, one of them will tell you the absolute minimum memory requirements.

HTH

cu,
Schnobs




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



Re: Configuring AC97 sound

2003-11-10 Thread Christian Schnobrich
On Mon, 2003-11-10 at 22:41, Lynn W. wrote:

> Various Google searches suggest installing modules ac97_codec.o, sound
> and soundcore, but I have no idea where to find these or how to install
> these (they do not seem to be on the first Debian Woody CD and not in
> apt-get).

At the risk of annoying you terribly...
You are aware of the concept of loadable kernel modules, aren't you?

If not, try 'modprobe ac97_codec' for a quick fix, and have a good look
the manpages of the commands: modpobe, insmod, lsmod, and rmmod. Though
this might be far more technical and in-depth than you can bear right
now, but I'm not competent enough myself to give lectures on that topic.

cu,
Schnobs


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



modutils (was:Configuring AC97 sound)

2003-11-10 Thread Christian Schnobrich
On Tue, 2003-11-11 at 00:27, Lynn W. wrote:
> No annoyance at all :) 
> Vaguely--I think the commands you describe relate to displaying the
> modules and setting them up to be used/recognized? My question is
> probably more along the lines of where do I get these? 

Get them? You don't need to get them -- every home should have them.
The package they are in is called 'modutils', and if I'm not completely
mistaken it needs massive tampering to install Debian without getting
modutils as part of the deal.

The same with the loadable kernel modules (aka device driver modules):
the kernel comes together with the modules, you will find them under 
/lib/modules//kernel/...

As for kernel versions... it won't hurt at all to install a slightly
newer version. You don't need to start from scratch. Start dselect (or
preferably aptitude), look for 'kernel-image' and pick the one that
suits you best.

cu,
Schnobs






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



Re: Free-lance - office move stuff-o-rama

2003-11-13 Thread Christian Schnobrich
On Thu, 2003-11-13 at 02:20, BruceG wrote:

> Yeah, OOo for Windows might be a great start! I burned an OOo 1.1.0 RC2 CD.
> Will need to burn a new CD, and maybe pick up a user's guide.
> 
At any rate, it worked for me. When I started my business a few years
ago I deliberatly chose Staroffice (v5.2 then) not only for the cost,
but also a means to smoothen the eventual transition to Linux.

>From time to time I had 'strangers' working at my machine, all said they
didn't feel any difference from the MS product. In particular my
accountant was happily creating spreadsheets of low to medium complexity
and didn't notice for several hours that this was not Excel...

cu,
Schnobs


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



Re: What's the best package manager for single-package upgrades?#

2003-11-13 Thread Christian Schnobrich
On Fri, 2003-11-14 at 03:56, Joe Rhett wrote:

> > Use a real package manager (not apt-get) which shows you new packages.
>  
> The really funny thing about this whole topic is that we've now come full
> circle.  Read the subject line.

Well, apt-get simply is no package manager. At least not in the common
sense. apt-get install  is a great thing if you already know
what you want, but a package manager provides a little more, UI-wise.

Browsable package lists, for example.

I'm quite fond of aptitude, give that one a try. Can be used like
apt-get, but has also an interactive mode (ie, browser). Some say
synaptic is even better, but it's an X application I've never really
tried.

So much for the topic at hand... in general: fear not.
It's part of the Linux learning process that one learns where to pick up
information. man, info, /usr/share/doc/, www... google is your friend,
but google is not the be-all and end-all of everything.
Especially if you what you're looking for can't easily be phrased as a
search term, or scores far too many hits.
Keep in mind that many applications have their own mailing lists. And
while you probably don't want to subscribe to all of them, you might get
better results when searching their arcives directly than via google.


> > Wrong:
> http://source.backports.org/debian/dists/woody/mozilla/binary-i386/
> > has mozilla 1.5.
> 
> How is one to find this?  I didn't find a link to that site anywhere
> 
www.apt-get.org -- I wish I'd found out about that site a lot sooner
that I actually did. Your bookmarks ain't complete without it.

cu,
Schnobs


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



fetchmail configure question

2003-11-14 Thread Christian Scheiblich
Hello,

I got a fetchmail configure problem.

Fetchmail is runnig as a daemon and fetching every
10 minutes mails from diffrent mailboxs and delievers
them to exim, great it works!
But fetchmail modifies the headers of the mails
in such a way, that I can't figure out which mail
came from which mailbox!

How to solve!?

Christian Scheiblich
-
[EMAIL PROTECTED]


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



Re: internet

2003-11-15 Thread Christian Schnobrich
On Sat, 2003-11-15 at 14:05, Ed and Pat Reilly wrote:
> HI,
> I have setup debian on my pc along with windows 98 se. I've had redhat
> and suse before and they recognized my cable connection and set it up.
> How can I get debian to recognize my internet connection?


Well, your mail lacks about every bit of information we might need to
help you. Most likely your internet connection is a sort of ppp link
(though I can't even be sure of that).
'man -k ppp' should list about a dozen manpages that might contain
information applicable to your problem. Even if you can't fix it
yourself, after reading the manpages you will be able to provide us with
a few keywords on what exactly isn't working.

Sorry, but "it used to work and now it doesn't" simply ain't enough.

cu,
Schnobs


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



Re: kill with regex?

2003-01-19 Thread Christian Jaeger
At 15:40 Uhr + 19.01.2003, Hugh Saunders wrote:

ps x gives a list of xine's which i would like to kill


Possibly those are threads, not distinct processes. If this is the 
case (in case of threads ps aux reports the same amount of memory for 
each; only looking at the xine docs or source can tell for sure) it 
should be enough to kill *one* of those process ids.  (And of course, 
killall xine works too, but this just looks at the process name so in 
general is a bit dangerous.)

Christian.


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



Re: Passwordless SSH still asks for password when remote username differs

2003-01-19 Thread Christian Jaeger
Make sure that the user's home dir on the remote host is not group 
writeable (and the .ssh subdir as well). sshd does some checks before 
using some files.

Christian.


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



USB-Netzwerkkarte beim Anschließen konfigurieren

2003-01-22 Thread Christian Kohlmeyer
Einen schönen guten Morgen, an die gesamte Newsgroup!
Genug geschleimt ;), jetzt gehts zur Sache.

Ich betreibe an einem Notebook (Mitac 5033) die USB-Netzwerkkarte ausm
Atelco. Die Karte läuft einwandfrei mit dem als 'experimental'-Treiber
ADMtek Pegasus-based Ethernet. Sie wird auch immer korrekt erkannt, wenn
sie angeschlossen wird und der Treiber wird geladen.

Jetzt zu meiner Frage: Kann ich die Konfiguration von eth0 (das ist die
Karte), immer wenn sie angeschlossen wird automatisch ablaufen lassen?
Wenn ja, wie geht das?

Wenn ich die Konfiguration in der '/etc/network/interfaces' mache, dann
wird die Karte nur konfiguriert, wenn sie beim booten eingesteckt ist.

Ich bedanke mich schonmal im voraus für eure Hilfe!

Ciao,

Christian


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




Re: USB-Netzwerkkarte beim Anschließen konfigurieren

2003-01-22 Thread Christian Kohlmeyer
Thank you for your help!
It was exactly, what I searched.

Sorry, that I wrote in german language in an english newsgroup.

Have a nice day.


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




Re: we've been hosed, Tommy

2003-01-25 Thread Christian Jaeger
Some ideas:

- Use apt pinning.  /etc/apt/preferencesman apt_preferences
 i.e.
  Packages: *
  Pin: release a=stable
  Pin-Priority: 2000
  Packages: *
  Pin: release a=testing
  Pin-Priority: 900
  Packages: *
  Pin: release a=unstable
  Pin-Priority: 400
then put all three of stable,testing and unstable resources into 
/etc/apt/sources.list, apt-get update && apt-get upgrade
should downgrade everything to stable (since 2000 is > 1000). At 
least it should help resolving all dependencies since every 
dependency should be found in sources.list.

- if apt/dpkg doen't work because of unresolved symbols: booting from 
an installer CD will get you a place from where to work. dpkg has 
options for giving the filesystem root. No idea if this works in that 
case. If not maybe copy over the libraries manually.

Christian.


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



Re: Mutt Save-Hook Help

2003-02-10 Thread Christian Arthaber
* Curtis Spencer <[EMAIL PROTECTED]> [2003-02-11 00:49]:
> I am trying to get mutt to save all messages from the debian user list
> in a file called debian.  I don't fully understand the save-hook functionality.
> my muttrc looks like this, yet everything still gets saved to the inbox.
> 
> set mbox=+inbox
> set record=+outbox
> set sort=threads
> set noprompt_after
> # Mail Header Hiding
> ignore *
> unignore from date subject to cc
> 
> save-hook '~C "debian-user"' +debian
> 
> Any help would be greatly appreciated.
> 
> Cheers,
> Curtis

would exactly do you want? you're save-hook should make mutt to save
the message into folder debian as soon as you are on the message and
press 's'. if you want the mail sorted automatically you should use
procmail or something similar.

hth,
christian


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




Re: Problems with Quake ]I[ Arena

2003-02-11 Thread Christian Arthaber
* [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2003-02-12 00:37]:
> Hi All,
> 
> I have recently installed Q3A on my debian Woody box. I can start the game
> in KDE from K menu, but no sound.

no help for that - using gnome :/

> Are there any packages related to Q3A that I should perhaps update. Or are
> there any options that I should put in. The thing just freezes when
> changing levels, and when I start the next level the next time game is
> started, it freezes again. What am I doing wrong?

i had a similar problem in gnome. it was solved by using:
http://planetquake3.net/download.php?op=viewdownloaddetails&lid=1267&ttitle=Quake_III_Arena_1.32b_Client_Only_(Linux)

hope this helps
> 
> Davor

christian


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




Re: Problems with Quake ]I[ Arena

2003-02-13 Thread Christian Arthaber
* [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2003-02-14 03:02]:
> Just a quick update on my efforts to solve this sound problem with Q3A.
> 
> After trying 1.32b point release and after a *lot* of googling I am
> convinced that the problem (crashing with sound) is related to i810 sound
> driver. I am using i810 sound driver (OSS) (which is reporttedly 'very
> alpha') and supports a smaller subset of features. When I run Q3A *without
> sound*, I have no problems (and the game is very quick!).
> 
> So I guess OSS i810 driver is OK for oggs, mp3s and such but as as soon as
> you try something more demanding like Q3A, problems may occur.

oooh i810. what sound card are you using? sis chipset onboard-sound?
if yes, then i had the same problem.. and, as sorry as i am, the
only way i got sound in q3a was buying a soundcard. 

> 
> So, the next step I guess is to build kernel with Alsa sound drivers for
> i810.  However, there are reports that Q3A crashes with beta drivers from
> ALSA, so there is a catch there too...

when i tried this half a year ago i didn't made it. so good look! -
i hope it will work now - and please post your experiences - would
be interesting.
> 
> Interesting...

indeed

> 
> Davor

christian


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




Re: Problems with Quake]I[ Arena

2003-02-14 Thread Christian Arthaber
* [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2003-02-14 12:24]:
> * [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2003-02-14 03:02]:
> 
> >oooh i810. what sound card are you using? sis chipset onboard-sound?
> >if yes, then i had the same problem.. and, as sorry as i am, the
> >only way i got sound in q3a was buying a soundcard.
> 
> Yes!!! It is SiS onboard-sound with CMI9738 chip.
> I hope you new soundcard wasn't too expensive... You can always use it in that next 
>computer without on-board sound :-)

bought it quite cheap from a friend of mine - so no need to worry i
spent too much money - and btw: i would have for q3 :)

> 
> This website http://www.exocore.com/technologies/linux/i810/i810-6.php3#ss6.1 gives 
>some info on how to do it.
> I am however hoping for i810 to be in kernel_sources. I'm at work now so I can't 
>check... From memory kernel 2.4 series has alsa too but I'm not sure
> now...

well not sure if you understood what i was trying to say (or if i
was capable to write what i meant due to my not that perfect english
knowledge) but i _did_ use the i810 drivers and i _did_ use alsa and
sound _did_ work. just didn't work in q3 :)
i am using the onboard sound now as second soundcard responsible for
my tv out - nothings more boring than to watch dvd on your tv while
the sound's coming out of computer boxes.

> 
>  Davor

christian


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




Re: Apache-perl install failure on sid

2003-09-27 Thread Christian Jaeger
At 7:32 Uhr -0700 25.09.2003, [EMAIL PROTECTED] wrote:
Anyone else have the problem of Apache-perl hanging on installation?
Yes I've seen it too, and downgraded to testing again because of it. 
(Time for a bug report if not done already)

Christian.

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



Probmelms mit Procmail

2003-10-05 Thread Christian Borchmann
Hallo,

What right have i to give to the .procmailrc file?


Subject: Mail delivery failed: returning message to sender

This message was created automatically by mail delivery software (Exim).

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  pipe to |/usr/bin/procmail
generated by [EMAIL PROTECTED]

The following text was generated during the delivery attempt:

-- pipe to |/usr/bin/procmail
   generated by [EMAIL PROTECTED] --

procmail: Suspicious rcfile "/home/spitfire/.procmailrc"
procmail: Couldn't read "/home/spitfire/.procmailrc"



mit freundlichen Grüßen

Christian "SPITFIRE" Borchmann

URL: http://www.borchi.de
Weekend Warrior´s Clan

URL: http://www.ww-clan.com
IRC: irc.de.quakenet.org #ww-clan

Jagdgeschwader 2 "Richthofen"

URL: http://www.jg2.de
IRC: irc.sturmovik.de #jg2

Gut gekotzt ist halb gefrühstückt...
(old german wisdom)



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



AW: Probmelms mit Procmail, exim, courier-imap...

2003-10-05 Thread Christian Borchmann
I checked it, but it still doe not work.

Maybe because of the courier-maildrop.

Exim is delivering the mail to the users Maildir only when .forward file in
the users home is |/usr/bin/maildrop. When removing courier-maildrop from
the system the mails are delivered to /var/mail/user.

I think there is somethink wrong with my exim.conf, i need the mails to go
spamschecking in spamassassin and then to the users and to the mailfilter...

Thanks for your help


mit freundlichen Grüßen

Christian "SPITFIRE" Borchmann

URL: http://www.borchi.de
Weekend Warrior´s Clan

URL: http://www.ww-clan.com
IRC: irc.de.quakenet.org #ww-clan

Jagdgeschwader 2 "Richthofen"

URL: http://www.jg2.de
IRC: irc.sturmovik.de #jg2

Gut gekotzt ist halb gefrühstückt...
(old german wisdom)



-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Gesendet: Sonntag, 5. Oktober 2003 11:17
An: Christian Borchmann
Cc: [EMAIL PROTECTED]
Betreff: Re: Probmelms mit Procmail




On Sun, 5 Oct 2003, Christian Borchmann wrote:

> Hallo,
>
> What right have i to give to the .procmailrc file?
>

chmod 644 .procmailrc
chown spitfire:spitfire .procmailrc
this is how mine is set.
-kev




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



AW: Probmelms mit Procmail, exim, courier-imap...

2003-10-05 Thread Christian Borchmann
I did this on Friday, thanks to google ;-)



... exim.conf: 

local_delivery:
  driver = appendfile
  group = mail
  mode = 0660
  mode_fail_narrower = false
  envelope_to_add = true
  return_path_add = true

  directory=${home}/Maildir
  maildir_format = true
  prefix = ""

The directory, maildir_form...

It works fine, but what role the courier maildrop is playing?

When i delete the .forward file in the /home/user all mail are be delivered
to /var/mail/user

Help me Obiwan Kenobi...

Christian


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



Re: .procmailrc

2003-10-05 Thread Christian Borchmann
so mach ich das:


.procmailrc [B---] 37 L:[ 12+21  33/ 60] *(580 / 947b)= .  10 0x0A

# Debian Mailinglisten sortieren

:0
* ^X-Mailing-List: <[EMAIL PROTECTED]>
Maildir/.Mailinglisten.debian-user-german/new

alles noch sehr rudimentär, denn ich hab das mit procmail auch erst heute
nachmittag kapiert ;-)


schau dir mal den header der mail an:


X-Mailing-List: <[EMAIL PROTECTED]> archive/latest/303787
X-Loop: [EMAIL PROTECTED]
List-Id: 
List-Post: <mailto:[EMAIL PROTECTED]>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Subscribe:
<mailto:[EMAIL PROTECTED]>
List-Unsubscribe:
<mailto:[EMAIL PROTECTED]>
List-Archive: <http://lists.debian.org/debian-user/>
Precedence: list

gute nacht

-- 
mit freundlichen Grüßen

Christian "SPITFIRE" Borchmann

URL: http://www.borchi.de

Weekend Warrior´s Clan

URL: http://www.ww-clan.com
IRC: irc.de.quakenet.org #ww-clan

Jagdgeschwader 2 "Richthofen"

URL: http://www.jg2.de
IRC: irc.sturmovik.de #jg2

Gut gekotzt ist halb gefrühstückt...
(old german wisdom)


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



Problems with Courier Packages after update today...

2003-10-07 Thread Christian Borchmann
I did an Update to my Debian/SID box today and got some errors:

Errors were encountered while processing:
 /var/cache/apt/archives/courier-authdaemon_0.42.2-9_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
Ack!  Something bad happened while installing packages.  Trying to recover:
dpkg: error processing courier-authdaemon (--configure):
 Package is in a very bad inconsistent state - you should
 reinstall it before attempting configuration.
Setting up sanitizer (1.63-1) ...

dpkg: dependency problems prevent configuration of courier-imap:
 courier-imap depends on courier-authdaemon (>= 0.42.2); however:
  Package courier-authdaemon is not configured yet.
dpkg: error processing courier-imap (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of courier-ldap:


My Problem is, that i can´t get my Mails via POP3 out of the subfolders of
my Maildir.

I am using Courier-imap (read and write mails) and courier-pop (for
synchronising mails to my windows box, the mail is only downloaded and
left on the server).

Help me Obiwan Kenobi...


Good Night

-- 

Christian "SPITFIRE" Borchmann

URL: http://www.borchi.de



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



Re: ProFTPd over NAT

2003-10-11 Thread Christian Jaeger
At 0:23 Uhr +0200 11.10.2003, Greg Bolshaw wrote:
Yeah. Surely there must be something I can do with ProFTPd to force it to use
my public IP?
MasqueradeAddress 1.2.3.4

- Chj.

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



Re: Do-all computer?

2003-10-12 Thread Christian Schnobrich
On Sat, 2003-10-11 at 21:20, alex wrote:

> I don't care whether it is one with a preinstalled MS Windows XP or 
> systemless or a preinstalled Linux, as long as it can be configured 
> with multiple Linux systems and MS Windows XP or 98SE as my old 
> Quantex is.
> 
> I'd go for one that I need to assemble myself except that I have no 
> idea how to recognize components that are suitable for Linux, ie, 
> motherboard, modem,...

No worries. Most stuff simply works, you especially don't need to worry
about CPU & Bus clock.
The Hardware you should check for compatibility is:
- Network interface 
- modem
- printer
- cdrecorder
- graphics card

For the Graphics card, just don't pick a too recent design; for printers
and cdrecorders, you can check the compatibility lists on the
linuxprinting and cdrecord websites.

Modem & NIC are more difficult. There's a phantastillion of different
designs and clones thereof and hardly any reasonable information to be
found on the package. In that case I suggest you simply make clear at
the time of purchase that those are meant to work under linux and that
you will return them if they don't.
This always worked for me -- I never had to return them. :)

What else? Well, I'm not up-to-date but too big a harddisk might be a
problem. If you want more than 128GB, go reading first. Also, recently
I've seen several posts from people having trouble with SATA -- maybe
you should avoid that too.
If you want to run Win98, your memory should not exceed 512 MB.

That's all I can think of right now -- though it may not be complete, I
don't think I missed something important.

cu,
Schnobs


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



'advanced' printing

2003-10-13 Thread Christian Schnobrich
Hello,

Trying to set up my printer I came to scratching my head so much that
I'll be bald real soon now.
The device in question is a Laserjet 2100 tn, network adaptor and
additional paper tray.

The problem isn't printing as such -- i had the first test page out in
less than five minutes.

But I'd also like to be able and chose the input tray, toner saving mode
and media size, if possible on a per-job basis. I came across a package
called 'gpr' that claims to do just that, but it won't work for me.
Not at all -- it won't even take my ppd file.
(got that file from linuxprinting.org)

Another possible candidate would be 'ifhp' -- but that's for lprng, and
AFAIK this would mean that I have to create my printcap file manually.
I'm a little afraid of this. I'm sure it would take me the better part
of a day, and I'm not at all sure that the result would come anywhere
near what I want.

So... any input will be appreciated.
Especially if it points to something I perhaps failed to see, or offers
another way of setting it up in less than four hours.


cu,
Schnobs


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



Re: Use of apt-proxy with net install of sarge

2003-10-13 Thread Christian Schnobrich
On Mon, 2003-10-13 at 22:28, Paul E Condon wrote:
> On Mon, Oct 13, 2003 at 10:28:56AM +0200, Chris Halls wrote:
> > On Sat, Oct 11, 2003 at 10:15:54PM -0600, Paul E Condon wrote:
> > > But, I can't figure out what I should tell the netinstall software when it
> > > asks me to specify a mirror. Some particulars of my system:

Say, are you talking about the installation step 'installing the base
system'? I never managed to get those served through my apt-proxy,
either.

If anyone ever has, please tell me how.


The proxy serves any apt-get requests good enough (though while I'm at
it, I'd like to complain about the long latency times).
Just for the fun of it, I just tried it manually:

[EMAIL PROTECTED]:~$ wget
http://zwerg:/main/dists/woody/main/disks-i386/base-images-current/basedebs.tar
--03:17:15-- 
http://zwerg:/main/dists/woody/main/disks-i386/base-images-current/basedebs.tar
   => `basedebs.tar'
Resolving zwerg... done.
Connecting to zwerg[192.168.1.1]:... connected.
HTTP request sent, awaiting response... 404 Unknown extension.
03:17:16 ERROR 404: Unknown extension..


By the way: how does apt-get catch the files? Until now, I thought it
calls wget. But then I noticed that I first had to get wget myself in
order to run my little test.

cu,
Schnobs


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



Re: kernel upgrading

2002-10-22 Thread Christian Mascher
> On Mon, Oct 21, 2002 at 12:48:22AM -0700, np rpr wrote:
> Hi All,
> I am a new debian user. and am trying to upgrade my
> machine to  2.4.19, I downloaded the image and tried
> deb -i kernel-image.. it told me to add initrd=/initrd
> under vmlinuz, I did that but when I tried lilo.. I
> got the error that initrd doesn't exist. According to
> the message I am supposed to edit
> /etc/kernel-img.conf.
> But I couldn't find this file? 

Same thing happened to me (Debian Newbie as well) yesterday. I even
removed the initrd=... entry, issued lilo command and rebooted (although
I was sort of warned by the conf-script) finding that kernel 2.4
actually can't boot without this entry.

Starting with a boot-floppy (glad to have it) I set the entry in
lilo.config to

initrd=/boot/initrd-img-2.4.16-k6 (or whatever -look in /boot/ )

did lilo, and could boot the new kernel from hd.

I think the installation(configure)-script could have been a bit more
helpful, it mentions the important things, but is misleading when it
says
'put initrd=/initrd in your lilo.config'.

As to the file /etc/kernel-img.conf: it turned up after some fiddling
around (with entries I didn't put in there), so the installing script
seems to use it. But I couldn' find any documentation about it.

Bob Nielsen said:
>If you install kernel-package, the man page and a sample file for
>/etc/kernel-img.conf will be installed.

Ah, OK, thats where you can get it ;-).

I wanted to have the new kernel, because the es1370 module was
apparently not in the standard woody kernel (idepci2.2...). With the new
kernel I can make insmod es1370 and voila: sound works! (Never got that
with older SuSeDistros I worked with since 1998.) 

Christian


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




Re: .forward file another question

2002-10-24 Thread Christian Mascher
> One more question regarding this file.  Is there a way to have it just
> send a carbon copy to another user?  I am pretty sure if you had it
> just
> forward the mail back to you again that it would go in an endless
> loop.
> Thanks for everybody's help.

I think you can just put a backslash on a line and mail will be copied
to your own directory as well as forwarded:

# .forward
[EMAIL PROTECTED]
\

HTH
Christian


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




Nautilus, MIME types and icons

2002-10-26 Thread Christian Maus
Hi there,

I've recently installed the gnome2/nautilus backport on my woody system.
Now, Nautilus displays different icons for files with the same MIME type
e.g MP3 files. Can anybody give me a hint how to change this behaviour?

Christian




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




Unable to load any usable ISO8859-1 font

2002-10-27 Thread Christian Nybø
Hi,

xfontsel gives the following warnings:
Warning: Unable to load any usable ISO8859-1 font
Warning: Missing charsets in String to FontSet conversion
Warning: Unable to load any usable fontset

xdvi gives the same errors and exits.

What information can I provide to help others help me out with this?
-- 
chr



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




  1   2   3   4   5   6   7   8   9   10   >