Re: [expert] Can't run perl scripts as non-root in 9.1

2003-07-28 Thread ryan
No luck.  Since the Perl thing is just the latest problem on this system,
I think I'll start over.  Maybe avoid any security settings in the install
and just lock everything down my own way afterward.  Thanks for the help.

Ryan

> dang, there goes the easy solution. Next step is to rpm -e --force perl
> and urpmi perl.
>
> On Mon, 2003-07-28 at 15:38, [EMAIL PROTECTED] wrote:
>> Sorry :)  /etc/sysconfig/msec says:
>>
>> UMASK_ROOT=022
>> SECURE_LEVEL=4
>> HISTFILESIZE=10
>> UMASK_USER=022
>> TMOUT=0
>>
>> I tried running msec but no matter which level I set it to, it still
>> doesn't seem to affect the perl behavior.  Whatever level I set does
>> show
>> in /etc/sysconfig/msec.
>>
>> Ryan
>>
>> > On Mon, 2003-07-28 at 13:30, Ryan Hanlon wrote:
>> >> Here's the /etc/security/msec directory:
>> >>
>> >> -rwxr-xr-x1 root root Jul 10 11:47 security.conf*
>> >> lrwxrwxrwx1 root root   27 Jul 10 11:05 server ->
>> >> /etc/security/msec/server.4
>> >> -rw-r--r--1 root root  193 Mar  7 06:41 server.4
>> >> -rw-r--r--1 root root  104 Mar  7 06:41 server.5
>> >>
>> >
>> > that's very nice, now cat /etc/sysconfig/msec like I said :-) That's
>> > where you'll see the level that's being set.
>> >
>> >> And env says SECURE_LEVEL=4.  From that directory though, I can't see
>> >> the
>> >> correct way to set it lower than 4.  I don't think you can just
>> change
>> >> the
>> >> variable (I can 'export SECURE_LEVEL=1', but it doesn't change the
>> perl
>> >> behavior).
>> >>
>> >> Ryan
>> >>
>> >
>> > man msec -- you can msec [level] to change it.
>> >
>> >>
>> >> On 28 Jul 2003, Jack Coates wrote:
>> >>
>> >> > Funky. What's the msec SECURE_LEVEL? cat /etc/sysconfig/msec. If
>> it's
>> >> 4
>> >> > or 5, that's a damn good place to start looking.
>> >> >
>> >> > On Mon, 2003-07-28 at 12:14, Ryan Hanlon wrote:
>> >> > > I installed 9.1 a few weeks ago, and just recently discovered
>> that
>> >> > > non-root users can't run perl scripts.  If I run any script with
>> >> > > #!/usr/bin/perl in the first line, I get something like this:
>> >> > >
>> >> > > -bash: ./test.pl: /usr/bin/perl: bad interpreter: Permission
>> denied
>> >> > >
>> >> > >
>> >> > > The script itself is executable, and permissions are correct on
>> >> Perl.
>> >> > > (/usr/bin/perl is a link to perl5, which is a link to 5.8.0,
>> which
>> >> is 755)
>> >> > >
>> >> > > There are no \r's or other odd characters in the shebang line.
>> >> > >
>> >> > > There are no acl's set on any of /usr/bin/perl* or the parent
>> >> directories.
>> >> > >
>> >> > > Any normal user can execute /usr/bin/perl somescript.pl, but
>> can't
>> >> run
>> >> > > somescript.pl by itself.
>> >> > >
>> >> > >
>> >> > > If this is a problem with the default Mandrake setup then I'm
>> sure
>> >> the
>> >> > > question has been asked before, but I haven't found any
>> suggestions
>> >> on
>> >> > > Google except the usual things above.  Is there anything else
>> that
>> >> can
>> >> > > cause this?  Maybe extra restrictions set in kernel-secure?  I
>> can't
>> >> > > imagine why someone would think that's a security feature.  And
>> for
>> >> the
>> >> > > bonus question, how can I undo whatever it is that prevents users
>> >> from
>> >> > > running perl normally?
>> >> > >
>> >> > > Appreciate any thoughts.
>> >> > >
>> >> > > Ryan
>> >> > >
>> >> > >
>> >> > >
>> >> > > __
>> >> > >
>> >> > > Want to buy your Pack or Services from MandrakeSoft?
>> >> > > Go to http://www.mandrakestore.com
>> >> >
>> >>
>> >>
>> >>
>> >> __
>> >>
>> >> Want to buy your Pack or Services from MandrakeSoft?
>> >> Go to http://www.mandrakestore.com
>> > --
>> > Jack Coates
>> > Monkeynoodle: A Scientific Venture...
>> >
>> >
>> >
>>
>>
>>
>> __
>>
>> Want to buy your Pack or Services from MandrakeSoft?
>> Go to http://www.mandrakestore.com
> --
> Jack Coates
> Monkeynoodle: A Scientific Venture...
>
>
>


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Can't run perl scripts as non-root in 9.1

