perl module version ordering differing from RPM

2002-08-29 Thread Ganesh Sittampalam

Does anyone know of a nice fix for this problem? The issue is that perl
orders version numbers based on a floating point comparison, whereas RPM
compares version numbers on an essentially integer basis (precisely, it
splits the version number into the pieces separated by '.', then compares
each chunk, but without removing leading zeroes: so 1.06  1.10 but 1.061 
1.10).

My best idea so far is to turn Perl's 1.061 into 1.0.6.1 (etc) when
generating version numbers for RPM. But this is a bit messy, and would also
require rebuilding all Redhat's packages to do the same thing. 

I could make it slightly less messy by just inserting an extra '.' after the
first two digits after the first '.'  - so 1.061 would become 1.06.1, which
would be slightly less correct but still work for all the cases I've run
into so far. It should also minimise the need to rebuild the Redhat
packages.

Cheers,

Ganesh



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: perl module version ordering differing from RPM

2002-08-29 Thread Chip Turner


You can't really do this.  Basically the only real solution is epochs;
there simply is no one-to-one mapping of floats to RPM's vercmp.  I
suspect you're trying to come up with a way to automatically generate
RPMs from CPAN modules?  If so, I'd suggest looking at the
RPM::Specfile module on CPAN.  It contains a script called cpanflute2
that will do that.

The biggest problem is that, with RPM, 1.06 is the same as 1.6.  So
you can have two different strings that are equal in RPM's version
comparison.  This doesn't happen with floating point numbers (except
trailing zeros, which doesn't usually happen with cpan modules), so
there isn't a very effective mapping.

Chip

Ganesh Sittampalam [EMAIL PROTECTED] writes:

 Does anyone know of a nice fix for this problem? The issue is that perl
 orders version numbers based on a floating point comparison, whereas RPM
 compares version numbers on an essentially integer basis (precisely, it
 splits the version number into the pieces separated by '.', then compares
 each chunk, but without removing leading zeroes: so 1.06  1.10 but 1.061 
 1.10).
 
 My best idea so far is to turn Perl's 1.061 into 1.0.6.1 (etc) when
 generating version numbers for RPM. But this is a bit messy, and would also
 require rebuilding all Redhat's packages to do the same thing. 
 
 I could make it slightly less messy by just inserting an extra '.' after the
 first two digits after the first '.'  - so 1.061 would become 1.06.1, which
 would be slightly less correct but still work for all the cases I've run
 into so far. It should also minimise the need to rebuild the Redhat
 packages.
 
 Cheers,
 
 Ganesh
 
 
 
 ___
 Redhat-devel-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/redhat-devel-list
 

-- 
Chip Turner   [EMAIL PROTECTED]
  Red Hat, Inc.



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: perl module version ordering differing from RPM

2002-08-29 Thread Michael Schwendt

On Thu, 29 Aug 2002 16:28:56 +0100, Ganesh Sittampalam wrote:

 Why does 1.061 - 1.0.6.1 not work?

How to decide when to split it like that? Is 1.21 newer or older
than 1.3.1? And for some software, 1.1a and 1.1b are older than
1.1.

-- 
Ever had a Commodore 64? -- http://remix.kwed.org



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: perl module version ordering differing from RPM

2002-08-29 Thread Chip Turner

Ganesh Sittampalam [EMAIL PROTECTED] writes:

 On 29 Aug 2002 10:37:39 -0400, Chip Turner [EMAIL PROTECTED] wrote:
 
 You can't really do this.  Basically the only real solution is epochs;
 there simply is no one-to-one mapping of floats to RPM's vercmp.
 
 Why does 1.061 - 1.0.6.1 not work?

To rpm, 1.61 and 1.061 are the same.  But 1.6.1 and 1.0.6.1 are
different.

 I suspect you're trying to come up with a way to automatically generate
 RPMs from CPAN modules?  If so, I'd suggest looking at the
 RPM::Specfile module on CPAN.  It contains a script called cpanflute2
 that will do that.
 
 I'm already auto-generating the RPMs, using a modified version of the
 original cpanflute script. What I'm trying to do is fix the resulting
 dependency hell :-)

I would highly suggest using cpanflute2; it has many more features, is
currently maintained, and is much easier to modify/extend.  cpanflute
is a dead path; cpanflute2 is alive, and I'm happy to include any
patches people come up with :)

Chip

-- 
Chip Turner   [EMAIL PROTECTED]
  Red Hat, Inc.



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: perl module version ordering differing from RPM

2002-08-29 Thread Ganesh Sittampalam

On Thu, 29 Aug 2002 18:28:46 +0200, Michael Schwendt [EMAIL PROTECTED] wrote:

On Thu, 29 Aug 2002 16:28:56 +0100, Ganesh Sittampalam wrote:

 Why does 1.061 - 1.0.6.1 not work?

How to decide when to split it like that? 

I'd do that for all perl stuff - i.e. modify the perl dependency
auto-generation to use that version number, make my CPAN module RPM
generation script use this scheme, and rebuild the Redhat perl RPMs to do it
that way.

Alternatively I might do it on a module by module basis (with a
configuration file to control it, and forcibly reinstalling modules with the
new scheme where necessary after I made a change).

Is 1.21 newer or older than 1.3.1? 

This issue shouldn't arise.

And for some software, 1.1a and 1.1b are older than
1.1.

This shouldn't arise for perl stuff, I think.

Ganesh



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: perl module version ordering differing from RPM

2002-08-29 Thread Ganesh Sittampalam

On 29 Aug 2002 12:41:00 -0400, Chip Turner [EMAIL PROTECTED] wrote:

 Why does 1.061 - 1.0.6.1 not work?

To rpm, 1.61 and 1.061 are the same.  But 1.6.1 and 1.0.6.1 are
different.

Exactly - to perl, 1.61 and 1.061 are different, so with this translation
I'm making them different for RPM too.

I would highly suggest using cpanflute2; it has many more features, is
currently maintained, and is much easier to modify/extend.  cpanflute
is a dead path; cpanflute2 is alive, and I'm happy to include any
patches people come up with :)

I may have a look at moving over, though I have already made substantial
modifications to cpanflute to make it do what I want, so this would be some
effort. I think the ideal solution would be an appropriate plugin for
CPANPLUS (which is intended as a cleaner more modular replacement for CPAN),
but I'm not sure what the current status of that project is.

Cheers,

Ganesh



___
Redhat-devel-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-devel-list



Re: LILO - Boot other os's

2002-08-29 Thread Giurgiu Sergiu

On Wed, 2002-08-28 at 23:26, [EMAIL PROTECTED] wrote:
 Greetings,
 
 Thanks in advance for any help.
 
 I have a linux box in our programmers area.  This is really going to be a
 test machine for them to test programms on diferent window's os's.  It is
 setup with 4 primary partions.  Linux 7.3 (2.4.18) is on the first /dev/hda1
 and I created 3 fat16 dos partions on /dev/hda2, /dev/hda3, /dev/hda4.   I
 would like with LILO to choose which partion will boot. Below is my
 lilo.conf file.
 
 Lilo loads fine but the problem I'm having is it boots fine to the linux
 partion and to the first windows partion /dev/hda2 but I can't get it to
 boot to the other 2 dos partions.  Everytime I select them (window3 and
 windows4) it boots up /dev/hda2.  So any windows 3 choices I have boots me
 to the first dos partion.  I have looked around and tried to read a tweek
 the lilo.conf as much as I can but cannot get the other 2 dos partions to
 boot.
 
 Any help is very much aprreciated.
 
 Thanks
 David Hussey
 ---
 default=linux
 boot=/dev/hda
 map=/boot/map
 install=/boot/boot.b
 message=/boot/message
 linear
 
 image=/boot/vmlinuz-2.4.18-3
  label=linux
  initrd=/boot/initrd-2.4.18-3.img
  read-only
  root=/dev/hda1
 
 other=/dev/hda2
  optional
  label=windows1
 
 other=/dev/hda3
  optional
  label=windows2
 
 other=/dev/hda4
  optional
  label=windows3
 
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
Well, i don't know just how big is your HDD (i mean if hda3 is above the 1024's 
cilinder).
I think u should try to replace the line linear in you lilo.conf file
with the line lba32 (without the quotes)



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Disk Space

2002-08-29 Thread Krishna
Title: Disk Space



Hi,
 Check inodes and see 
if you can use "parted"
http://www.gnu.org/software/parted/

regardsKrishna

Krishna ShekharNetwork AdministratorWiplash Wireless

  - Original Message - 
  From: 
  Calbazana, 
  Al 
  To: '[EMAIL PROTECTED]' 
  Sent: Thursday, August 29, 2002 7:13 
  AM
  Subject: Disk Space
  
  I haven't had to deal with this in a 
  while... 
  AND I've never 
  dealt with this in a server environment...
  I noticed that my /usr partition is 
  running low on 
  space (73% full) on a small dev 
  server. What options do I have if I want 
  to move space from one partition (say /var) to /usr? The drives are in RAID 5 configuration.
  Thanks,
  Al**This 
  email and any files transmitted with it are confidential andintended 
  solely for the use of the individual or entity to whom theyare addressed. 
  If you have received this email in error please notifythe system 
  manager.This footnote also confirms that this email message has been 
  swept byMIMEsweeper for the presence of computer 
  viruses.www.mimesweeper.com**


Re: required help regarding redhat linux 6.2

2002-08-29 Thread Krishna

Hi,
   Even I had this problem. Why using RedHat 6.0 use  7.x.
Do chkconfig --list and see where x is
and then do chkconfig --level 2345 x off
that should solve the text mode.

Update the rpm. But I prefer RedHat 7.x if you want to use LMME and Yahoo
messenger.

regards
Krishna

Krishna Shekhar
Network Administrator
Wiplash Wireless
- Original Message -
From: Bret Hughes [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, August 27, 2002 9:17 PM
Subject: Re: required help regarding redhat linux 6.2


 On Mon, 2002-08-26 at 05:25, kuchimanchi sriram wrote:
  Hai
 
  Any body pl tell me how to get out of this problem in
  linux 6.2.
  Iam unable to logon to the text mode of linux.
  When i go to the kde or gnome it is functioning
  well.Only problem is iam unable to login to the text
  mode directly.And  iam able   to login to the
  terminal in gnome and kde .So pl give me any solution
  for this .
 
  Second thing is that  i wanted to install the
  yahoomessenger in the same mechine but it is asking
  for some dependencies like
  1)gdk_pixbuf=8 (But  when i tried to install this
  only packages with major number =3 are supported by
  this rpm verson error is coming
  2)Libcrypto.so.o
  3)libgdk_pixbuf.so.2
 
 

 you need to install the updates from ftp.redhat.com

 the rpm deal is way old and if you have not updated rpm you probably
 have not updated the other security fixes and have been hacked.  I was
 working with another 6.2 user on a different thread with a similar
 sounding problem and his box did not have the requisite files in
 /etc/pam.d

 the subject of the thread is :

  login problem at renlevel 3

 Part of the diagnostics:

 the files are:
 here's the output of that command:

 [root@inventory jhun]# rpm -V $(rpm -qf $(which login))
 missing/etc/pam.d/chsh
 missing/etc/pam.d/kbdrate
 missing/etc/pam.d/login


 Looks like a screwy root kit is out there to me.

 Bret





 --
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: mozilla, netscape and CUPS

2002-08-29 Thread Alan Harding

I have a similar problem, in that I used CUPS to set up the printers.
All I do is when it pops up the box for printing the only printer
displayed is lpr, so just add -P and then the name of the printer that
you set in CUPS. Works for me

Enjoy

On Wed, 2002-08-28 at 21:07, Bo Peng wrote:
 I do not quite understand the problem. Can you print from other
 applications like xpdf, gv? If they can, there must be something wrong
 with the settings of mozilla, not CUPS.
 
 Bo
 
 On Wed, Aug 28, 2002 at 07:51:15PM +0300, [EMAIL PROTECTED] wrote:
  Hello
 
  I installed RH 7.3 on someone's computer. I had some
  trouble getting his canon S450 working but eventually
  got it working after we changed the cable from USB to
  a normal parallel port cable. However it only seemed
  to work with CUPS - we tried the RH printer config tool
  but had no joy with it.
 
  He uses KDE and our problem is that we can't to print
  using mozilla or netscape. I wonder if anyone has any
  idea how one would get them to work with CUPS.
 
  t.irvine
 
  -- 
 
   Whoever thinks a faultless piece to see,
Thinks what ne'er was, nor is, nor ne'er shall be.
 
   Alexander Pope, An Essay On Criticism.
 
 
 
 
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
 
-- 
Alan  Jan Harding
Tel: 07715 539272
One by one the penguins are stealing my sanity



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Whats in my kernel?

2002-08-29 Thread Krishna

Hi,
 
 See /lib/modules/kernel-version . See modules.dep I think so.

regards
Krishna

Krishna Shekhar
Network Administrator
Wiplash Wireless
- Original Message - 
From: Blake Thornton [EMAIL PROTECTED]
To: Redhat List [EMAIL PROTECTED]
Sent: Wednesday, August 28, 2002 9:28 PM
Subject: Whats in my kernel?


 Does anyone know how I can tell what has been compiled into my kernel?  
 Right now, I would like to know if appletalk has been compiled in, but 
 this would seem to be a useful thing to be able to know for any kernel 
 options.
 
 Thanks,
 Blake
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: [Mail Problem]

2002-08-29 Thread R P Herrold

On Thu, 29 Aug 2002, Ganeshh wrote:

 Please let me know where is the problem? I dont have problem
 any other domains sending mails to my mail server.

well ... it is not conformant the the RFC which defines in
part the protocol compliant mail exchange in this circumstance

 MX=[mail.ns.net] {61.11.74.7}
  Attempting SMTP connection to [61.11.74.7 : 25]
  Waiting for socket connection...
  Socket connection established
  Waiting for protocol initiation...
  30 second wait for protocol timeout exceeded.

ummm, RFC 2821 suggests 5 minutes at section 4.5.3.2
   http://asg.web.cmu.edu/rfc/rfc2821.html#sec-4.5.3.2
although the first delivery pass some MTA use a faster 
fall-back

  Attempting MX: P=020 D=ns.net TTL=(1385) MX=[mail.symonds.net]
 {63.194.20.32}
  Attempting SMTP connection to [63.194.20.32 : 25]
  Waiting for socket connection...
  Socket connection established
  Waiting for protocol initiation...
  30 second wait for protocol timeout exceeded.
  This message is 62 minutes old; it has 0 minutes left in this queue
  Primary queue lifetime exceeded; message placed in retry queue*

I cannot see any excuse for a fast timeout when using a 
secondary MX host.  Which MTA are you using with this 
behaviour?  The RFC explains the 'why' of timings much better 
than I can summarize here.

-- Russ Herrold





-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: LILO - Boot other os's

2002-08-29 Thread Skuse, Phil

I seem to remember that Windows boot partitions have to be somewhere in the
first 1024 cylinders of the disk. Somebody please correct me if I'm wrong
here :-)

-Original Message-
From: Dave [mailto:[EMAIL PROTECTED]]
Sent: 28 August 2002 21:26
To: [EMAIL PROTECTED]
Subject: LILO - Boot other os's


Greetings,

Thanks in advance for any help.

I have a linux box in our programmers area.  This is really going to be a
test machine for them to test programms on diferent window's os's.  It is
setup with 4 primary partions.  Linux 7.3 (2.4.18) is on the first /dev/hda1
and I created 3 fat16 dos partions on /dev/hda2, /dev/hda3, /dev/hda4.   I
would like with LILO to choose which partion will boot. Below is my
lilo.conf file.

Lilo loads fine but the problem I'm having is it boots fine to the linux
partion and to the first windows partion /dev/hda2 but I can't get it to
boot to the other 2 dos partions.  Everytime I select them (window3 and
windows4) it boots up /dev/hda2.  So any windows 3 choices I have boots me
to the first dos partion.  I have looked around and tried to read a tweek
the lilo.conf as much as I can but cannot get the other 2 dos partions to
boot.

Any help is very much aprreciated.

Thanks
David Hussey
---
default=linux
boot=/dev/hda
map=/boot/map
install=/boot/boot.b
message=/boot/message
linear

image=/boot/vmlinuz-2.4.18-3
 label=linux
 initrd=/boot/initrd-2.4.18-3.img
 read-only
 root=/dev/hda1

other=/dev/hda2
 optional
 label=windows1

other=/dev/hda3
 optional
 label=windows2

other=/dev/hda4
 optional
 label=windows3




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: LILO - Boot other os's

2002-08-29 Thread Cameron . Davidson

  I have a linux box in our programmers area.  This is really 
 going to 
  be a test machine for them to test programms on diferent window's 
  os's.  It is setup with 4 primary partions.  Linux 7.3 
 (2.4.18) is on the first /dev/hda1
  and I created 3 fat16 dos partions on /dev/hda2, /dev/hda3, 
 /dev/hda4.   I
  would like with LILO to choose which partion will boot. Below is my 
  lilo.conf file.

This info might be out of date, but...
As far as I know, dos-based windows (i.e. Win-9x) cannot support multiple
primary DOS partitions. How did you manage to create them?
LILO might be working, but perhaps the windows loader is resorting to what
it 
thinks is C:. How did you install them all on separate partitions?

If it's win9x you are talking about, then forget it, they are too stupid to
cope with unusual partitioning schemes. (I'm just guessing about ME,
but, based on other experience...). From what I have read in the past,
DOS, i.e. Win 9x, scans the discs in the following order: 
the primary dos partition on each non-removable drive
hda, hdb, hdc, hdd, then all logicals on hda then all logicals on hdb, etc
and assigns C:, D:, etc as it finds them. You might want to check the
MS web site, but I am sure there is no way to assign other primaries.
You might get away with multiple logical partitions, for multiple win9x
systems, but make sure you reinstall each time. Partition magic might
perhaps be able
to cope with the duplication (never done it myself).

NT/2k and presumably xp are smarter, but they have to be NTFS partitions to
have multiple primaries.
I'd recommend you get them working in MS multi-boot config first.
I used to boot Linux, NT4, win98 and dos, as follows.
Set up a small C: dos primary just
to hold lilo, and windows boot loaders, then install win9x on a logical
partition, then NT/2k and it will provide multiboot configuration.
Then reinstall lilo (keep that bootable floppy handy)
and have a single lilo entry to boot the NT/2k loader,
which handles all the Win stuff.

Cameron



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: help, my server maybe have been compromised !

2002-08-29 Thread Lewi

six days ago, I have been upgrade chkrootkit, I have using it for 3 months, 
and have cron to report me everyday, and I have snort too to watch any suspicious 
network connection

I checked that netstat, ps, login, ssh have a right md5sum and right place :)
I have subscribe to bugzilla to received any security issue, and update it with 
up2date from redhat, I usually have current packages updates.

I don't want erase /bin/passwd first, if I don't sure where it come from??
I put ssh_possible_infected in my anonymous ftp,
ftp://mbone.petra.ac.id/security/possible-infected


On Wed, Aug 28, 2002 at 11:54:57AM -0600, Frederic Herman wrote:
 Timothy Writer wrote:
 
 Lewi [EMAIL PROTECTED] writes:
 
   
 
 I just checking whereis passwd place from, when I run this
 # whereis passwd
 passwd: /bin/passwd /usr/bin/passwd /etc/passwd.OLD /etc/passwd 
/usr/share/man/man1/passwd.1.gz
 
 then I checked 
 # rpm -qf /bin/passwd 
 file /bin/passwd is not owned by any package
 
 # rpm -ql passwd-0.64.1-4
 /etc/pam.d/passwd
 /usr/bin/passwd
 /usr/share/man/man1/passwd.1.gz
 
 so where /bin/passwd come from??
 I checked using whether maybe I can get something, 
 # string /bin/passwd
 but I don't found any suspicious line
 I attached in here, sory if too big, it just 3,5kb :)
 I'm using rh7.1
 
 
 
 It could be a link (hard or symbolic) to or a copy of /usr/bin/passwd.
 What do these tell you?
 
 ls -li /bin/passwd /usr/bin/passwd
 cmp /bin/passwd /usr/bin/passwd
 
 If you suspect you've been hacked, use:
 
 rpm -Va
 
 to verify all your installed RPMS.  Expect changes to config files etc. but
 any changes to key binaries such as passwd, login, and ps are evidence that
 you've been hacked.
 
   
 
 My guess is that the additional /usr/passwd executable was placed by the 
 exploit.  The search path will probably look first in /bin, and then 
 /usr/bin.  The bogas executable is found first.  The original 
 /usr/bin/passwd is probably non altered.  So rpm -Va won't indicate 
 anything for this file, although there are likely other things that have 
 been changed which will show up.
 
 As part of your clean up, first remove the bogas file.  Unless you feel 
 lucky, back up data files, and then reformat the hard drive and do a 
 fresh install.  You should also try to find out how the cracker got in. 
  Likely you were not keeping patches up to date.
 
 Good luck.
 
 Fred
 
 
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list

-- 
ichtus
--
Lewi Supranata .K
ICQ: 50643061
Homepage :  http://mercury7.petra.ac.id/~ichtus 
GnuPG Public Key :  http://mercury7.petra.ac.id/~ichtus/ichtus-keys2



msg86894/pgp0.pgp
Description: PGP signature


Re: non-interactive FTP to transfer file

2002-08-29 Thread loophole

# this is just one line

ncftpput -u username -p password remote_machine
/home/username/ local_file2bcopied

hth
lh

=
`When you say I wrote a program that crashed Windows, people just stare at you 
blankly and say Hey, I got those with the system, *for free*.'
- Linus Torvalds

__
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: desktop icons GNOME

2002-08-29 Thread loophole

try moving ~/.gnome-desktop/ somewhere then logout and
relogin to GNOME.

hth.
lh


=
`When you say I wrote a program that crashed Windows, people just stare at you 
blankly and say Hey, I got those with the system, *for free*.'
- Linus Torvalds

__
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Apple talk?

2002-08-29 Thread loophole

you might be looking for netatalk.

rpm -qi netatalk:

This package enables Linux to talk to Macintosh
computers via the AppleTalk networking protocol. It
includes a daemon to allow Linux to act as a file
server over EtherTalk or IP for Mac's.

hth.
lh

=
`When you say I wrote a program that crashed Windows, people just stare at you 
blankly and say Hey, I got those with the system, *for free*.'
- Linus Torvalds

__
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Disk Space

2002-08-29 Thread loophole

adjusting partitions sizes:  use parted

adding new partitions/drives to /usr: use LVM

hth.
lh

=
`When you say I wrote a program that crashed Windows, people just stare at you 
blankly and say Hey, I got those with the system, *for free*.'
- Linus Torvalds

__
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Network Card not detected - please guide

2002-08-29 Thread loophole

Try this:

modprobe via-rhine

If there are no error messages, run netconfig and
setup your network.  Then restart the network service:

/sbin/service network restart

To check

/sbin/ifconfig
more here:

http://www.scyld.com/network/ethercard.html

hth.
lh


=
`When you say I wrote a program that crashed Windows, people just stare at you 
blankly and say Hey, I got those with the system, *for free*.'
- Linus Torvalds

__
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Seeking a reference...

2002-08-29 Thread Alan Harding

Have a look at 

http://www.linuxforum.com/99/10/dns.htm

I found it useful, even though its a bit out of date now

On Wed, 2002-08-28 at 13:22, Michael Tiernan wrote:
 I've been looking around and haven't found a how to for setting up DNS on a 
 linux machine, did I miss it?  If anyone knows of some docs, can you toss a 
 URL to me?
 
 Thank you very much for your time and sorry for the wasted bandwidth.
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
 
-- 
Alan  Jan Harding
Tel: 07715 539272
One by one the penguins are stealing my sanity



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Problem : font server : update XFree86-xfs

2002-08-29 Thread Philippe Depouilly

Hello,

I'm using a RH-7.2 box as font server for several NCD-452 X terminals.

After updating to XFree86-xfs-4.1.0-25.i386.rpm, X terminal hangs up.
X terminal says : LOSTCONNECTION when loading my font server and doesn't 
start

at the hang-up the linux box as a process started like this :

xfs -ls 7/4/7100,5/5/7100 -cf /usr/X11R6/lib/X11/fs/config -port 7100

when going back original XFree86-xfs package, everything works fine

(processes are like this : xfs -droppriv -daemon)

Any ideas ?

Thanx,

Philippe




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



rsize and wsize for NFS

2002-08-29 Thread Skuse, Phil


I have setup an RH7.2 NFS and NIS server for user accounts and home
directories. The client machines are a mixture of HPUX, Linux, Solaris,
IRIX, SCO OpenServer, SCO Unixware, NonStopUX, and Tru64 machines. It's been
running nicely for about 9 months now.

I have set the NFS rsize and wsize parameters to 8192 because this given as
the optimum value in some (old) NFS FAQ that I read.

I'm just curious whether this is still regarded as the best value to use
given that hardware and software have improved since the FAQ was written.
I've noticed that Solaris uses 32768 for Jumpstart installs. 

Phil Skuse
Unix System Administrator
Vicorp Group Limited



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



problem with perl

2002-08-29 Thread Laurent didier

I have a several problem with perl on my Red-Hat 7.3.

When i compile a cpan module, with

perl Makefile.PL
make
make test
make install

I d'ont have problem, but when i launch my script perl in a console, or in
my browser.

I have more error.

Sorry but i'am @ work, not in my home, i d'ont have the exactly error
message.

But i think this error is know.

Have you an solution

Thank for your comment



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Whats in my kernel?

2002-08-29 Thread Michael Fratoni

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 29 August 2002 02:00 am, Gregory Hosler wrote:
 I believe the kernel config file is /boot/config-##.##.## as installed
 when you installed the kernel.

 I believe that you can use this option file to build an exact duplicate
 of the installed kernel.

  On 29-Aug-02 Michael Fratoni wrote:
 
  (Recent kernel packages (at least in the 7.3 release) also include
  the config file in /boot/)
 
  $ grep -i apple /boot/config-2.4.18-10
 # Appletalk devices
  CONFIG_APPLETALK=y
  CONFIG_DEV_APPLETALK=y

Err, that's what I said in the message you quoted. ;)

- -- 
- -Michael

pgp key:  http://www.tuxfan.homeip.net:8080/gpgkey.txt
Red Hat Linux 7.{2,3} in 8M of RAM: http://www.rule-project.org/
- --
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAj1t+2AACgkQn/07WoAb/SufGwCguWtEYeNt70uzipf1GluWeW7G
1LsAoI2R89kBhsQIcPM1DLSHwjbjM4Rc
=U4h8
-END PGP SIGNATURE-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: mozilla, netscape and CUPS

2002-08-29 Thread Michael Fratoni

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 29 August 2002 02:56 am, Alan Harding wrote:
 I have a similar problem, in that I used CUPS to set up the printers.
 All I do is when it pops up the box for printing the only printer
 displayed is lpr, so just add -P and then the name of the printer that
 you set in CUPS. Works for me

I have no difficulty printing from Mozilla to a cups printer. I'm using 
KDE as my desktop, if that matters.
The print dialog opens, listing the printer as PostScript/default.
The printer properties show the print command as:
lpr ${MOZ_PRINTER_NAME:+'-P'}${MOZ_PRINTER_NAME}

I didn't do anything to set this up, it just worked from the start.

- -- 
- -Michael

pgp key:  http://www.tuxfan.homeip.net:8080/gpgkey.txt
Red Hat Linux 7.{2,3} in 8M of RAM: http://www.rule-project.org/
- --
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAj1uCHsACgkQn/07WoAb/Su9ZwCeJL1zjAP+J1oTf+SvLExNeW+i
zWoAniSRn7X+7fxghv0jAXmWKnkLvz1C
=y42f
-END PGP SIGNATURE-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Unsubscribe

2002-08-29 Thread Carter, Shaun G

COPIED FROM THE HEADERS!!

List-Unsubscribe: https://listman.redhat.com/mailman/listinfo/redhat-list,
mailto:[EMAIL PROTECTED]?subject=unsubscribe

-Original Message-
From: PIGNOL, Christian [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 29, 2002 6:51 AM
To: Redhat-List (E-mail); Valhalla-list (E-mail); Redhat-Install-List
(E-mail)
Subject: Unsubscribe



Christian PIGNOL 
( (+33) 473 67 62 96 
2   (+33) 473 67 61 29 
*  [EMAIL PROTECTED] 


--
Notice: This e-mail message, together with any attachments, contains
information of Merck  Co., Inc. (Whitehouse Station, New Jersey, USA) that
may be confidential, proprietary copyrighted and/or legally privileged, and
is intended solely for the use of the individual or entity named on this
message. If you are not the intended recipient, and have received this
message in error, please immediately return this by e-mail and then delete
it.


==



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Unsubscribe

2002-08-29 Thread PIGNOL, Christian




Christian 
PIGNOL ( (+33) 473 67 62 96 2 (+33) 473 67 61 29 * [EMAIL PROTECTED] 


--
Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (Whitehouse Station, New Jersey, USA) that may be confidential, proprietary copyrighted and/or legally privileged, and is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please immediately return this by e-mail and then delete it.

==


Re: Disk Space

2002-08-29 Thread Anthony E. Greene

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 28-Aug-2002/21:43 -0400, Calbazana, Al [EMAIL PROTECTED] wrote:
I haven't had to deal with this in a while...  AND I've never dealt with
this in a server environment...

I noticed that my /usr partition is running low on space (73% full) on a
small dev server.  What options do I have if I want to move space from one
partition (say /var) to /usr?  The drives are in RAID 5 configuration.

man parted

Tony
- -- 
Anthony E. Greene mailto:[EMAIL PROTECTED]
OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26  C484 A42A 60DD 6C94 239D
AOL/Yahoo Chat: TonyG05  HomePage: http://www.pobox.com/~agreene/
Linux: the choice of a GNU Generation. http://www.linux.org/

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Anthony E. Greene 0x6C94239D [EMAIL PROTECTED]

iD8DBQE9bhOXpCpg3WyUI50RAqmCAJ9Av92NLwFCjpVyvs/5eK1H0wJsxgCgpAHu
zAjED6GNhCEcGgSvxUqMo7w=
=eKZh
-END PGP SIGNATURE-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: problem with perl

2002-08-29 Thread Anthony E. Greene

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 29-Aug-2002/12:36 +0200, Laurent didier [EMAIL PROTECTED] wrote:
I have a several problem with perl on my Red-Hat 7.3.
[snip]
Sorry but i'am @ work, not in my home, i d'ont have the exactly error
message.

We will need to see the exact error message before we can try to help.

Tony
- -- 
Anthony E. Greene mailto:[EMAIL PROTECTED]
OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26  C484 A42A 60DD 6C94 239D
AOL/Yahoo Chat: TonyG05  HomePage: http://www.pobox.com/~agreene/
Linux: the choice of a GNU Generation. http://www.linux.org/

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Anthony E. Greene 0x6C94239D [EMAIL PROTECTED]

iD8DBQE9bhQppCpg3WyUI50RAjD2AJ9yb5RqxQROtspVgaX7hkfOBy3zpwCfbgS5
8v6pQ7M8tntwUz51KZLLpok=
=6Z8D
-END PGP SIGNATURE-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



updating rpms

2002-08-29 Thread Gordon McDowall


Hi

I have recently came to RedHat after using various other flavours of linux,
the main difference between what I am used to and RedHat is the use of rpms
instead of source.   Here is my problem.
I installed a RedHat 7.3 machine as a cacheing DNS server, by default
bind-9.2.0 is installed.   Now I have found a bind-9.2.1 rpm, but when you
try to install it using rpm -Uvh --freshen bind-9.2.1.blah.blah I get an
error 
error: failed dependencies:
bind = 9.2.0 is needed by bind-devel-9.2.0-8

Am I missing something?

Gordon



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Disk Space

2002-08-29 Thread Gordon McDowall

I would cheat and use symbolic links

-Original Message-
From: Anthony E. Greene [mailto:[EMAIL PROTECTED]]
Sent: 29 August 2002 13:29
To: [EMAIL PROTECTED]
Subject: Re: Disk Space


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 28-Aug-2002/21:43 -0400, Calbazana, Al [EMAIL PROTECTED] wrote:
I haven't had to deal with this in a while...  AND I've never dealt with
this in a server environment...

I noticed that my /usr partition is running low on space (73% full) on a
small dev server.  What options do I have if I want to move space from one
partition (say /var) to /usr?  The drives are in RAID 5 configuration.

man parted

Tony
- -- 
Anthony E. Greene mailto:[EMAIL PROTECTED]
OpenPGP Key: 0x6C94239D/7B3D BD7D 7D91 1B44 BA26  C484 A42A 60DD 6C94 239D
AOL/Yahoo Chat: TonyG05  HomePage: http://www.pobox.com/~agreene/
Linux: the choice of a GNU Generation. http://www.linux.org/

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Anthony E. Greene 0x6C94239D [EMAIL PROTECTED]

iD8DBQE9bhOXpCpg3WyUI50RAqmCAJ9Av92NLwFCjpVyvs/5eK1H0wJsxgCgpAHu
zAjED6GNhCEcGgSvxUqMo7w=
=eKZh
-END PGP SIGNATURE-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: updating rpms

2002-08-29 Thread Robert P. J. Day

On Thu, 29 Aug 2002, Gordon McDowall wrote:

 
 Hi
 
 I have recently came to RedHat after using various other flavours of linux,
 the main difference between what I am used to and RedHat is the use of rpms
 instead of source.   Here is my problem.
 I installed a RedHat 7.3 machine as a cacheing DNS server, by default
 bind-9.2.0 is installed.   Now I have found a bind-9.2.1 rpm, but when you
 try to install it using rpm -Uvh --freshen bind-9.2.1.blah.blah I get an
 error 
 error: failed dependencies:
 bind = 9.2.0 is needed by bind-devel-9.2.0-8

first, you don't need *both* -U (which means upgrade) and
--freshen  (or -F for short).  either one will do in your case.

you have a couple of options:

1) upgrade/freshen *both* the bind and bind-devel rpms using the
   same rpm command -- that will deal with the dependencies.

2) remove the bind-devel rpm first.  unless you're doing development
   work using bind, you very likely don't need that rpm, and you
   can always install the newer one down the road if you need it.

rday



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: updating rpms

2002-08-29 Thread Willem Brown

Hello,

Gordon McDowall wrote:
 Hi
 
 I have recently came to RedHat after using various other flavours of linux,
 the main difference between what I am used to and RedHat is the use of rpms
 instead of source.   Here is my problem.
 I installed a RedHat 7.3 machine as a cacheing DNS server, by default
 bind-9.2.0 is installed.   Now I have found a bind-9.2.1 rpm, but when you
 try to install it using rpm -Uvh --freshen bind-9.2.1.blah.blah I get an
 error 
 error: failed dependencies:
 bind = 9.2.0 is needed by bind-devel-9.2.0-8
 
 Am I missing something?
 
 Gordon
 
 
 

You'll need to update all the bind rpms at the same time. To get a list
of the installed rpms:

rpm -qa bind\*

If you try to update just the bind package then the bind-devel and
bind-utils will be out of sync.

So, if you don't need the bind-devel rpm you can un-install it and
try again or just get the bind-devel and maybe the bind-utils as well
and update all three.

Best Regards
Willem Brown

-- 
iServe (Pty) Ltd.
http://www.iserve.co.za/

Tel: +27 (0)11 258-7800
Fax: +27 (0)11 258-7888
Cell: +27 (0)83 271-0839



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: updating rpms

2002-08-29 Thread Gordon McDowall

Thanks folks thats sorted things...pretty obvious really

-Original Message-
From: Willem Brown [mailto:[EMAIL PROTECTED]]
Sent: 29 August 2002 13:47
To: [EMAIL PROTECTED]
Subject: Re: updating rpms


Hello,

Gordon McDowall wrote:
 Hi
 
 I have recently came to RedHat after using various other flavours of
linux,
 the main difference between what I am used to and RedHat is the use of
rpms
 instead of source.   Here is my problem.
 I installed a RedHat 7.3 machine as a cacheing DNS server, by default
 bind-9.2.0 is installed.   Now I have found a bind-9.2.1 rpm, but when you
 try to install it using rpm -Uvh --freshen bind-9.2.1.blah.blah I get an
 error 
 error: failed dependencies:
 bind = 9.2.0 is needed by bind-devel-9.2.0-8
 
 Am I missing something?
 
 Gordon
 
 
 

You'll need to update all the bind rpms at the same time. To get a list
of the installed rpms:

rpm -qa bind\*

If you try to update just the bind package then the bind-devel and
bind-utils will be out of sync.

So, if you don't need the bind-devel rpm you can un-install it and
try again or just get the bind-devel and maybe the bind-utils as well
and update all three.

Best Regards
Willem Brown

-- 
iServe (Pty) Ltd.
http://www.iserve.co.za/

Tel: +27 (0)11 258-7800
Fax: +27 (0)11 258-7888
Cell: +27 (0)83 271-0839



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



SpamAssassin and Procmail

2002-08-29 Thread Alan Harding

Has anyone got a good link for the step by step setup of this?? I have
tried and failed miserably, with procmail refusing to deliver to a local
address (Address alanh^I is unsafe for mailing to programs)

Problem is I dont understand procmail that well

Thanx in advance
-- 
Alan  Jan Harding
Tel: 07715 539272
One by one the penguins are stealing my sanity



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



LC_COLLATE, sorting, filenames and stuff like that there

2002-08-29 Thread Robert P. J. Day


  ok, where can i figure out what the implications are for setting
LC_COLLATE, what the possible values are, and so on?  man -k
doesn't seem to tell me anything.

  i'm curious for a couple of reasons.  first, as many people have
found out, setting LC_COLLATE=C reverts the way filenames are
displayed back to the old way, where lower/upper case mattered.


  in addition, i noticed that it also affects how fields in a
white-space separated file are sorted.  i have a sample file,
with an arbitrary number of spaces between the fields to make
them line up.

  the sort command generally requires a -b option to collapse
consecutive blanks together so that the sort works properly.
at least, you need -b if LC_COLLATE=C; in other words, to get
the old behavior i'm used to.

  if you haven't set LC_COLLATE=C, then this option is no longer
required -- the sort will work fine.

  so, is there a HOWTO/man page or something that explains all
of this COLLATE stuff and its effects on commands somewhere?

rday

Robert P. J. Day, RHCE, RHCI
Eno River Technologies, Chapel Hill NC
Unix, Linux and Open Source corporate training

http://www.linux-migration.org



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



email thru browser

2002-08-29 Thread Roger Schmeits

Have any recommendations for a web based client? I have a NT box running
Imail ver 6.06 in which the web based messaging system is getting flaky.
Anyway..The backend of the product actual works very well pop3, imap. 
Looking for a web based messaging system that I could run maybe on a
linux box using apache that would connect to pop3 or imap.

Already know about Squirrel Mail looking for others. Would support about
500 accounts.

Anybody actually using x package for this many users?

Thanks.


-- 
**
Roger Schmeits
System Analyst
Clarkson College
http://www.clarksoncollege.edu
Omaha, NE USA
1-800-647-5500 x22542
* 



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: email thru browser

2002-08-29 Thread Gordon McDowall

If you compile php into apache and want a very expandable webmail client
then try 
http://www.squirrelmail.org/
I seem to remember it only runs IMAP though and no pop

Gordon

-Original Message-
From: Roger Schmeits [mailto:[EMAIL PROTECTED]]
Sent: 29 August 2002 14:12
To: [EMAIL PROTECTED]
Subject: email thru browser


Have any recommendations for a web based client? I have a NT box running
Imail ver 6.06 in which the web based messaging system is getting flaky.
Anyway..The backend of the product actual works very well pop3, imap. 
Looking for a web based messaging system that I could run maybe on a
linux box using apache that would connect to pop3 or imap.

Already know about Squirrel Mail looking for others. Would support about
500 accounts.

Anybody actually using x package for this many users?

Thanks.


-- 
**
Roger Schmeits
System Analyst
Clarkson College
http://www.clarksoncollege.edu
Omaha, NE USA
1-800-647-5500 x22542
* 



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Can i use Windows resources with linux

2002-08-29 Thread Gordon McDowall

you mean you want to map upto a windows shared srive from a linux box?

-Original Message-
From: Spanke, Alexander [mailto:[EMAIL PROTECTED]]
Sent: 29 August 2002 14:25
To: 'RedHat General - Mailinglist'
Subject: Can i use Windows resources with linux


Hi,

I want to use some windows ressources, like network drives, with linux.
Any idea ?

Th
Alex



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Can i use Windows resources with linux

2002-08-29 Thread Skuse, Phil


www.samba.org


-Original Message-
From: Spanke, Alexander [mailto:[EMAIL PROTECTED]]
Sent: 29 August 2002 14:25
To: 'RedHat General - Mailinglist'
Subject: Can i use Windows resources with linux


Hi,

I want to use some windows ressources, like network drives, with linux.
Any idea ?

Th
Alex



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Can i use Windows resources with linux

2002-08-29 Thread Spanke, Alexander

Hi,

I want to use some windows ressources, like network drives, with linux.
Any idea ?

Th
Alex



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: email thru browser

2002-08-29 Thread Carter, Shaun G

Horde is very nice

-Original Message-
From: Roger Schmeits [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 29, 2002 9:12 AM
To: [EMAIL PROTECTED]
Subject: email thru browser


Have any recommendations for a web based client? I have a NT box running
Imail ver 6.06 in which the web based messaging system is getting flaky.
Anyway..The backend of the product actual works very well pop3, imap. 
Looking for a web based messaging system that I could run maybe on a
linux box using apache that would connect to pop3 or imap.

Already know about Squirrel Mail looking for others. Would support about
500 accounts.

Anybody actually using x package for this many users?

Thanks.


-- 
**
Roger Schmeits
System Analyst
Clarkson College
http://www.clarksoncollege.edu
Omaha, NE USA
1-800-647-5500 x22542
* 



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Can i use Windows resources with linux

2002-08-29 Thread Carter, Shaun G

mnt -t smbfs //server/share /destination

share can be determined by smbclient -L //server

this can also be added to your fstab file.

-Original Message-
From: Spanke, Alexander [mailto:[EMAIL PROTECTED]]
Sent: 29 August 2002 14:25
To: 'RedHat General - Mailinglist'
Subject: Can i use Windows resources with linux


Hi,

I want to use some windows ressources, like network drives, with linux.
Any idea ?

Th
Alex



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Swap and Memory requirements

2002-08-29 Thread Alan Harding

I have the opportunity to upgrade the memory in my Laptop from 128Mb to
256Mb, however I have a question.

Will I need to modify the swap space?? At the moment I dont know how to
tell whether its being ustilised at all, but I seem to remember a
recommendation that it should be 1.5 times bigger than your memory.

Any ideas and comment??

Thanx in Advance
-- 
Alan  Jan Harding
Tel: 07715 539272
One by one the penguins are stealing my sanity



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Can i use Windows resources with linux

2002-08-29 Thread Spanke, Alexander

i want to use a windows share with linux, also i want to use a windows
fileserver with a linux client.

Pls, don't kickk me, i know it's horror, but it's important :))

-Original Message-
From: Gordon McDowall [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, August 29, 2002 3:23 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Can i use Windows resources with linux


you mean you want to map upto a windows shared srive from a linux box?

-Original Message-
From: Spanke, Alexander [mailto:[EMAIL PROTECTED]]
Sent: 29 August 2002 14:25
To: 'RedHat General - Mailinglist'
Subject: Can i use Windows resources with linux


Hi,

I want to use some windows ressources, like network drives, with linux. Any
idea ?

Th
Alex



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Can i use Windows resources with linux

2002-08-29 Thread Nick Lindsell

At 15:43 29/08/2002 +0200, you wrote:
i want to use a windows share with linux, also i want to use a windows
fileserver with a linux client.

You need to look at the Samba client tools, smbclient and smbmount.
These will allow a Linux client to access windows shares.

Good luck - you're going to need it




Pls, don't kickk me, i know it's horror, but it's important :))

-Original Message-
From: Gordon McDowall [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 29, 2002 3:23 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Can i use Windows resources with linux


you mean you want to map upto a windows shared srive from a linux box?

-Original Message-
From: Spanke, Alexander [mailto:[EMAIL PROTECTED]]
Sent: 29 August 2002 14:25
To: 'RedHat General - Mailinglist'
Subject: Can i use Windows resources with linux


Hi,

I want to use some windows ressources, like network drives, with linux. Any
idea ?

Th
Alex



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Can i use Windows resources with linux

2002-08-29 Thread Kamran A. Khan

Have you ever used Services for Unix3.0?
you can use it to connect your windows and unix boxes..


-Original Message-
From: Spanke, Alexander [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 29, 2002 9:25 AM
To: 'RedHat General - Mailinglist'
Subject: Can i use Windows resources with linux


Hi,

I want to use some windows ressources, like network drives, with linux.
Any idea ?

Th
Alex



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Swap and Memory requirements

2002-08-29 Thread Paul Branston

On Thu, Aug 29, 2002 at 02:36:29PM +0100, Alan Harding wrote:
 I have the opportunity to upgrade the memory in my Laptop from 128Mb to
 256Mb, however I have a question.
 
 Will I need to modify the swap space?? At the moment I dont know how to
 tell whether its being ustilised at all, but I seem to remember a
 recommendation that it should be 1.5 times bigger than your memory.
 
 Any ideas and comment??
 

More physical RAM should mean less paging and swapping is required.
You can examine what memory is currently being used with top or the
command free. Load your system up with several xterms a few browser
windows and see if you need swap now. 

You may find that the extra memory isn't needed.



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: SpamAssassin and Procmail

2002-08-29 Thread Mike Burger

Is the user name actually alanh^I?  I don't think you can have ^ in a 
user name, and caps shouldn't be in a username, either.

On 29 Aug 2002, Alan Harding wrote:

 Has anyone got a good link for the step by step setup of this?? I have
 tried and failed miserably, with procmail refusing to deliver to a local
 address (Address alanh^I is unsafe for mailing to programs)
 
 Problem is I dont understand procmail that well
 
 Thanx in advance
 



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: email thru browser

2002-08-29 Thread Joe Giles

I use Popper_mod. It is an Outlook clone and used mysql. Very nicely
done and well supported.Feature packed also. Create and manage your own
folders and address book. Check it out. Here is the url. Its free and is
PHP based, so it is very secure. 

http://www.symatec-computer.com

Let me know if you need help installing. 

L8TR

Joe


On Thu, 2002-08-29 at 07:32, Carter, Shaun G wrote:
 Horde is very nice
 
 -Original Message-
 From: Roger Schmeits [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, August 29, 2002 9:12 AM
 To: [EMAIL PROTECTED]
 Subject: email thru browser
 
 
 Have any recommendations for a web based client? I have a NT box running
 Imail ver 6.06 in which the web based messaging system is getting flaky.
 Anyway..The backend of the product actual works very well pop3, imap. 
 Looking for a web based messaging system that I could run maybe on a
 linux box using apache that would connect to pop3 or imap.
 
 Already know about Squirrel Mail looking for others. Would support about
 500 accounts.
 
 Anybody actually using x package for this many users?
 
 Thanks.
 
 
 -- 
 **
 Roger Schmeits
 System Analyst
 Clarkson College
 http://www.clarksoncollege.edu
 Omaha, NE USA
 1-800-647-5500 x22542
 * 
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Support

2002-08-29 Thread dbrett

Remove the old machine so you don't have any computer registered.  Then
try again.  It will only let you have one computer registered.

david

On 28 Aug 2002, Susan Murray wrote:

 On Wed, 2002-08-28 at 17:25, Mike Burger wrote:
  You'll need to run rhn_register, again...putting in the same username and 
  password, with which you originally registerd.
  
  Well, you could start a new RHN account, if you want, but using the 
  existing account is cleaner, all around.
 
 I'm having a very bad Redhat week.  I originally installed Redhat 7.0 on
 my work machine, then upgraded to 7.3 using discs from
 Linuxcentral.com.  I ran Redhat Network under 7.0, but was unable to
 register 7.3 under the same username -- I'm not sure why, I don't
 remember now.
 
 Yesterday, I was struggling with an installation of postgresql -- I
 didn't realize that it installed with connections disabled -- so I tried
 to use up2date and got a busy signal.  Like a sap, I then went to the
 Redhat site and bought a basic service for $60. typed in my usual (in
 this case OLD) username and password and now have service for a system
 which doesn't exist.  How can I get Redhat Network to recognize my
 current machine so I can use my basic service?  Should I uninstall RHN 
 and try reinstalling under my old username?
 
 Thanks for any help.
 
 
 
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
 



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: email thru browser

2002-08-29 Thread Joe Giles

Also, I use Ximian Evolution on the server and then about 300 users
connect up using X-Win32 and pull mail inside my network. This works
pretty well, no real worries with this setup. Its kinda nice to have a
centrally managed mail system. Each user has a local account on the
server and a home folder. They connect to their home folder using SAMBA
on Win 2K and XP machines. They auth on the network with a SAMBA PDC.
Works incredibly well. I Use popper for travailing people. Popper_mod
also supports POP and IMAP I believe.


L8TR

Joe

On Thu, 2002-08-29 at 07:32, Carter, Shaun G wrote:
 Horde is very nice
 
 -Original Message-
 From: Roger Schmeits [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, August 29, 2002 9:12 AM
 To: [EMAIL PROTECTED]
 Subject: email thru browser
 
 
 Have any recommendations for a web based client? I have a NT box running
 Imail ver 6.06 in which the web based messaging system is getting flaky.
 Anyway..The backend of the product actual works very well pop3, imap. 
 Looking for a web based messaging system that I could run maybe on a
 linux box using apache that would connect to pop3 or imap.
 
 Already know about Squirrel Mail looking for others. Would support about
 500 accounts.
 
 Anybody actually using x package for this many users?
 
 Thanks.
 
 
 -- 
 **
 Roger Schmeits
 System Analyst
 Clarkson College
 http://www.clarksoncollege.edu
 Omaha, NE USA
 1-800-647-5500 x22542
 * 
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: updating rpms

2002-08-29 Thread ramakrishna

hi,

* Willem Brown ([EMAIL PROTECTED]) wrote:
 Hello,
 
 Gordon McDowall wrote:
  Hi
  
  I have recently came to RedHat after using various other flavours of linux,
  the main difference between what I am used to and RedHat is the use of rpms
  instead of source.   Here is my problem.
  I installed a RedHat 7.3 machine as a cacheing DNS server, by default
  bind-9.2.0 is installed.   Now I have found a bind-9.2.1 rpm, but when you
  try to install it using rpm -Uvh --freshen bind-9.2.1.blah.blah I get an
  error 
  error: failed dependencies:
  bind = 9.2.0 is needed by bind-devel-9.2.0-8
  
  Am I missing something?
  
  Gordon
  
  
  
 
 You'll need to update all the bind rpms at the same time. To get a list
 of the installed rpms:
 
 rpm -qa bind\*
 
   Added information if required:

If you already have installed rpmdb-redhat-7.3-0.20020613.i386.rpm
  then you can find out the dependencies required by the particular rpm
for ex:
in your case to find what other pkgs bind requires execute this
$ rpm -q --redhatrequires bind
  

-cheers-


rk
--
-
Ramakrishna | [EMAIL PROTECTED]
Exocore Consulting  | http://www.exocore.com
Bangalore, India| +91 (80) 344-0397 
-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: RE: email thru browser

2002-08-29 Thread blaq hacka

have you heard  of  Sqwebmail !!!
try it !!!


 Horde is very nice
 
 -Original Message-
 From: Roger Schmeits [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, August 29, 2002 9:12 AM
 To: [EMAIL PROTECTED]
 Subject: email thru browser
 
 
 Have any recommendations for a web based client? I have a NT box running
 Imail ver 6.06 in which the web based messaging system is getting flaky.
 Anyway..The backend of the product actual works very well pop3, imap. 
 Looking for a web based messaging system that I could run maybe on a
 linux box using apache that would connect to pop3 or imap.
 
 Already know about Squirrel Mail looking for others. Would support about
 500 accounts.
 
 Anybody actually using x package for this many users?
 
 Thanks.
 
 
 -- 
 **
 Roger Schmeits
 System Analyst
 Clarkson College
 http://www.clarksoncollege.edu
 Omaha, NE USA
 1-800-647-5500 x22542
 * 
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Virus protection again.

2002-08-29 Thread ramakrishna

hi,

* Scott Skrogstad ([EMAIL PROTECTED]) wrote:
 I know that there are products out there that I can use to protect the 
 server and one or two email accounts but I am using my mail server to 
 serve 2000 customers.  I need virus protection that will protect all of 
 them incoming and outgoing.
 
 Any good suggestions.??

   Checkout this combination 
postfix - amavisd - fprot

rk
--
-
Ramakrishna | [EMAIL PROTECTED]
Exocore Consulting  | http://www.exocore.com
Bangalore, India| +91 (80) 344-0397 
-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: LC_COLLATE, sorting, filenames and stuff like that there

2002-08-29 Thread Leonard den Ottolander

Hi Robert,

   ok, where can i figure out what the implications are for setting
 LC_COLLATE, what the possible values are, and so on?  man -k
 doesn't seem to tell me anything.

 Searching for LC_COLLATE on http://www.tldp.org renders a couple of results, 
of which http://www.tldp.org/HOWTO/Unicode-HOWTO-3.html seems the most 
promising. It mentions man locale by the way.
 Maybe you could tell me on what (database) man -k depends?

Bye,
Leonard.




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Can i use Windows resources with linux

2002-08-29 Thread Saul Arias

At 09:43 AM 29-08-02, Spanke, Alexander wrote:
i want to use a windows share with linux, also i want to use a windows
fileserver with a linux client.

Install the Samba (SMB) client programs. The rpm is samba-client.

Then follow this directions:
http://sunsite.dk/linux-newbie/lnag_drives.html#samba_mount

-- 
Saul Arias [EMAIL PROTECTED]



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Virus protection again.

2002-08-29 Thread Francisco Neira

ramakrishna wrote:
 hi,
 
 * Scott Skrogstad ([EMAIL PROTECTED]) wrote:
 
I know that there are products out there that I can use to protect the 
server and one or two email accounts but I am using my mail server to 
serve 2000 customers.  I need virus protection that will protect all of 
them incoming and outgoing.

Any good suggestions.??
 
 
Checkout this combination 
   postfix - amavisd - fprot
 
 rk
 --
 -
 Ramakrishna | [EMAIL PROTECTED]  
 Exocore Consulting  | http://www.exocore.com  
 Bangalore, India| +91 (80) 344-0397   
 -
 
 
 

I use the same combo with 400 accounts on a small server and works like 
a breeze.

HTH

-- 
Francisco Neira B.
Administrador de Red
Defensoria del Pueblo
Lima, Peru, -05:00 UTC




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: mozilla, netscape and CUPS

2002-08-29 Thread pd3

On Thu, Aug 29, 2002 at 07:56:10AM +0100, Alan Harding wrote:
 I have a similar problem, in that I used CUPS to set up the printers.
 All I do is when it pops up the box for printing the only printer
 displayed is lpr, so just add -P and then the name of the printer that
 you set in CUPS. Works for me
 
 Enjoy

I will visit my friend tomorrow and give it a try.

Thanks for the tip.

t.irvine


-- 

 Whoever thinks a faultless piece to see,
  Thinks what ne'er was, nor is, nor ne'er shall be.

 Alexander Pope, An Essay On Criticism.




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Virus protection again.

2002-08-29 Thread juaid

From: Francisco Neira [EMAIL PROTECTED]

 I use the same combo with 400 accounts on a small server and works like a
breeze.

me too, Postfix + Amavisd, but with Mc Affee's uvscan as antivirus
and at my prevoius job the mail server run the same with  1500 accounts

regards,

juan





-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Newbie: Kernel upgrade

2002-08-29 Thread Brian Lucas
Title: RE: Newbie: Kernel upgrade





Thanks, Michael. I performed those steps and see that my kernel lists as 
Kernel-2.4.7-10 (i386)
Kernel-headers-2.4.7-10 (i386)


So it appears that up2date wants to give me the athlon architecture instead of the i386. I'm a bit confused since that is an Athlon processeor in the box.

-Original Message-
From: Michael Fratoni [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, August 28, 2002 7:30 PM
To: [EMAIL PROTECTED]
Subject: Re: Newbie: Kernel upgrade



-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


On Wednesday 28 August 2002 05:17 pm, Brian Lucas wrote:
 Hi again! I ran up2date on a system that has an AMD Athlon processor 
 and RedHat 7.2. The update list shows a newer kernel with an 
 architecture type = athlon. Beneath that, the kernel headers show the 
 architecture type as i386. Neither installs as both complain saying 
 that the package is for a different architecture. I am able to 
 install other i386 packages without any problem.

 I'm guessing that the difference between the kernel and the kernel 
 headers is throwing it off.


The kernel is optimized for a specific architecture, while the kernel 
headers are not. This is normal.


Check which kernel you have installed with:
rpm -q kernel --qf '%{name}-%{version}-%{release} (%{arch})\n'


Output will be similar to:
kernel-2.4.18-5 (athlon)
kernel-2.4.18-10 (athlon)


To see all kernel related packages at once, try something like: (watch the line wrap) rpm -qa | grep kern | xargs rpm -q --qf '%{name}-%{version}-%{release} 

(%{arch})\n'


Here, I get:


kernel-2.4.18-10 (athlon)
kernel-2.4.18-5 (athlon)
kernel-pcmcia-cs-3.1.27-18 (i386)
glibc-kernheaders-2.4-7.16 (i386)
kernel-source-2.4.18-10 (i386)


(kernelheaders has moved to glibc-kernheaders in the 7.3 release)


 Where can I download kernel rpms independent of up2date's list?


You shouldn't have to, but look at 
ftp.redhat.com/pub/redhat/linux/updates/


Hope that helps,
- -- 
- -Michael


pgp key: http://www.tuxfan.homeip.net:8080/gpgkey.txt
Red Hat Linux 7.{2,3} in 8M of RAM: http://www.rule-project.org/
- --
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org


iEYEARECAAYFAj1teRAACgkQn/07WoAb/StKGgCdG3jr5S2v4NczicsC/J7hjww5
DGEAoKtfTQVxHnIPNVjX+8vlIEYjdXE6
=mSlo
-END PGP SIGNATURE-




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list





RHN Subscription Only??

2002-08-29 Thread Robert Monical

I installed RedHat 7.2 last night: boxed set.
When I tried to run up2date wu-ftpd I get a message (this was midnight 
Pacific time).
Due to extremely high traffic.

I then found the place to register a 30 day subscription to software 
updates from the Product Activation Card.

This morning I was able to execute up2date wu-ftpd.

At $60/year for a basic subscription RHN becomes more expensive than 
Win2K-Pro ($165/updates are free). Less if you have a bunch of NT 4 WS 
licenses to upgrade, as do I. The numbers make more sense when compared to 
Win2K Server pricing. Note that u$oft Licensing allows me to run Oracle on 
Win2k Pro and I am not detecting any ill effects in our environment.

I'm looking hard at RedHat because Solaris Intel is fading away, especially 
RAID controller support. For the last couple of years, Sun was charging $75 
for media kits.  Critical updates are available for free, but not nearly as 
slick as RHN and up2date.

So, this first look indicates that to adopt RedHat as a database/Web server 
platform:
1.  I have to come up the RedHat/Linux learning curve.
2.  Pay more than for Solaris Intel and Win2K Pro to have a critical update 
service.

Was my experience with up2date last night an anomaly?

If I try to bring a couple more RH systems up to evaluate in my 
environment, will I need to purchase Basic RHN subscriptions to get things 
like an ftp daemon and critical updates?

TIA for your help figuring out the deployment model RH.












-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Can I use Windows resources with Linux

2002-08-29 Thread Michael S. Dunsavage

if you have X installed and running to go freshmeat.org and download
linneighborhood...


Striking resemblance to Network Neighborhood

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Nick Lindsell
Sent: Thursday, August 29, 2002 10:07 AM
To: [EMAIL PROTECTED]
Subject: RE: Can i use Windows resources with linux


At 15:43 29/08/2002 +0200, you wrote:
i want to use a windows share with linux, also i want to use a windows
fileserver with a linux client.

You need to look at the Samba client tools, smbclient and smbmount.
These will allow a Linux client to access windows shares.

Good luck - you're going to need it




Pls, don't kickk me, i know it's horror, but it's important :))

-Original Message-
From: Gordon McDowall [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 29, 2002 3:23 PM
To: '[EMAIL PROTECTED]'
Subject: RE: Can i use Windows resources with linux


you mean you want to map upto a windows shared srive from a linux box?

-Original Message-
From: Spanke, Alexander [mailto:[EMAIL PROTECTED]]
Sent: 29 August 2002 14:25
To: 'RedHat General - Mailinglist'
Subject: Can i use Windows resources with linux


Hi,

I want to use some windows ressources, like network drives, with linux. Any
idea ?

Th
Alex



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: RHN Subscription Only??

2002-08-29 Thread Ed Wilts

On Thu, Aug 29, 2002 at 09:16:26AM -0700, Robert Monical wrote:
 I installed RedHat 7.2 last night: boxed set.
 When I tried to run up2date wu-ftpd I get a message (this was midnight 
 Pacific time).
 Due to extremely high traffic.
 
 I then found the place to register a 30 day subscription to software 
 updates from the Product Activation Card.
 
 This morning I was able to execute up2date wu-ftpd.
 
 At $60/year for a basic subscription RHN becomes more expensive than 
 Win2K-Pro ($165/updates are free). Less if you have a bunch of NT 4 WS 
 licenses to upgrade, as do I. The numbers make more sense when compared to 
 Win2K Server pricing. Note that u$oft Licensing allows me to run Oracle on 
 Win2k Pro and I am not detecting any ill effects in our environment.

A WinXP Pro license retails for $199.  No volume license will give you a
full license - they're all upgrade licenses.  A new release comes out
every few years.  Do the math based on a 3 or 5 year cycle.

Note that up2date is optional.  You can freely ftp the updates any time
and apply them.  up2date is an extra service to help you manage those
updates, something that neither Sun nor  Microsoft offer.  

 2.  Pay more than for Solaris Intel and Win2K Pro to have a critical update 
 service.

Nope - all the critical updates are free.  What you pay for the smooth
integration of those updates, and for a single system, even those are
free. 

 Was my experience with up2date last night an anomaly?

Not really.  I see this whenever a large batch of updates come through.
If I have Internet-facing servers that are at risk because those updates
aren't applied, I simply ftp the patches down and apply them, then later
on do an up2date -p to bring the package list up to date.

.../Ed
-- 
Ed Wilts, Mounds View, MN, USA
mailto:[EMAIL PROTECTED]
Member #1, Red Hat Community Ambassador Program



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Can i use Windows resources with linux

2002-08-29 Thread Samuel Flory

  The below requires the samba-client, and samba-common packages be
installed on your system.

On Thu, 2002-08-29 at 06:35, Carter, Shaun G wrote:
 mnt -t smbfs //server/share /destination
 

 Shouldn't that be mount?

 share can be determined by smbclient -L //server
 
 this can also be added to your fstab file.
 
 -Original Message-
 From: Spanke, Alexander [mailto:[EMAIL PROTECTED]]
 Sent: 29 August 2002 14:25
 To: 'RedHat General - Mailinglist'
 Subject: Can i use Windows resources with linux
 
 
 Hi,
 
 I want to use some windows ressources, like network drives, with linux.
 Any idea ?
 
 Th
 Alex  
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
 




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Newbie: Anything like a point-in-time restore

2002-08-29 Thread Brian Lucas
Title: Message



Is there any type of 
a point-in-time system restore for RH 7.2? I just want to know if there 
were a way to back out a change like upgrading the kernel or installing a new 
rpm.

I'm comparing this 
to the way GoBack works for Win machines or the way XP supports it 
natively.

Thanks!


Re: RHN Subscription Only??

2002-08-29 Thread Frederic Herman

Ed Wilts wrote:

On Thu, Aug 29, 2002 at 09:16:26AM -0700, Robert Monical wrote:
  

I installed RedHat 7.2 last night: boxed set.
When I tried to run up2date wu-ftpd I get a message (this was midnight 
Pacific time).
Due to extremely high traffic.

I then found the place to register a 30 day subscription to software 
updates from the Product Activation Card.

This morning I was able to execute up2date wu-ftpd.

At $60/year for a basic subscription RHN becomes more expensive than 
Win2K-Pro ($165/updates are free). Less if you have a bunch of NT 4 WS 
licenses to upgrade, as do I. The numbers make more sense when compared to 
Win2K Server pricing. Note that u$oft Licensing allows me to run Oracle on 
Win2k Pro and I am not detecting any ill effects in our environment.



A WinXP Pro license retails for $199.  No volume license will give you a
full license - they're all upgrade licenses.  A new release comes out
every few years.  Do the math based on a 3 or 5 year cycle.

Note that up2date is optional.  You can freely ftp the updates any time
and apply them.  up2date is an extra service to help you manage those
updates, something that neither Sun nor  Microsoft offer.  

  

2.  Pay more than for Solaris Intel and Win2K Pro to have a critical update 
service.



Nope - all the critical updates are free.  What you pay for the smooth
integration of those updates, and for a single system, even those are
free. 

  

Was my experience with up2date last night an anomaly?



Not really.  I see this whenever a large batch of updates come through.
If I have Internet-facing servers that are at risk because those updates
aren't applied, I simply ftp the patches down and apply them, then later
on do an up2date -p to bring the package list up to date.

.../Ed
  

Check out the KRUD distro.  RedHat with monthly patches applied.  You 
get a new distro every month.  Mount it on a service and do the upgrades 
from the server for all bazillion of your servers.  Total cost per year 
is one subscription, around $65.

check it out:
http://www.tummy.com/krud

Fred







-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re[2]: LILO - Boot other os's

2002-08-29 Thread Brian Ashe

Hello Cameron,

Thursday, August 29, 2002, 4:20:42 AM, you textually orated:

  I have a linux box in our programmers area.  This is really 
 going to 
  be a test machine for them to test programms on diferent window's 
  os's.  It is setup with 4 primary partions.  Linux 7.3 
 (2.4.18) is on the first /dev/hda1
  and I created 3 fat16 dos partions on /dev/hda2, /dev/hda3, 
 /dev/hda4.   I
  would like with LILO to choose which partion will boot. Below is my 
  lilo.conf file.

CDca This info might be out of date, but...
CDca As far as I know, dos-based windows (i.e. Win-9x) cannot support multiple
CDca primary DOS partitions. How did you manage to create them?
CDca LILO might be working, but perhaps the windows loader is resorting to what
CDca it thinks is C:.

Coming in a little late here, so I hope I'm not missing something.

I don't know about out of date, but there are always workarounds.

DOS/WinXX require the active flag to be set on the partition to be able to
boot. Most boot loaders are capable of switching this at boot time so as
to fool the OS in question. So for example...


# LILO configuration file
#
# For example purposes only!
# Consult documentation or Google for more info.
boot=/dev/hda
map=/boot/map
install=/boot/boot.b
prompt
timeout=20
message=/boot/message
linear
default=linux

# Default Linux install
image=/boot/vmlinuz-2.2.19-7.0.16
label=linux
read-only
root=/dev/hda11

# First DOS
other = /dev/hda1
  label = DOS
  table = /dev/hda
  change
partition = /dev/hda1
  activate # Make this one bootable
  set = DOS_1_normal
partition = /dev/hda2
  deactivate   # Hide this one, DOS is picky
  set = DOS_1_hidden

# Second DOS (reverse it)
other = /dev/hda1
  label = Win9x
  table = /dev/hda
  change
partition = /dev/hda2
  activate # Make this one bootable
  set = DOS_1_normal
partition = /dev/hda1
  deactivate   # Hide this one, DOS is picky
  set = DOS_1_hidden

You may have additional requirements.

Have fun,
-- 
_
 Brian Ashe CTO
 [EMAIL PROTECTED]  Dee-Web Software Services, LLC.
 http://www.dee-web.com/
-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



using debugfs and lsdel help please

2002-08-29 Thread Peter Joslin

Hi Group,

I have a small dilemma,

i have a linux red hat 7.2 server, quite a few files have been deleted off
the disk, i have managed to get into the debugfs and run lsdel, which lists
loads of lost files, no names just inode numbers and dates.

what i need to do, is somehow convert all the files (or inode numbers)
generated on the 27 August back into file names on the server.

i can do this one by one by using the command

dump INODE FILE_NAME

but its a little slow going... :)

is there a command or script to randomley generate file names and restore
all the files ?

thanks in advance

Pete Joslin



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



sound help

2002-08-29 Thread Blake Thornton

I think that /dev/dsp is the sound device for both recording and playback?  
Could someone tell me if that is correct.

I'm trying out some softward and it is telling me it can't open the audio 
device that I have set as /dev/dsp.  I just wanted to make sure I had the 
device set correctly and therefore I would have to look for the problem 
elsewhere.

thanks,
blake




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



print to pdf?

2002-08-29 Thread Chris Mason

I'd like to have a windows computer print postscript to a Redhat server,
and have the server turn the postscript into a pdf and save it in a
samba share. Can that be done?

Chris Mason
[EMAIL PROTECTED]
Box 340, The Valley, Anguilla, British West Indies
Tel: 264 497 5670 Fax: 264 497 8463 Cell: 264 235 5670
http://www.anguillaguide.com/ The Anguilla Guide
Talk to me in real time:
Yahoo:netconcepts_anguilla
US Fax and Voicemail: (815)301-9759




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: sound help

2002-08-29 Thread Bob Buckley

Have you run sndconfig?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Blake Thornton
Sent: Thursday, August 29, 2002 1:55 PM
To: Redhat List
Subject: sound help


I think that /dev/dsp is the sound device for both recording and playback?
Could someone tell me if that is correct.

I'm trying out some softward and it is telling me it can't open the audio
device that I have set as /dev/dsp.  I just wanted to make sure I had the
device set correctly and therefore I would have to look for the problem
elsewhere.

thanks,
blake




--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: print to pdf?

2002-08-29 Thread Aly Dharshi

If you could get the file to see the command ps2pdf (have all the TeX 
and LaTeX stuff installed) and then somehow in samba I guess that you 
can run a script either post or pre printing and get it converted and 
stored somewhere right ?

HTH. Cheers,

Aly.

Chris Mason wrote:
 I'd like to have a windows computer print postscript to a Redhat server,
 and have the server turn the postscript into a pdf and save it in a
 samba share. Can that be done?
 
 Chris Mason
 [EMAIL PROTECTED]
 Box 340, The Valley, Anguilla, British West Indies
 Tel: 264 497 5670 Fax: 264 497 8463 Cell: 264 235 5670
 http://www.anguillaguide.com/ The Anguilla Guide
 Talk to me in real time:
 Yahoo:netconcepts_anguilla
 US Fax and Voicemail: (815)301-9759
 
 
 
 


-- 
Aly Dharshi
[EMAIL PROTECTED]
System Administrator ORS Servers

 A good speech is like a good dress
 that's short enough to be interesting
 and long enough to cover the subject




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Newbie: Anything like a point-in-time restore

2002-08-29 Thread Samuel Flory

On Thu, 2002-08-29 at 10:43, Brian Lucas wrote:
 Is there any type of a point-in-time system restore for RH 7.2?  I just want
 to know if there were a way to back out a change like upgrading the kernel
 or installing a new rpm.
  
 I'm comparing this to the way GoBack works for Win machines or the way XP
 supports it natively.
  

  I'm not sure what GoBack is. You can install the old rpm, or remove
the rpm you installed.

example:

#update to an older kernel rpm
rpm -Uvh --oldpackage kernel-2.4.18-5.i686.rpm

#remove an rpm
rpm -e ethereal-0.9.4-0.7.3.0  (or rpm -e ethereal)




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: print to pdf?

2002-08-29 Thread Dave Ihnat

On Thu, Aug 29, 2002 at 03:04:18PM -0400, Chris Mason wrote:
 I'd like to have a windows computer print postscript to a Redhat server,
 and have the server turn the postscript into a pdf and save it in a
 samba share. Can that be done?

Yep.  The attached script will do this.
-- 
Dave Ihnat
[EMAIL PROTECTED]


#!/bin/sh

# Simple script to convert a specified postscript file into a PDF document
# and place it in a location that is shared by the Samba server.
# 
# Usage:
#   printpdf [-k][-n] Input_Filename
#
# Where Input_Filename is the spool file for spooler use
#
#   -k  Keep the input file.  Default is to delete it when done.
#
#   -n  Name the output file the same name as the input file sans any
#   suffixes.
#
#   -v  Verbose.
#
#   -d  Debug.  Won't take effect until after command parse, of course.
#
# (Original version) John Bright, 2001, [EMAIL PROTECTED]
#
# Modified 01/20/2002, [EMAIL PROTECTED]
#   Added command-line options to preserve input file, name output file to
#   input filename for interactive use.
#
##
# Data
##

# We will create the pdf into a temporary file based upon the current
# date and time.  After we are finished, we'll rename it to a file with
# the same date, but ending in .pdf.  We do this because if a user tries
# to open a PDF that is still being written, they will get a message
# that it is corrupt, when it is actually just not done yet.

DATE=`date +%b%d-%H%M%S`

# Directory in which to place the output
# Be sure this directory exists and is writable by the user that Samba
# is running as (for example, the nobody user)

OUTDIR=/usr/tmp/pdfdropbox

# Option control flags
KEEP_FLAG=;
NAME_FLAG=;
VERBOSE_FLAG=;
DEBUG_FLAG=;

##
# FUNCTIONS
##
usage() {
if [ $DEBUG_FLAG ]
then
set -x;
fi;

cat !
Usage:
printpdf [-k][-n] Input_Filename

Where Input_Filename is the spool file for spooler use

-k  Keep the input file.  Default is to delete it when done.

-n  Name the output file the same name as the input file sans any
suffixes.

-v  Verbose mode.
!

exit 1;

};

verb_print()
{
if [ $VERBOSE_FLAG ]
then
echo $* 2;
fi;
};
##
# MAIN
##

# Get options
TMPSTR=`getopt -o dvhkn -- $@`;

if [ $? -ne 0 ]
then
exit $?;
fi;

eval set -- $TMPSTR;

while true
do
case $1 in
-k)
KEEP_FLAG=Y;
shift;
;;

-n)
NAME_FLAG=Y;
shift;
;;

-v)
VERBOSE_FLAG=Y;
shift;
;;

-d)
DEBUG_FLAG=Y;
shift;
;;

-h)
usage;
shift;
;;

--)
shift;
break;
;;
esac;
done;

if [ $DEBUG_FLAG ]
then
set -x;
fi;

if [ ! -d $OUTDIR ]
then
mkdir $OUTDIR;
if [ $? -ne 0 ]
then
/usr/bin/logger -i -s -p lpr.err -t printpdf Faile to create PDF 
output directory $OUTDIR;
verb_print Failed to create PDF output directory $OUTDIR;
exit 1;
fi;

chmod 777 $OUTDIR
if [ $? -ne 0 ]
then
/usr/bin/logger -i -s -p lpr.err -t printpdf Faile to set 
permissions on PDF output directory $OUTDIR;
verb_print Faile to set permissions on PDF output directory $OUTDIR;
exit 1;
fi;
fi;

while [ $# -ne 0 ]
do
if [ $NAME_FLAG ]
then
OUTFNAME=$OUTDIR/`basename $1 .ps`.pdf
else
OUTFNAME=$OUTDIR/$DATE.pdf;
fi;

verb_print Output filename: $OUTFNAME;

ps2pdf $1 $OUTDIR/$DATE.temp
mv $OUTDIR/$DATE.temp $OUTFNAME;

if [ ! $KEEP_FLAG ]
then
verb_print Deleting spooled file $1;
rm -f $1
fi;

shift;
done;

exit 0;



Re: print to pdf?

2002-08-29 Thread The Head Moron



I've used this setup both at my office and at home.  Works just great!

http://www.linuxgazette.com/issue72/bright.html

Lloyd Hanson

-Original Message-
From: Chris Mason [EMAIL PROTECTED]
To: Redhat-list [EMAIL PROTECTED]
Date: Thu, 29 Aug 2002 15:04:18 -0400
Subject: print to pdf?

 I'd like to have a windows computer print postscript to a Redhat
 server,
 and have the server turn the postscript into a pdf and save it in a
 samba share. Can that be done?
 
 Chris Mason
 [EMAIL PROTECTED]
 Box 340, The Valley, Anguilla, British West Indies
 Tel: 264 497 5670 Fax: 264 497 8463 Cell: 264 235 5670
 http://www.anguillaguide.com/ The Anguilla Guide
 Talk to me in real time:
 Yahoo:netconcepts_anguilla
 US Fax and Voicemail: (815)301-9759
 
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
 




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: sound help

2002-08-29 Thread Blake Thornton

 Have you run sndconfig?


That did the trick!  Thank you very much!

blake




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: sound help

2002-08-29 Thread Bob Buckley

Yes. It is a config wizard similar to Xconfigurator. Just follow the
prompts. BobB

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Bob Buckley
Sent: Thursday, August 29, 2002 2:21 PM
To: [EMAIL PROTECTED]
Subject: RE: sound help


Have you run sndconfig?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Blake Thornton
Sent: Thursday, August 29, 2002 1:55 PM
To: Redhat List
Subject: sound help


I think that /dev/dsp is the sound device for both recording and playback?
Could someone tell me if that is correct.

I'm trying out some softward and it is telling me it can't open the audio
device that I have set as /dev/dsp.  I just wanted to make sure I had the
device set correctly and therefore I would have to look for the problem
elsewhere.

thanks,
blake




--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



--
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Newbie: Anything like a point-in-time restore

2002-08-29 Thread Todd A. Jacobs

On Thu, 29 Aug 2002, Brian Lucas wrote:

 Is there any type of a point-in-time system restore for RH 7.2?  I just
 want to know if there were a way to back out a change like upgrading the
 kernel or installing a new rpm.

If you want to roll back to an earlier RPM, just use the --force flag, 
e.g. rpm -Uvh --force foo.rpm. This will remove the newer package and 
drop the older package back in place.

-- 
The only thing that helps me maintain my slender grip on reality is the
friendship I share with my collection of singing potatoes.

- Holly, JMC Vessel *Red Dwarf*



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: print to pdf?

2002-08-29 Thread Hal Burgiss

On Thu, Aug 29, 2002 at 03:04:18PM -0400, Chris Mason wrote:
 I'd like to have a windows computer print postscript to a Redhat
 server, and have the server turn the postscript into a pdf and save
 it in a samba share. Can that be done?

Not sure how you are visualizing the steps here, but there is:

[hal@cadillac hal]$ ps2TAB
ps2ascii  ps2epsi  ps2frag  ps2pdf  ps2pdf12  ps2pdf13  ps2pdfwr  ps2pk  ps2ps

My experience with generating pdf docs from other formats with various
tools is not all that impressive. So it may depend on your
expectations for the finished doc, and possibly the formatting of the
original. (These may work fine, I don't recall when or what I did with
them ATM. I was working mostly with html - pdf :)

-- 
Hal Burgiss
 



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: print to pdf?

2002-08-29 Thread Brian Ashe

Hello Chris,

Thursday, August 29, 2002, 3:04:18 PM, you textually orated:

CM I'd like to have a windows computer print postscript to a Redhat server,
CM and have the server turn the postscript into a pdf and save it in a
CM samba share. Can that be done?

Yes.

http://www.linuxgazette.com/issue72/bright.html

Have fun,
-- 
_
 Brian Ashe CTO
 [EMAIL PROTECTED]  Dee-Web Software Services, LLC.
 http://www.dee-web.com/
-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: Can i use Windows resources with linux

2002-08-29 Thread Carter, Shaun G

doh, extremely bad mistake, thanks

-Original Message-
From: Samuel Flory [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 29, 2002 12:59 PM
To: [EMAIL PROTECTED]
Subject: RE: Can i use Windows resources with linux


  The below requires the samba-client, and samba-common packages be
installed on your system.

On Thu, 2002-08-29 at 06:35, Carter, Shaun G wrote:
 mnt -t smbfs //server/share /destination
 

 Shouldn't that be mount?

 share can be determined by smbclient -L //server
 
 this can also be added to your fstab file.
 
 -Original Message-
 From: Spanke, Alexander [mailto:[EMAIL PROTECTED]]
 Sent: 29 August 2002 14:25
 To: 'RedHat General - Mailinglist'
 Subject: Can i use Windows resources with linux
 
 
 Hi,
 
 I want to use some windows ressources, like network drives, with linux.
 Any idea ?
 
 Th
 Alex  
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
 




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Newbie: Anything like a point-in-time restore

2002-08-29 Thread Monte Milanuk

On 29 Aug 2002 12:51:53 -0700
Samuel Flory [EMAIL PROTECTED] wrote:

   I'm not sure what GoBack is. You can install the old rpm, or remove
 the rpm you installed.
 
 example:
 
 #update to an older kernel rpm
 rpm -Uvh --oldpackage kernel-2.4.18-5.i686.rpm
 
 #remove an rpm
 rpm -e ethereal-0.9.4-0.7.3.0  (or rpm -e ethereal)
 

GoBack is one of the things they have in the M$ world to keep people
from shooting themselves in the head using Windows ;)

Basically, as I understand it, it automatically takes snapshots of the
system in the background, and if you install something like a new game,
that updates your DirectX video drivers, and upon the obligatory reboot,
your system is well and truly fscked, you can boot into a special
restore mode or some such, sometimes using a rescue disc, and select to
'GoBack' to a given known-good (hah!) point a day or two earlier.  I'd
think this would take just a buttload of hard drive space, but w/ new
hard drives the sizes they are now, I guess it's not as big an issue vs.
having to scrap and reinstall your whole system, hunt down the driver
updates that you had downloaded, etc.

HTH,

Monte



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: print to pdf?

2002-08-29 Thread Chris Mason

I've tried this, and the printpdf script works great, but I can't get
the printer to work. I am using  printing = cups as the print system, is
that likely to be the problem? If so, any solution?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
On Behalf Of Brian Ashe
Sent: Thursday, August 29, 2002 3:33 PM
To: Chris Mason
Subject: Re: print to pdf?

Hello Chris,

Thursday, August 29, 2002, 3:04:18 PM, you textually orated:

CM I'd like to have a windows computer print postscript to a Redhat
server,
CM and have the server turn the postscript into a pdf and save it in a
CM samba share. Can that be done?

Yes.

http://www.linuxgazette.com/issue72/bright.html

Have fun,
-- 
_
 Brian Ashe CTO
 [EMAIL PROTECTED]  Dee-Web Software Services, LLC.
 http://www.dee-web.com/
-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Advanced Server - Oracle 9i install issues

2002-08-29 Thread Jim Purtell
Title: Message



Has anyone had any 
issues with installing Oracle 9i on an Advanced Server?
We currently have 
RH-AS 2.1loaded on a Dell 6650 with 12 GB of mem. and 4 X 1.6 GB 
Xeons.

Oracle 9.0.1 R2 
stalls on Linking. It gets as far as 61% then begins to eat up cpu time and 
hangs the box.
We successfully 
installed the same media (RH-AS  Oracle 9i)on a Dell 2400 with no 
issues. 
I guess my question 
is, what could be so different that Oracle wont install on our 6650 but will on 
our 2400???

Any suggestions 
would be much appreciated.



Jim Purtell
Systems 
Administrator
Henkels  McCoy, 
Inc.
Office: 
215-283-8016
Fax: 
215-283-7702





compile VB.NET on linux

2002-08-29 Thread Mark Golino

We have a VB.NET app and would like to port this to a linux box - Is
this possible? 

How is this done?

Mark Golino
(203)755-5454
www.ims-sys.com
[EMAIL PROTECTED]



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: SpamAssassin and Procmail

2002-08-29 Thread Alan Harding


On Thu, 2002-08-29 at 15:27, Mike Burger wrote:
 Is the user name actually alanh^I?  I don't think you can have ^ in a 
 user name, and caps shouldn't be in a username, either.

No the user name is alanh, but it reports the error as this. It also
does it for the other users I have.

 
-- 
Alan Harding
PS Engineer  Netcache Trainer
Network Appliance Ltd
+44 (0)7715 539272

One by one the penguins are stealing my sanity



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RPM's -- Now you see them, ...

2002-08-29 Thread Patrick Beart

Folks:

OK, ... I'm going a bit crazy, here.   8P

I installed Webmin last night, from the RPM. Using the ...

rpm -Uhv file.rpm

... command (as root). Everything went well, and Webmin is 
installed. NOW, when I try to install Courier (MTA) that way, I'm 
getting database errors. Similar errors occur when I try the above 
command as user, btw. Here's a sample ...

---
Preparing...rpmdb: read: 0x4007c394, 4096: Input/output error
rpmdb: unable to create/retrieve page 3810
rpmdb: PANIC: Input/output error
error: db3 error(5) from dbcursor-c_get: Input/output error
error: db3 error(-30987) from dbcursor-c_close: DB_RUNRECOVERY: 
Fatal error, run database recovery
error: db3 error(-30987) from db3c_open: DB_RUNRECOVERY: Fatal error, 
run database recovery
error: db3 error(-30987) from db-get: DB_RUNRECOVERY: Fatal error, 
run database recovery
### [100%]
...snipped...
error: db3 error(-30987) from dbenv-close: DB_RUNRECOVERY: Fatal 
error, run database recovery
error: db3 error(-30987) from db_env_create: DB_RUNRECOVERY: Fatal 
error, run database recovery
error: db3 error(-30987) from dbenv-remove: DB_RUNRECOVERY: Fatal 
error, run database recovery
rpmdb: read: 0x40732b74, 4096: Input/output error
rpmdb: Overflow page 3810 has bogus prev_pgno value
rpmdb: Overflow item incomplete on page 3810
error: db3 error(-30985) from db-verify: DB_VERIFY_BAD: Database 
verification failed
[root@Faraday i386]#
---

I also tried to install Nano (a Pico-like editor, that 
works better than Pico), and I'm getting the SAME database errors! 
Weird.  ;-/

What is missing, here?   TIA




Patrick Beart
-- 

Web ArchitectureiWeb4Biz 503-774-8280   Portland, OR
Internet Consulting, Intelligent Web site Development  Secure site Hosting.
http://www.WebArchitecture.com/

This is an era when nonsense has become acceptable and sanity is 
controversial.
  - Thomas Sowell




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Problem : font server : update XFree86-xfs

2002-08-29 Thread Philippe Depouilly

Hello,

I'm using a RH-7.2 box as font server for several NCD-452 X terminals.

After updating to XFree86-xfs-4.1.0-25.i386.rpm, font server hang-up.
X terminal says : LOSTCONNECTION when loading my font server and don't start

at the hang-up the linux box as a process started like this :

xfs -ls 7/4/7100,5/5/7100 -cf /usr/X11R6/lib/X11/fs/config -port 7100

when going back original XFree86-xfs package, everything works fine

(processes are like this : xfs -droppriv -daemon)

Any ideas ?

Thanx,

Philippe



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RPM's -- Now you see them, ...

2002-08-29 Thread Patrick Beart

Folks:

OK, ... I'm going a bit crazy, here.   8P

I'm using RH 7.2. I installed Webmin last night, from the 
RPM. Using the ...

rpm -Uhv file.rpm

... command (as root). Everything went well, and Webmin is 
installed. NOW, when I try to install Courier (mail server software) 
that way, I'm getting database errors. Similar errors occur when I 
try the above command as user, btw. Here's a sample ...

---
Preparing...rpmdb: read: 0x4007c394, 4096: Input/output error
rpmdb: unable to create/retrieve page 3810
rpmdb: PANIC: Input/output error
error: db3 error(5) from dbcursor-c_get: Input/output error
error: db3 error(-30987) from dbcursor-c_close: DB_RUNRECOVERY: 
Fatal error, run database recovery
error: db3 error(-30987) from db3c_open: DB_RUNRECOVERY: Fatal error, 
run database recovery
error: db3 error(-30987) from db-get: DB_RUNRECOVERY: Fatal error, 
run database recovery
### [100%]
...snipped...
error: db3 error(-30987) from dbenv-close: DB_RUNRECOVERY: Fatal 
error, run database recovery
error: db3 error(-30987) from db_env_create: DB_RUNRECOVERY: Fatal 
error, run database recovery
error: db3 error(-30987) from dbenv-remove: DB_RUNRECOVERY: Fatal 
error, run database recovery
rpmdb: read: 0x40732b74, 4096: Input/output error
rpmdb: Overflow page 3810 has bogus prev_pgno value
rpmdb: Overflow item incomplete on page 3810
error: db3 error(-30985) from db-verify: DB_VERIFY_BAD: Database 
verification failed
[root@Faraday i386]#
---

I also tried to install Nano (a Pico-like editor, that 
works better than Pico), and I'm getting the SAME database errors! 
Weird.  ;-/

What is missing, here?   TIA




Patrick Beart

P.S. Please respond to the list, as my E-mail (at the above listed 
address) is broken.
-- 

Web ArchitectureiWeb4Biz 503-774-8280   Portland, OR
Internet Consulting, Intelligent Web site Development  Secure site Hosting.
http://www.WebArchitecture.com/

This is an era when nonsense has become acceptable and sanity is 
controversial.
  - Thomas Sowell




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



IPTables setup

2002-08-29 Thread Brian Lucas
Title: Message



This is probably one 
that's been asked before. Can someone point me to a link to setup up 
IPTABLES when IPCHAINS is already installed. I get the "insmod" error when 
doing an iptables -L and a cursory look shows that I can't have both 
running.


Re: RPM's -- Now you see them, ...

2002-08-29 Thread Samuel Flory

Try a rpm --rebuilddb

On Thu, 2002-08-29 at 12:41, Patrick Beart wrote:
 Folks:
 
   OK, ... I'm going a bit crazy, here.   8P
 
   I'm using RH 7.2. I installed Webmin last night, from the 
 RPM. Using the ...
 
   rpm -Uhv file.rpm
 
   ... command (as root). Everything went well, and Webmin is 
 installed. NOW, when I try to install Courier (mail server software) 
 that way, I'm getting database errors. Similar errors occur when I 
 try the above command as user, btw. Here's a sample ...
 
 ---
 Preparing...rpmdb: read: 0x4007c394, 4096: Input/output error
 rpmdb: unable to create/retrieve page 3810
 rpmdb: PANIC: Input/output error
 error: db3 error(5) from dbcursor-c_get: Input/output error
 error: db3 error(-30987) from dbcursor-c_close: DB_RUNRECOVERY: 
 Fatal error, run database recovery
 error: db3 error(-30987) from db3c_open: DB_RUNRECOVERY: Fatal error, 
 run database recovery
 error: db3 error(-30987) from db-get: DB_RUNRECOVERY: Fatal error, 
 run database recovery
 ### [100%]
   ...snipped...
 error: db3 error(-30987) from dbenv-close: DB_RUNRECOVERY: Fatal 
 error, run database recovery
 error: db3 error(-30987) from db_env_create: DB_RUNRECOVERY: Fatal 
 error, run database recovery
 error: db3 error(-30987) from dbenv-remove: DB_RUNRECOVERY: Fatal 
 error, run database recovery
 rpmdb: read: 0x40732b74, 4096: Input/output error
 rpmdb: Overflow page 3810 has bogus prev_pgno value
 rpmdb: Overflow item incomplete on page 3810
 error: db3 error(-30985) from db-verify: DB_VERIFY_BAD: Database 
 verification failed
 [root@Faraday i386]#
 ---
 
   I also tried to install Nano (a Pico-like editor, that 
 works better than Pico), and I'm getting the SAME database errors! 
 Weird.  ;-/
 
   What is missing, here?   TIA
 
 
 
 
 Patrick Beart
 
 P.S. Please respond to the list, as my E-mail (at the above listed 
 address) is broken.
 -- 
 
 Web ArchitectureiWeb4Biz 503-774-8280   Portland, OR
 Internet Consulting, Intelligent Web site Development  Secure site Hosting.
 http://www.WebArchitecture.com/
 
 This is an era when nonsense has become acceptable and sanity is 
 controversial.
   - Thomas Sowell
 
 
 
 
 -- 
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
 https://listman.redhat.com/mailman/listinfo/redhat-list
 




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: IPTables setup

2002-08-29 Thread Michael Fratoni

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 29 August 2002 05:38 pm, Brian Lucas wrote:
 This is probably one that's been asked before.  Can someone point me to
 a link to setup up IPTABLES when IPCHAINS is already installed.  I get
 the insmod error when doing an iptables -L and a cursory look shows
 that I can't have both running.

service ipchains stop
chkconfig ipchains off
rmmod {all ipchains modules}
chkconfig iptables on
modprobe ip_tables  # (should now load)

Hope that helps,
- -- 
- -Michael

pgp key:  http://www.tuxfan.homeip.net:8080/gpgkey.txt
Red Hat Linux 7.{2,3} in 8M of RAM: http://www.rule-project.org/
- --
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAj1ul/wACgkQn/07WoAb/SuE9wCfcClrFamw2BiBchWGgHqEJumW
K6MAoK85I8sLAebsO1bQcfUghH3OJYXe
=noXl
-END PGP SIGNATURE-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: RHN Subscription Only??

2002-08-29 Thread Gary

On Thu, Aug 29, 2002 at 09:16:26AM -0700 or thereabouts, Robert Monical wrote:
 I installed RedHat 7.2 last night: boxed set.
 When I tried to run up2date wu-ftpd I get a message (this was midnight 
 Pacific time).
 Due to extremely high traffic.
 
 I then found the place to register a 30 day subscription to software 
 updates from the Product Activation Card.

As many of us on the list use apt-get, you can update and upgrade your
distro with a one line command, and forget it.  I just installed RH on a
P133 for my mail server on my LAN, and it updated 94 files/programs in
about an hour..  Can't get any easier for critical updates.
 

-- 
Best regards,
Gary   

Sorry, but my karma just ran over your dogma.



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: IPTables setup

2002-08-29 Thread Knut Ove Hauge

I have just installed iptables on a redhat 7.2 system which had a
default ipchain installed.
I have two NIC's eth1 connected to adsl line and eth0 for my lan.
I mail u the setupfile.


 --- Brian Lucas [EMAIL PROTECTED] skrev:  This is probably one
that's been asked before.  Can someone point me
 to a
 link to setup up IPTABLES when IPCHAINS is already installed.  I get
 the
 insmod error when doing an iptables -L and a cursory look shows
 that I
 can't have both running.
 

=
Investigating the Norwegain 4.th Secret Service
The multiheaded beast.
http://hjem.sol.no/altiett/knut_ove_hauge_kuren.htm

__
Se den nye Yahoo! Mail på http://no.yahoo.com/
Nytt design, enklere å bruke, alltid tilgang til Adressebok, Kalender og Notisbok



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: IPTables setup

2002-08-29 Thread Javier Gostling

On Thu, Aug 29, 2002 at 02:38:59PM -0700, Brian Lucas wrote:

 This is probably one that's been asked before.  Can someone point me to
 a link to setup up IPTABLES when IPCHAINS is already installed.  I get
 the insmod error when doing an iptables -L and a cursory look shows
 that I can't have both running.

Quick help:

# service ipchains stop
# modprobe -r ipchains
# lsmod (to make sure there are no other wierd modules in the way)
# rpm -e ipchains (to ensure you don't load ipchains again)

And now you can configure your iptables filters, etc. To save your itables
filters and NAT tables use service iptables save.

Now, if this is your first run at iptables, start at http://www.netfilter.org/
Pretty good documentation once you've read through it a couple of times.

Cheers,
-- 
Javier Gostling
Ingeniero de Sistemas
Virtualia S.A.
[EMAIL PROTECTED]
Fono: +56 (2) 202-6264 x 130
Fax: +56 (2) 342-8763

Av. Kennedy 5757, of 1502
Las Condes
Santiago
Chile



msg86976/pgp0.pgp
Description: PGP signature


Re: IPTables setup

2002-08-29 Thread Francisco Neira

Brian Lucas wrote:
 This is probably one that's been asked before.  Can someone point me to 
 a link to setup up IPTABLES when IPCHAINS is already installed.  I get 
 the insmod error when doing an iptables -L and a cursory look shows 
 that I can't have both running.

Hi Brian,
Try first removing the ipchains module from the kernel: rmmod ipchains
HTH


-- 
Francisco Neira B.
Administrador de Red
Defensoria del Pueblo
Lima, Peru, -05:00 UTC




-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



RE: print to pdf?

2002-08-29 Thread Chris Mason

At this point, I have the remote windows machine printing to the pdf
share, and I see the file spool in /var/spool/samba
After printing ends, the spool file disappears, and I cannot find out
what happens. /usr/bin/printpdf is never called.

Any ideas
Here's the relevant sections of smb.conf:
global]
;basic server settings
workgroup = altamer
printing = cups
netbios name = loki
server string = Samba PDC running %v
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_SNDBUF=8192
SO_RCVBUF=8192
;PDC and master browser settings
os level = 64
preferred master = yes
local master = yes
domain master = yes
;security and logging settings
security = user
encrypt passwords = yes
domain logons = yes
log file = /var/log/samba/log.%m
log level = 2
max log size = 50
;hosts allow = 127.0.0.1 192.168.100.0/255.255.255.0
192.168.0.0/255.255.255.0 217.41.0.0/255.255.0.0
;user profiles and home directory
logon home = \\%L\%U\.profile
logon drive = H:
logon path = \\%L\profiles\%U
logon script = netlogon.bat
add user script = /usr/sbin/useradd -d /dev/null -g machines -s
/bin/false -M %u
;sync UNIX passwords
obey pam restrictions = Yes
pam password change = Yes
unix password sync = yes
passwd program = /usr/bin/passwd %u
passwd chat = *New*password* %n\n *Retype*new*password* %n\n
*passwd:*all*authentication*tokens*updated*successfully*
   ;guest account = nobody 
 
  
 
#===Shares===
[printers]
comment = All Printers
path = /var/spool/samba
printable = yes
browseable = yes
available = yes
public = yes

# Set up our PDF-creation print service
[pdf]
comment = PDF conversion 
path = /var/spool/samba
read only = no
guest ok = Yes
printable = yes
browseable = yes
public = yes
print command = /usr/bin/printpdf %s
#
# There is no need to support listing or removing print jobs,
# since the server begins to process them as soon as they arrive.
# So, we set the lpq (list queued jobs) and lprm (remove jobs in queue)
# commands to be empty.
   lpq command =
   lprm command =






-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
On Behalf Of Chris Mason
Sent: Thursday, August 29, 2002 5:12 PM
To: [EMAIL PROTECTED]
Subject: RE: print to pdf?

I've tried this, and the printpdf script works great, but I can't get
the printer to work. I am using  printing = cups as the print system, is
that likely to be the problem? If so, any solution?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
On Behalf Of Brian Ashe
Sent: Thursday, August 29, 2002 3:33 PM
To: Chris Mason
Subject: Re: print to pdf?

Hello Chris,

Thursday, August 29, 2002, 3:04:18 PM, you textually orated:

CM I'd like to have a windows computer print postscript to a Redhat
server,
CM and have the server turn the postscript into a pdf and save it in a
CM samba share. Can that be done?

Yes.

http://www.linuxgazette.com/issue72/bright.html

Have fun,
-- 
_
 Brian Ashe CTO
 [EMAIL PROTECTED]  Dee-Web Software Services, LLC.
 http://www.dee-web.com/
-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



Re: Newbie: Kernel upgrade

2002-08-29 Thread Michael Fratoni

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 29 August 2002 11:53 am, Brian Lucas wrote:
 Thanks, Michael.  I performed those steps and see that my kernel lists
 as Kernel-2.4.7-10 (i386)
 Kernel-headers-2.4.7-10 (i386)

 So it appears that up2date wants to give me the athlon architecture
 instead of the i386.  I'm a bit confused since that is an Athlon
 processeor in the box.

If the athlon kernel is correct for your machine, you should be able to 
install it manually with the --ignorearch switch. Download the 
appropriate rpm, and INSTALL (not upgrade) it.

rpm -ivh --ignorearch kernel-*.athlon.rpm

- -- 
- -Michael

pgp key:  http://www.tuxfan.homeip.net:8080/gpgkey.txt
Red Hat Linux 7.{2,3} in 8M of RAM: http://www.rule-project.org/
- --
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAj1un/oACgkQn/07WoAb/SsqOgCdEgVk52wnp3SgGCCyHRd4Q7jN
DlMAoJ+tMFZLL+nV4M/w6f4hGvhsQtts
=QhYn
-END PGP SIGNATURE-



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list



  1   2   >