Kernel Panic

2003-06-22 Thread Jan Busk
As a Linux newbee a decided to take the major step to update my kernel. I have tryed to compile and boot a new kernel 2.4.21. I copied the config file from 2.4.14 that came with my RedHat 8.0 and compiled the kernel and modules (also make modules_install). I configured Grub and booted with the foll

Redhat and Palm Tungsten

2003-06-19 Thread Jan Busk
Anyone who has managed to sync a palm Tungsten to for ex. Ximian Evolution? I have tryed repetedly whith no luck so I need som inputs. I'm a Linux newbee so explain even the things thats obvius. -- Jan Busk -- -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]

Re: Running common applications without X windows system

2003-03-12 Thread Jan
0) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x4000) This is supposing that the program is dynamically linked, of course. Some - like some versions of OpenOffice and Mozilla - come as statically linked and then you'll simply have to try to run it. /jan -- redhat-list mai

Re: How to enable .cshrc during logging in

2003-03-07 Thread Jan
login scripts - alas I don't know what they are called, but you should be able to find something somewhere in the documentation (iif it exists). Have a look in your home directory with 'ls -la' to see any filesand directories that start with a '.' - it will somewhere

Re: print directory contents

2003-03-07 Thread Jan
Ronald Hermans wrote: Hi list, Is there a tool or command available to simple print all the content of a directory including the subdirecties. I'm tempted to write the program myself but if it is allready available.. You can use: ls -lR | lpr -P -- redhat-list mailing list unsubscribe

Re: disk space

2003-03-07 Thread Jan
tools for seeing how much unallocated space you have in your volume groups (there are on HP-UX and AIX). /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Here's the PS as you asked

2003-03-07 Thread Jan
to NOT interpret and show html-mail? The latest Mozilla has an option, and text-only mailers would of course not interpret html (or...?) /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Editing environment

2003-03-06 Thread Jan
Seing how there has been a number of questions about editing the environment recently, I remembered I made a function that some might find useful. It allows you to edit the environment of the current shell in an editor - the value of EDIT is used as the name of the editor, or vi if it isn't set. It

Re: cycle of sudden slowdown in performance

2003-03-06 Thread Jan
s to go on absolutely avery desktop machine and server. I personally don't search for files more than perhaps once a week at most, and find is more than adequate for that. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Quick way to minimize all applications

2003-03-05 Thread Jan
ght bottom corner, because it opens a windows that is too big (that's the way I set it up). Working this way I never minimize windows. Also... how can i run Ximian Gnome in Red Hat 8? You can't - Ximian isn't built for gnome 2, which Redhat 8 uses. /jan -- redhat-list mailin

Re: [OT] Can I ignore the first network interface card?

2003-03-05 Thread Jan
uration: sam. It doesn't like Linux's xterm for some reason, but if you log in from a real terminal or from one of Linux's character terminals and set TERM to eg. vt220 it works fine. It's a full screen app and not difficult to use. Choose 'Networks and Communication&#x

Re: Vi editor with Unicode text

2003-03-05 Thread Jan
vi doesn't care - at least in an xterm. If the xterm supports the input method and can display the font, vi accepts it (this is on Redhat 7.3, using elvis - I don't like vim, it's too 'cute'). /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] h

Re: How Do I Find A File On The HD?

2003-03-05 Thread Jan
r not, try find / | grep -i host Or, perhaps better: find / -name '*host*' -print - you can use a regular expression under -name if it is quoted (to avoid having the shell expand it). find is extremely handy; have a look in the man page. I find the -exec option particularly useful. /jan

Re: ext3 fs recovery...?

2003-02-27 Thread Jan
Stefan Neufeind wrote: On 27 Feb 2003 at 10:13, Jan wrote: anil garrepally wrote: I fallowed suggestions of "list" to recover deleted files using debugfs and 'mc' tool,but those are working for ext2 file system only. And in info pages i read this statement:"Recovery

Re: path change

2003-02-27 Thread Jan
it happens in /etc/profile, but just to make sure, have a look in /etc/profile.d too. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: ext3 fs recovery...?

2003-02-27 Thread Jan
d be able to simply use an ext3 filesystem as if it were an ext2; as far as I know it is even possible to mount an ext3 disk as ext2, if you don't want the journaling. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Help!! sudden slowdown of the computer

2003-02-25 Thread Jan
esses, so you can kill it. Before you kill it, try to get as much information about the process as possible, like it's command line etc, so you can try to amend the situation. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Changing the startup graphic

2003-02-20 Thread Jan
gz > > I guess lilo does something similar. > > For more details, see http://ruslug.rutgers.edu/~mcgrof/grub-images/ /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: too many files open?

2003-02-19 Thread Jan
nd by what programs? Is it possible to increase the number of files which can be open? lsof may be a good place to start - it lists all open files; it is a LONG list! Perhaps you should run it at intervals (and save the output) to see if there is a single program that runs amok. /jan -- r

Re: Scripting help

2003-02-13 Thread Jan
e point of portable scripting anyway.) Ah, yes of course - I sort of simplified the example a bit; in the original the 'cat /etc/passwd' was a lengthy pipe of several greps and seds etc. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Scripting help