2003-07-28 Thread ryan
Sorry :)  /etc/sysconfig/msec says:

UMASK_ROOT=022
SECURE_LEVEL=4
HISTFILESIZE=10
UMASK_USER=022
TMOUT=0

I tried running msec but no matter which level I set it to, it still
doesn't seem to affect the perl behavior.  Whatever level I set does show
in /etc/sysconfig/msec.

Ryan

> On Mon, 2003-07-28 at 13:30, Ryan Hanlon wrote:
>> Here's the /etc/security/msec directory:
>>
>> -rwxr-xr-x1 root root Jul 10 11:47 security.conf*
>> lrwxrwxrwx1 root root   27 Jul 10 11:05 server ->
>> /etc/security/msec/server.4
>> -rw-r--r--1 root root  193 Mar  7 06:41 server.4
>> -rw-r--r--1 root root  104 Mar  7 06:41 server.5
>>
>
> that's very nice, now cat /etc/sysconfig/msec like I said :-) That's
> where you'll see the level that's being set.
>
>> And env says SECURE_LEVEL=4.  From that directory though, I can't see
>> the
>> correct way to set it lower than 4.  I don't think you can just change
>> the
>> variable (I can 'export SECURE_LEVEL=1', but it doesn't change the perl
>> behavior).
>>
>> Ryan
>>
>
> man msec -- you can msec [level] to change it.
>
>>
>> On 28 Jul 2003, Jack Coates wrote:
>>
>> > Funky. What's the msec SECURE_LEVEL? cat /etc/sysconfig/msec. If it's
>> 4
>> > or 5, that's a damn good place to start looking.
>> >
>> > On Mon, 2003-07-28 at 12:14, Ryan Hanlon wrote:
>> > > I installed 9.1 a few weeks ago, and just recently discovered that
>> > > non-root users can't run perl scripts.  If I run any script with
>> > > #!/usr/bin/perl in the first line, I get something like this:
>> > >
>> > > -bash: ./test.pl: /usr/bin/perl: bad interpreter: Permission denied
>> > >
>> > >
>> > > The script itself is executable, and permissions are correct on
>> Perl.
>> > > (/usr/bin/perl is a link to perl5, which is a link to 5.8.0, which
>> is 755)
>> > >
>> > > There are no \r's or other odd characters in the shebang line.
>> > >
>> > > There are no acl's set on any of /usr/bin/perl* or the parent
>> directories.
>> > >
>> > > Any normal user can execute /usr/bin/perl somescript.pl, but can't
>> run
>> > > somescript.pl by itself.
>> > >
>> > >
>> > > If this is a problem with the default Mandrake setup then I'm sure
>> the
>> > > question has been asked before, but I haven't found any suggestions
>> on
>> > > Google except the usual things above.  Is there anything else that
>> can
>> > > cause this?  Maybe extra restrictions set in kernel-secure?  I can't
>> > > imagine why someone would think that's a security feature.  And for
>> the
>> > > bonus question, how can I undo whatever it is that prevents users
>> from
>> > > running perl normally?
>> > >
>> > > Appreciate any thoughts.
>> > >
>> > > Ryan
>> > >
>> > >
>> > >
>> > > __
>> > >
>> > > Want to buy your Pack or Services from MandrakeSoft?
>> > > Go to http://www.mandrakestore.com
>> >
>>
>>
>>
>> __
>>
>> Want to buy your Pack or Services from MandrakeSoft?
>> Go to http://www.mandrakestore.com
> --
> Jack Coates
> Monkeynoodle: A Scientific Venture...
>
>
>


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Can't run perl scripts as non-root in 9.1

2003-07-28 Thread Ryan Hanlon
Here's the /etc/security/msec directory:

-rwxr-xr-x1 root root0 Jul 10 11:47 security.conf*
lrwxrwxrwx1 root root   27 Jul 10 11:05 server -> 
/etc/security/msec/server.4
-rw-r--r--1 root root  193 Mar  7 06:41 server.4
-rw-r--r--1 root root  104 Mar  7 06:41 server.5

And env says SECURE_LEVEL=4.  From that directory though, I can't see the 
correct way to set it lower than 4.  I don't think you can just change the 
variable (I can 'export SECURE_LEVEL=1', but it doesn't change the perl 
behavior).

Ryan


On 28 Jul 2003, Jack Coates wrote:

> Funky. What's the msec SECURE_LEVEL? cat /etc/sysconfig/msec. If it's 4
> or 5, that's a damn good place to start looking.
> 
> On Mon, 2003-07-28 at 12:14, Ryan Hanlon wrote:
> > I installed 9.1 a few weeks ago, and just recently discovered that 
> > non-root users can't run perl scripts.  If I run any script with 
> > #!/usr/bin/perl in the first line, I get something like this:
> > 
> > -bash: ./test.pl: /usr/bin/perl: bad interpreter: Permission denied
> > 
> > 
> > The script itself is executable, and permissions are correct on Perl.
> > (/usr/bin/perl is a link to perl5, which is a link to 5.8.0, which is 755)
> > 
> > There are no \r's or other odd characters in the shebang line.
> > 
> > There are no acl's set on any of /usr/bin/perl* or the parent directories.
> > 
> > Any normal user can execute /usr/bin/perl somescript.pl, but can't run 
> > somescript.pl by itself.
> > 
> > 
> > If this is a problem with the default Mandrake setup then I'm sure the 
> > question has been asked before, but I haven't found any suggestions on 
> > Google except the usual things above.  Is there anything else that can 
> > cause this?  Maybe extra restrictions set in kernel-secure?  I can't 
> > imagine why someone would think that's a security feature.  And for the 
> > bonus question, how can I undo whatever it is that prevents users from 
> > running perl normally?
> > 
> > Appreciate any thoughts.
> > 
> > Ryan
> > 
> > 
> > 
> > __
> > 
> > Want to buy your Pack or Services from MandrakeSoft? 
> > Go to http://www.mandrakestore.com
> 


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[expert] Can't run perl scripts as non-root in 9.1

2003-07-28 Thread Ryan Hanlon
I installed 9.1 a few weeks ago, and just recently discovered that 
non-root users can't run perl scripts.  If I run any script with 
#!/usr/bin/perl in the first line, I get something like this:

-bash: ./test.pl: /usr/bin/perl: bad interpreter: Permission denied


The script itself is executable, and permissions are correct on Perl.
(/usr/bin/perl is a link to perl5, which is a link to 5.8.0, which is 755)

There are no \r's or other odd characters in the shebang line.

There are no acl's set on any of /usr/bin/perl* or the parent directories.

Any normal user can execute /usr/bin/perl somescript.pl, but can't run 
somescript.pl by itself.


If this is a problem with the default Mandrake setup then I'm sure the 
question has been asked before, but I haven't found any suggestions on 
Google except the usual things above.  Is there anything else that can 
cause this?  Maybe extra restrictions set in kernel-secure?  I can't 
imagine why someone would think that's a security feature.  And for the 
bonus question, how can I undo whatever it is that prevents users from 
running perl normally?

Appreciate any thoughts.

Ryan


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[expert] Block MSN Messenger with Squid

2003-06-11 Thread Ryan L. Hackl



Good day, all...
 
Has anyone been able to find a decent way to block 
msn messenger with Squid?  
 
- Ryan


[expert] Sendmail relaying

2002-07-22 Thread Ryan

If sendmail is denying the relaying on my end, which log file should that 
deny be in?

I've (seemingly) configured pop-before-smtp to authorize relaying after 
someone logs in with their pop account but I still get denied type 
messages on the client end.  I am trying to figure out if my work is 
blocking the smtp or if my home machine is.

Thanks

-Ryan




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] Sendmail and relaying

2002-07-18 Thread Ryan

Todd Lyons wrote:

>Ryan wrote on Thu, Jul 18, 2002 at 02:29:15PM -0400 :
>  
>
>>xinetd based services:
>>pop3:   on
>>
>>
>
>Good.
>
>  
>
>>Clues?
>>
>>
>
>service xinetd restart
>
>If still not listed in netstat -ltn as listening on 0.0.0.0:110, then I
>suggest that you take a look in /var/log/messages to see what xinetd is
>logging as it starts up.
>
>Blue skies...  Todd
>  
>
I am proudly writing this from my Windows machine, having for the first 
time in a year managed to get the pop3d working!

Thank you very much Todd!  I knew there MUST be error messages, but I 
had no idea where they would be!  I need the NHF:So you need to read 
your logs.  

Jul 18 15:37:01 www xinetd[1188]: missing service keyword [line=13]
Jul 18 15:37:01 www xinetd[1188]: missing } in last service entry [line=14]
Jul 18 15:37:01 www xinetd[1188]: xinetd Version 2.3.0 started with 
libwrap options comp
iled in.
Jul 18 15:37:01 www xinetd[1188]: Started working: 0 available services

Fixed the problem on line 13 and tadaa!  Thank you again all who helped.

Ryan Steffes




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[expert] Question about list itself

2002-07-18 Thread Ryan

Is there a restriction to what can be sent to the list?  If I try to write 
an indepth response containing the results of commands for example, often 
it never shows up (that I can see at least).  Am I don't something wrong? 
Are there characters the list won't allow or something like that?




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] Sendmail and relaying

2002-07-17 Thread Ryan

On 17 Jul 2002, Seth Zirin wrote:

> The POP3 service comes disabled as a default. Did you delete or comment
> out the "disable = yes" line in /etc/xinetd.d/ipop3 to enable the pop3
> service?
> 
> You need to restart the xinetd service with "/etc/init.d/xinetd restart"
> or send the send the xinetd process a SIGUSR2 signal for the change to
> take effect. A reboot works too.
> 
> Seth
> 
> 

I have a huge long write up of what I've tried that doesn't work, but the 
list apparently won't let me send it all at once.

xinetd and firewall SEEM to be configured correctly, but I still get 
connection refused when I try and test the port.

In the xinetd.d in ipop3d

service pop3
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/sbin/ipop3d
log_on_success += USERID
log_on_failure += USERID
}



In rc.firewall

iptables -P INPUT ACCEPT
iptables -F INPUT
iptables -P OUTPUT ACCEPT
iptables -F OUTPUT
iptables -P FORWARD ACCEPT
iptables -F FORWARD

iptables -A FORWARD -i eth0 -o eth1 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3128
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 81 -j REDIRECT --to-port 3128
iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 5900 -j DNAT --to-destination 
192.168.0.1
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 5800 -j DNAT --to-destination 
192.168.0.1




Webserver works fine, ssh works fine, squid works fine; all from both 
inside LAN and outside.  I tried to solve this before I could never get it 
to work.

Ryan




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[expert] Sendmail and relaying

2002-07-17 Thread Ryan

I have sendmail working on my machine.  What I'd like to do is be able to 
send email from work on my home account.  Comcast won't let me, because it 
won't relay from my work machine.  My thought was that I could have 
sendmail relay the email, so from Comcast's POV it looks like the email is 
coming from inside.

I can't get pop3d to work on my machine, but I thought setting the 
Sendmail rules could work.

In my etc/mail/access it says:

{IP of work machine}RELAY
myname@  OK



This doesn't work however.  Clues?  Otherways of doing this?  Suggestion 
on why pop3d just doesn't seem to work for me?




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[expert] ipop3d Connection Refused

2002-07-02 Thread Ryan

Every once in a while there comes the time for me to vainly try and get 
this working again in the hopes that there will be fresh blood that will 
think of the test no one thought of before.  So here goes.

The problem is this: I am trying to run a pop3 daemon so I can send and 
receive my email on my home system as well as provide email addresses to 
users of my website without them needing to learn linux and pine.

I have imap-2001a-4mdk installed.

I am running:Linux www.eq-viatores.org 2.4.8-12mdk #1 Fri Aug 24 16:18:19 
CEST 2001 i686

eth0 is internal network
eth1 is external network

--
xinetd.conf:
defaults
{
instances   = 60
log_type= SYSLOG authpriv
log_on_success  = HOST PID
log_on_failure  = HOST RECORD
}
swat stream tcp nowait.400 root /usr/sbin/swat swat
includedir /etc/xinetd.d

--
ls /etc/xinetd.d
chargen*  daytime*  echo-udp*  ipop2*  pop3*
rsync*  time-udp*
chargen-udp*  daytime-udp*  imap*  ipop3*  pop3s*   
swat*
cvs*  echo* imaps* linuxconf-web*  proftpd-xinetd*  
time*

-

ipop3:

service pop3
{
socket_type = stream
wait= no
user= root
server  = /usr/sbin/ipop3d
log_on_success  += USERID
log_on_failure  += USERID
}

--

rc.firewall:
#!/bin/bash
echo "Enabling Forwarding"
echo ""
echo 1>/proc/sys/net/ipv4/ip_forward

iptables -P INPUT ACCEPT
iptables -F INPUT
iptables -P OUTPUT ACCEPT
iptables -F OUTPUT
iptables -P FORWARD ACCEPT
iptables -F FORWARD

iptables -A FORWARD -i eth0 -o eth1 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3128
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 81 -j REDIRECT --to-port 3128
iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 5900 -j DNAT --to-destination 
192.168.0.1
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 5800 -j DNAT --to-destination 
192.168.0.1
-

hosts.allow
swat: 127.0.0.1 192.168.0
pop3: ALL

--

hosts.deny (empty)
---

/etc/services

snip
pop3110/tcpPost Office Protocol - Version 3
pop3110/udpPost Office Protocol - Version 3
snip


---

telnet localhost 110

Trying 68.44.71.113...
telnet: connect to address 68.44.71.113: Connection refused
telnet: Unable to connect to remote host: Connection refused








--


Any takers?




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[expert] Mandrake 8.2 and Mode_switch or Alt_GR

2002-03-26 Thread Ryan Boder


Has anyone successfully used staroffice 6.0 and been able to insert
special characters on Mandrale 8.2? 

I used to do this in Mandrake 8.1/Open Office by using xmodmap to make
my right alt key be the Alt_GR key. It worked fine. Here are the
differences I've noticed about trying it with Mandrake 8.2

1. I can't do that in either OpenOffice 641c or staroffice 6.0

2. I can't set a key to be Alt_GR, but apparently (according to the help
pages in staroffice 6.0) I should set it to Mode_switch.

Has anyone else encountered this problem? Fixed it?

The steps I have tried, as outlined in the staroffice help pages are...

export SAL_ALTGR_COMPOSE=true
xmodmap -e "keysym Alt_R = Mode_switch"

and after checking the output of xmodmap -pk, the correct mapping has
been set. But for some reason, pressing the right alt key and then the 2
key sequence for the unicode characters does not work like in did with
Mandrake 8.1.

Please respond directly to me as I am not subscribed.

Sincerely,
Ryan






Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] Troubles with pop daemon

2002-03-22 Thread Ryan B Steffes



My current xinitd.conf contains:


defaults
{
    instances   = 60
    log_type    = SYSLOG authpriv
    log_on_success  = HOST PID
    log_on_failure  = HOST
}
swat stream tcp nowait.400 root /usr/sbin/swat swat
includedir /etc/xinetd.d

I thought that last line there would run the script, am I wrong?


David Stevenson wrote:
[EMAIL PROTECTED]">
  Put the contents of that script into xinetd.conf, that should be allrequired. The ip/range should also be allowed to connect in the /etc/hosts.*files.HTHDave-Original Message-From: [EMAIL PROTECTED][mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED]Sent: 22 March 2002 07:18To: [EMAIL PROTECTED]Subject: [expert] Troubles with pop daemonNo matter what I do I can't seem to get the pop daemon to work. I'm tryingto use ipop3d from the imap package and it seems to work ok, but it doesn'tstart on boot.Every help guide says to put
 some lines into inetd.conf which isconspicuously absent. In xinetd.d I've got an ipop3 script with:service pop3{disable = nosocket_type = streamwait = nouser = rootserver = /usr/sbin/ipop3dlog_on_success += USERIDlog_on_failure += USERID}In it.Just typing ipop3d as root lets me type in typical mailbox type commands(user pass list last ...). Telnet to 110 gives connection denied.rc.firewall#!/bin/bashecho "Enabling Forwarding"echo ""echo 1>/proc/sys/net/ipv4/ip_forwardiptables -P INPUT ACCEPTiptables -F INPUTiptables -P OUTPUT ACCEPTiptables -F OUTPUTiptables -P FORWARD ACCEPTiptables -F FORWARDiptables -A FORWARD -i eth0 -o eth1 -m state --state ESTABLISHED,RELATED -jACCEPTiptables -A FORWARD -i eth1 -o eth0 -j ACCEPTiptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -jREDIRECT --to-port 3128iptables -t nat -A PREROUT
ING -i eth0 -p tcp --dport 81 -jREDIRECT --to-port 3128iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADEiptables -t nat -A PREROUTING -i eth1 -p tcp --dport 5900 -jDNAT --to-destination 192.168.0.1iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 5800 -jDNAT --to-destination 192.168.0.1
  Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
  
  
  
  


Re: [expert] ext3, reiserfs, and MDK 7.x?

2000-11-22 Thread Ryan La Mothe

I also run a 100% pure ReiserFS system on one large 25gig partition with LM
7.2 for over 3 months now and haven't had even 1 single little
problem...EVER.  This is a truly awesome FS, although I have been wondering
why some of my apps appear to freeze up sometimes for a couple of seconds
and then return to normal and the disk seems to suddenly go insane with
activity during the oddest times.  I read that the only two real drawbacks
are exactly what I am experiencing with ReiserFS, and they will be addressed
shortly but are absolutely nothing to worry about.  I would explain further,
but the ReiserFS homepage, which I do not have handy, explains everything
beautifully.  Good Luck and Have Fun.  I Love ReiserFS.  It is really cool.
I fell in love with journaled FS's after experiencing BeOS.  It still has
one of the best journaled FS's I have ever seen.

Ryan


- Original Message -
From: Tom Eastman <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, November 22, 2000 6:13 AM
Subject: Re: [expert] ext3, reiserfs, and MDK 7.x?


>
> This is interesting... I've been playing with Mandrake 7.2 for about 2
weeks
> now, and I'm running pure ReiserFS just coz it sounded like a fun thing to
> do... In fact, ext2 has been downgraded to a module in my kernel!  hehehe.
>
> ReiserFS is to be used with caution to be sure... but not only have i not
had
> ANY problems so far (and I've already had to turn my system off a couple
> times without shutting down), but I haven't yeat even HEARD of anyone
having
> any problems!
>
> Can someone tell me some horror stories about ReiserFS destroying their
> system?  I've heard/experienced NOTHING but good things about it so far.
I
> want to hear the other side!!
>
> 8-)
>
> On Wednesday 22 November 2000 21:35, you wrote:
> > > Well I am running Reiser commercial for more then a year now.
> >
> > And I have tested it in crisis situations.
> >
> > :-) I love pusing the powerbutton on a full running system with gigs of
> >
> > databases.
> >
> > And so far less problems then with ext2 where I got breakdowns in my
file
> > structures.
> >
> > Mike
>
>






> Keep in touch with http://mandrakeforum.com:
> Subscribe the "[EMAIL PROTECTED]" mailing list.
>




Keep in touch with http://mandrakeforum.com: 
Subscribe the "[EMAIL PROTECTED]" mailing list.



Re: [expert] Glibc_2.2

2000-11-22 Thread Ryan La Mothe

Dear Tom Berkley,

So, what you are saying is that because I asked a question that has been
plaguing more than just myself, and it isn't any less intelligent than
hundreds of the other posts I see on this newsgroup, you have to act like a
total as*hole to me?  What's the deal.  The answer I was looking for was
very simple.  So was my question.  As a matter of fact I have been using
Linux since ~1994 and RedHat's Mother's Day release was out.  This my first
time with LM and I have noticed that LM doesn't do everything the same as
everybody else and I was just asking for a simple .  Please do not
ever act this way again.  It is exactly people like you who will make sure
Linux stays just as it is now, an OS with a lot of as*hole zealots and a
bunch of people who whole-heartily gave Linux an honest try...to only get
answers like the one you gave.  Sure, there is a Newbie List, but what the
hell would a newbie be asking a question about Glibc_2.2 compatibility and
upgrading for anyways?  I just asked some simple, straightforward questions
and just wanted some nice, light hearted, direct to the point answers.
Thank You

Ryan La Mothe


> What the h are you talking about? If you're a newbie and it it
> sounds like you are, then you want to go hang out with the newbie list
> for a while, spend some time reading the howto's http://www.linuxdoc.org
> and then come here when you are informed enough to ask an intelligent
> question of intelligent people.
>
> Tom Berkley
>
> Ryan La Mothe wrote:
> >
> > I have a question...What is the deal with EVERY SINGLE RPM needing
> > Glibc_2.2?  What is exactly is the reason and how do I acquire Glibc_2.2
> > without seriously messing everything up on Linux?  This is
ridiculous...I
> > can't even download 1 single RPM anymore, ANYWHERE without it being
> > dependant on Glibc_2.2.  Why hasn't Mandrake's website or something at
least
> > made any mention of this fact/problem before I started wasting my
valuable
> > time the past couple of weeks looking for tar.gz or src.rpm files so
that I
> > could try and compile against LM 7.2 Glibc libraries instead of getting
what
> > I truly need and needing Glibc_2.2?  What I want is a definite answer if
> > someone has it.  I am NOT going to compile source for anything at the
> > moment, as I need to keep the system in either an all RPM or all tarball
> > format, but this particular machine, I don't have the time to waste
> > compiling and screwing with the whole tarball mess.  Thanks.
> >
>
  
> > Keep in touch with http://mandrakeforum.com:
> > Subscribe the "[EMAIL PROTECTED]" mailing list.
>
>






> Keep in touch with http://mandrakeforum.com:
> Subscribe the "[EMAIL PROTECTED]" mailing list.
>




Keep in touch with http://mandrakeforum.com: 
Subscribe the "[EMAIL PROTECTED]" mailing list.



[expert] Glibc_2.2

2000-11-21 Thread Ryan La Mothe

I have a question...What is the deal with EVERY SINGLE RPM needing
Glibc_2.2?  What is exactly is the reason and how do I acquire Glibc_2.2
without seriously messing everything up on Linux?  This is ridiculous...I
can't even download 1 single RPM anymore, ANYWHERE without it being
dependant on Glibc_2.2.  Why hasn't Mandrake's website or something at least
made any mention of this fact/problem before I started wasting my valuable
time the past couple of weeks looking for tar.gz or src.rpm files so that I
could try and compile against LM 7.2 Glibc libraries instead of getting what
I truly need and needing Glibc_2.2?  What I want is a definite answer if
someone has it.  I am NOT going to compile source for anything at the
moment, as I need to keep the system in either an all RPM or all tarball
format, but this particular machine, I don't have the time to waste
compiling and screwing with the whole tarball mess.  Thanks.




Keep in touch with http://mandrakeforum.com: 
Subscribe the "[EMAIL PROTECTED]" mailing list.



Re: [expert] jdk1.2.2

2000-06-19 Thread ryan
i actually had similiar problems and i think it says on their website that it (technically) only works with redhat, caldera, and slackware.  i bought redhat and got it running fine...

From: Volker Schlecht <[EMAIL PROTECTED]>
Date: 2000-06-17 14:31:11 -0500
To: [EMAIL PROTECTED]
Subject: [expert] jdk1.2.2
In-Reply-To: <[EMAIL PROTECTED]>
X-Loop: [EMAIL PROTECTED]
X-Mailer: KMail [version 1.0.29.2]
X-Sequence: 566

Hello,

has anyone managed to install Sun's JDK1.2.2 (production release)
on Mandrake 7.0 yet ? If yes, please be so kind to contact me - I
am very close to going insane over their so called "installation instructions",

thank you in advance!

cya,
Volker



Re: [expert] Forwarding mail to /dev/null?

2000-06-09 Thread Ryan A

On Fri, 9 Jun 2000, John Aldrich wrote:

> IS there a way to get Sendmail to forward mail for certain
> email addresses to /dev/null?

I believe procmail would fit the bill perfectly.

-ryan



 I tried telling Sendmail to
> pipe mail for [EMAIL PROTECTED] to /dev/null in both virtual user
> table and in /etc/aliases, but when I tried to send myself
> a test message, Sendmail refused.
> I'd *like* to have Sendmail accept mail, but promptly dump
> it to /dev/null (or the equivalent.)
> Could I make a user "null" with a mailbox symlinked to
> /dev/null, perhaps?
>   Thanks...
>   John
> 




[expert] ftp

2000-06-09 Thread ryan geer

i would like to set my machine up as an ftp server.  any suggestions 
on which package to use or where to find guidance?




[expert] Linux-Mandrake 7.0 for UltraSPARC/dual monitor

2000-05-25 Thread corey Ryan

I am running Linux-Mandrake 7.0 for UltraSPARC on my SPARCstation 20 and I am 
attempting to use a dual monitor, each monitor has its own graphics card (SGX 8 bit 
card).  I know in the earlier versions of Linux, dual monitor capability was not 
available, but that was around 1996.  Well, time has passed, and I would like to know 
if this feature is available for Linux-Mandrake, and if so, can I implement this 
feature on my SPARCstation 20. Any suggestions would be greatly appreciated.  Thanks.

-vger 

PS- If anyone is remotely wondering why two monitors, well, I use to use Solaris and 
dual monitor feature was available. Therefore I would like to use the other monitor 
instead of it just sitting there collecting dust :)

  


Join 18 million Eudora users by signing up for a free Eudora Web-Mail account at 
http://www.eudoramail.com




Re: [expert] kmail-1.0.29.1 configure can not find pgcc-c++

2000-05-25 Thread corey Ryan

I had the same problem at one time. What I am about to suggest, you might know 
alreadybut I will say it anyway:

1. Make sure pgcc-c++ is installed on your   system.
2. If pgcc-c++ is installed on your system, make sure the location of the program is 
in your path. Hopefully, this will work for U

-Omar 

--

On Thu, 25 May 2000 17:04:15   Lars Nordin wrote:
>I'm trying to update kmail on my Mandrake v6.1 box by compiling v1.0.29.1 but I
>run into a problem with the configure script that comes with kmail.
>I have pgcc-c++ (and pgcc) installed but it does not find it nor does it seem
>to look for it.
>
>This is the error I get:
>
>[lars@frid kmail-1.0.29.1]$ ./configure
>loading cache ./config.cache
>checking host system type... i586-pc-linux-gnu
>checking target system type... i586-pc-linux-gnu
>checking build system type... i586-pc-linux-gnu
>checking ktalkd find_user method... using /proc.
>checking for a BSD compatible install... /usr/bin/install -c
>checking whether build environment is sane... yes
>checking whether make sets ${MAKE}... yes
>checking for working aclocal... found
>checking for working autoconf... found
>checking for working automake... found
>checking for working autoheader... found
>checking for working makeinfo... missing
>./configure: programs: command not found
>checking for a C-Compiler...
>checking for gcc... gcc
>checking whether the C compiler (gcc  ) works... yes
>checking whether the C compiler (gcc  ) is a cross-compiler... no
>checking whether we are using GNU C... yes
>checking how to run the C preprocessor... gcc -E
>checking for a C++-Compiler...
>checking for g++... g++
>checking whether the C++ compiler (g++  -s) works... no
>configure: error: installation or configuration problem: C++ compiler cannot create 
>executables. 
>===
>
>How can I modify the configure script to detect pgcc-c++?
>
>Otherwise, how can I fix this?
>- other than upgrading to Mdk v7.0 or v7.1 (I'm the only one
>in my company to run Linux for a desktop so I am my own PC support and
>currently I don't have the time to do an upgrade. I have to admit that I did
>gloat a little during the ILOVEYOU virus thing since Linux/kmail is in no way
>vunerable)
>
>
>
>-- 
>Lars Nordin
>Noble Systems Corporation
>
>


Join 18 million Eudora users by signing up for a free Eudora Web-Mail account at 
http://www.eudoramail.com




Re: [expert] Unreal Tournament...?

2000-03-09 Thread Ryan Robinson

Aha... ok.  Thanks for pointing me in the right direction.  I remember
hearing something about an open source Unreal Tournament project, but I
could never find the site.  I have a Voodoo 3, so, hopefully I will have
a chance at getting something to work :P  
-Ryan

Richard Yevchak wrote:
> 
> I've gotten Unreal Tournament to run.  If you don't have a Voodoo card (I have
> a TNT2 card), you have a little work ahead of you.  Basically you have to
> download the latest patch and CVS code for UT and SDL (SDL needs Mesa to
> build).  Compile and install. Go to http://OpenUT.sourceforge.net/ for more
> help.  You might also want to check Unreal Tournament.log in the System
> directory for errors.  If all that is not enough, performance isn't that
> great for non-Voodoo cards.  I get about 20 frames per second.  If you do have a
> Voodoo card, try looking at some of the posts on the forum at the OpenUT
> web site.
> 
> Richard
> 
> On Thu, 09 Mar 2000, you wrote:
> > Hi, I've been trying to run Unreal Tournament under Mandrake 7.0, with
> > no luck.  By now, I'm almost convinced that there is something
> > nonstandard about the distribution that won't allow it to run.  The
> > client binary shows the splash screen and exits with *no error message*
> > while the dedicated server exits with a segfault halfway through
> > loading.  Has anyone else out there gotten it to run ok in 7.0?



[expert] Unreal Tournament...?

2000-03-09 Thread Ryan Robinson

Hi, I've been trying to run Unreal Tournament under Mandrake 7.0, with
no luck.  By now, I'm almost convinced that there is something
nonstandard about the distribution that won't allow it to run.  The
client binary shows the splash screen and exits with *no error message*
while the dedicated server exits with a segfault halfway through
loading.  Has anyone else out there gotten it to run ok in 7.0?

Ryan