2003-02-13 Thread Jan
fi done` That's a good tip - thank you! However, that only works if we're talking about 1 env variable. In my work it was actually a number of arrays, and I don't thik there's an easy way to implement that along the same lines. And a good tip in return: instead

Re: Scripting help

2003-02-13 Thread Jan
uot; ]] then export NAME="$c" fi done < tempfile rm tempfile This is more bother because you have to invent a filename that hopefully doesn't clash with an existing file, and you have to delete it afterwards. Plus it is logically unnecessary, simply. /jan -- redha

Re: Bash and testing a variable

2003-02-12 Thread Jan
x="abcdef" echo $x # Returns 0 Thus: typeset -i x a="abcdef" x=$a if [[ "$x" = "$a" ]] ... The comparison will test true, if a is an integer and false if not. (I know we are supposed to use '==' instead of '=' in tests, but it

Re: DNS Client

2003-02-10 Thread Jan
sun.com/ I don't think there's any 'native' SW Linux (or other UNIXes) that can't be configured with a text editor, and it is very useful to be able to do this. /jan > > > On Mon, 2003-02-10 at 11:40, Ziomek, John wrote: > >>Folks, >> >&

Re: Bash script help ?

2003-02-05 Thread Jan
else echo $process fi Another point is: if you want the PID of the currently processing shell (ie. the one that interprets your script), then according to man bash you can just use the special variable $, like in '$$'. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Bash script help ?

2003-02-05 Thread Jan
[EMAIL PROTECTED] wrote: I'm trying to get a pidof a php script by capturing the path: like /home/somebody/my_script which will be the first arg. to the bash script Could anybody tell me what's wrong with this script ? I'm new to scripting in general so any help would be apreciated ! #!/bin/ba

Re: Recover root password

2003-02-04 Thread Jan
linux init s - here, 'linux' is whichever label you gave this kernel in lilo.conf. I don't know how grub or other boot loaders handle kernel parameters; somebody else? /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: DISPLAY ?

2003-02-04 Thread Jan
an xterm and su to another local user ID - this is like if somebody logged on to your workstation over the net and wanted to display an X application on your display. This is possible, but not allowed by default. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Problem with JRE !

2003-01-31 Thread Jan
names would be in upper case. So, my suugestion is to look for information about this in the READMEs and other release files on the CD; perhaps there is a script to run before you start installing. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Screensavers as root

2003-01-29 Thread Jan
mation rather than having to hope that I will one day stumble over it in whichever obscure place RedHat have found good to place it this time. This is after all Linux, not Windows. Knowledge is to be considered good. Or is this viewpoint too subversive? /jan -- redhat-list mailing list unsubsc

Re: who am i ?

2003-01-24 Thread Jan
Stone, Timothy wrote: Excuse the pun. :) I need help with determining the users logged in, etc. Given this actual example: 1. [tstone@vahalla tstone]$ who -l -H 2. USER LINE LOGIN-TIME FROM 3. tstone pts/0Jan 21 16:21 4. tstone pts/1Jan 21 16:21 5. tstone pts/4Jan 15

Network question

2003-01-23 Thread Jan
I have a Linux host with several NICs each with their own ip address. I want to configure services seperately for each NIC, so that I in principle could have eg: daemon1 listens on port 1 on eth0 daemon2 listens on port 1 on eth1 etc... How can I do that? /jan -- redhat-list

Re: how to use current date as file extension?

2003-01-23 Thread Jan
leaves you with a filename with embedded spaces! /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Shell Script Returned Value

2003-01-21 Thread Jan
error_report; print $? )| while read line - and then interpret the last value of line. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: iso image > harddrive

2003-01-21 Thread Jan
directory. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: Job control

2003-01-20 Thread Jan
n refer to it as '% - eg: kill -9 %1 # to kill job no. 1 with signal 9 bg %2 # to start job no. 2 in background - etc etc. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

MIDDLE BUTTON

2003-01-17 Thread Jan
mouse is a regular 3-button mouse, not a wheel mouse. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Multiple NICs

2003-01-15 Thread Jan
good book or HOWTO I should read about this? /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list

Re: RPM dependency hell

2003-01-14 Thread Jan
R P Herrold wrote: On Tue, 14 Jan 2003, Jan wrote: However - what I think most of us would like is a simple service that gives us the FULL dependency list, not just the first level. A list like that can of only be generated if you already have all the necessary libraries - the developer(s

Re: RPM dependency hell

2003-01-14 Thread Jan
s the FULL dependency list, not just the first level. A list like that can of only be generated if you already have all the necessary libraries - the developer(s) of the given RPM should do this. /jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe htt

Redhat 8: sound and middle-button

2003-01-14 Thread Jan
gone. And of course there's no documentation what so ever; apart from the obvious stuff. I realize that Redhat are tring to make the desktop look like Windows, but to me the fact that it used NOT to be just like Windows was a major bonus. What can I do to get back to the desktop that I l

getenv & setuid changed behavior RH6.2 -> RH7.3

2002-09-10 Thread Jan . Rovins
nging some config options on 7.3? Things I suspect: changes in PAM changes in exexve (lib) changes in kernel syscalls Ideas & suggestions would be appreciated. Thanks in advance, Jan -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.r

RE: sun sparc station 5

2002-03-12 Thread Jan . Albrecht
time. Sure, I'm not getting the same performance as my PII-266 but it doesn't matter. KDE works fine, mysql delivers in connection with apache and php around 50 querys a day so it's enough. Regards Jan ___ Redhat-list mailing lis

RE: SSH

2002-01-03 Thread Jan . Albrecht
Very simple. Install the ssh daemon on your linux machine and a ssh compatible client on your Windows machine (like Putty or TerraTerm).   Greetings   Jan    -Original Message-From: Madhvi Nundalalee [mailto:[EMAIL PROTECTED]]Sent: Thursday, January 03, 2002 8:39 AMTo: [EMAIL

RE: SSH

2002-01-03 Thread Jan . Albrecht
Mail: [EMAIL PROTECTED] -Original Message-From: Madhvi Nundalalee [mailto:[EMAIL PROTECTED]]Sent: Thursday, January 03, 2002 8:39 AMTo: [EMAIL PROTECTED]Subject: SSH hello   How do I set up SSH on my Linux server and on a win2K client PC     Cheer     

RE: Netcraft & M$

2001-12-12 Thread Jan . Albrecht
d. The original domain microsoft.com is the real one. Jan ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

HELP: Problem installing rhl 7 from harddisk.

2001-03-16 Thread jan
- how do I get it to recognize my harddisk? If that is the problem. If only I could get out to a terminal during the installation, I might try a couple of things, like mounting the disk by hand, but it really shouldn't be necessary. /jan ___

Install from harddisk

2001-03-15 Thread jan
be the problem? /jan ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list

funny segfault is tripping up tripwire...

2001-01-17 Thread loren jan wilson
check out the following. tripwire is being confused by it. (it's a real segfault...it doesn't say "segmentation fault" in the file.:) i'm running redhat 6.2 on a dell pentium III. how can i fix this problem? and why is it happening? [ljwilson@queens ljwilson]$ cat /proc/tty/driver/serial se

Re: Strange ipchains denies in log file

2000-02-18 Thread Robert-Jan Kuijvenhoven
ause of the high source port number. I thought IP masquerading only changes the IP address of the data packets. So what does it need the high port numbers for? If it would change the portnumber of every data packet, I would not be able to make an internet connection at all. Thanks, Robert-Jan &

Strange ipchains denies in log file

2000-02-18 Thread Robert-Jan Kuijvenhoven
e from the source IP different from the service from the destination IP? The firewall works very well, so obviously these denied data packages are not very important for internet and e-mail. TIA, Robert-Jan Kuijvenhoven -- To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.

Re: Gnome conf.

1999-11-03 Thread Jan Carlson
> anything else than a program launched at startup and no way to other > menu entries, panels and so on. I can I do it with gnome ? If you can, first upgrade to the October Gnome rpms from www.gnome.org. -- Jan Carlson [EMAIL PROTECTED] Scarborough, Ontario, Canada -- To unsubscribe: mail [EM

Re: Zip Disk Write Protect

1999-11-03 Thread Jan Carlson
Linux. mkdosfs /dev/sda4might do it, if you have just one zip drive connected. If you have a scsi controller too, you might need sdb4 instead of sda4. Jan Carlson [EMAIL PROTECTED] Scarborough, Ontario, Canada -- To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.

Re: md5sum

1999-11-03 Thread Jan Carlson
Mange wrote: > > How does this md5sum work? > > I downloaded mandrake-6.1 iso file.. > and a md5sum file > > The md5sum file looks like this > 43f4ba36e202dc56b272c61b45034d68 mandrake61-1.iso > > How do I check if the iso file is correct then? Look for &qu

Proven Method for Diald Setup

1998-11-18 Thread Jan Carlson
ation, in /usr/src/linux/Documentation/networking/ip_dynaddr.txt. Note: there is a small typo in Jeff Balderson's notes. Replace this: 6) cd /etc ; ln -s diald/diald.conf with : 6) cd /etc ; ln -s diald/diald.conf diald.conf -- Jan Carlson [EMAIL PROTECTED] Scarborough,

Proven Method for Diald Setup

1998-11-02 Thread Jan Carlson
tion, in /usr/src/linux/Documentation/networking/ip_dynaddr.txt. -- Jan Carlson [EMAIL PROTECTED] Scarborough, Ontario, Canada Mailed with Netscape 4.5 on Red Hat Linux 5.1 Date: Tue, 6 Oct 1998 23:30:03 -0400 (EDT) From: Jeff Balderson <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Sub

How to suid-secure this script

1998-03-22 Thread Kees-Jan Dijkzeul
ge to improve the security of the suid version of this script?? Thanks a lot in advance Groetjes, Kees-Jan -- Perl script follows --- #!/usr/bin/perl -w $ROOTDIR="/root/config"; lstat "RCS"; if ( !-e _ ) { # RCS doesn't

Re: script ..

1998-03-22 Thread Kees-Jan Dijkzeul
y more after this runs. you might want to consider replacing the 700 and 600 with go-rwx, which removes all permisions for "group" and "world" but leaves owner permissions intact. Thus exectuables will remain executable :) Hope this helps... Groetjes, Kees-Jan -- PLEASE

Re: Newbie/Moron Question.

1998-03-19 Thread Henk Jan Barendregt
xf86Config to chance settings, otherwise read the FAQ's and HOWTO pages. Best regards Henk Jan Barendregt<[EMAIL PROTECTED]> > -- > PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES! > http://www.redhat.com/Re

Printer Star LC 24-10 not supported

1998-03-19 Thread Henk Jan Barendregt
garbage (it likes doing formfeeds). I hope someone can help me with this. Greetings, Henk Jan Barendregt -- PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES! http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists To