Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

suselinuxusers · SUSE Linux Users - new and improved!

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1310
  • Category: Linux
  • Founded: Dec 13, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 2299 - 2328 of 7756   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#2299 From: "apdsf" <apdsf@...>
Date: Thu Apr 1, 2004 4:20 pm
Subject: Single procmail filter file
apdsf
Send Email Send Email
 
Hello

I'm a new user of Suse 9.
Can someone tell me how to use just one .procmail file for all linux accounts.
I already have one file for each user.
Thanks.

Paulo Ferreira

#2300 From: Aaron Kulkis <akulkis@...>
Date: Thu Apr 1, 2004 6:05 pm
Subject: Re: [SUSE Linux Users] Single procmail filter file
magicnosegob
Send Email Send Email
 
apdsf wrote:
> Hello
>
> I'm a new user of Suse 9.
> Can someone tell me how to use just one .procmail file for all linux accounts.
> I already have one file for each user.
> Thanks.


copy your .procmail account to /etc/_procmail

use the su command to become root, and then (using your favorite editor)

$ su
password

make the following script:

    #!/bin/bash
    # make links in user's home directories for a univeral .procmail file
    #
    #  # turn on run-time tracing
    set -x

    SRC=/etc/_procmail

    # get user for normal users (exclude system accounts like root, bin, lp, mail
...)
    U_LIST=`awk -F: ' $3 >= 500 { print $1 } ' < /etc/passwd`

    for UNAME in $U_LIST
    do
		 #
      HDIR=`echo ~$UNAME`
      cd $HDIR
      if [ ! -f .procmail ]
      then
         TGT=.$PROCMAIL
         ln -s /etc/${PROCMAIL} $TGT
         chown $USER $TGT
      fi
    done


let's call it link_pm
then, to make it executable:
      # chmod 755 link_pm

and, run the script with

      # ./link_m

#2301 From: "apdsf" <apdsf@...>
Date: Fri Apr 2, 2004 2:11 pm
Subject: Re: Single procmail filter file
apdsf
Send Email Send Email
 
Next is the new file "link_pm" and below is the result of ./link_pm.
Please tell me what's wrong.
Thaks

Paulo Ferreira


#!/bin/bash
# make links in user's home directories for a univeral .procmail file
#
# # turn on run-time tracing
set -x

SRC=/etc/_procmail

# get user for normal users (exclude system accounts like root, bin, lp,
mail...)
U_LIST=`awk -F: ' $3 >= 500 { print $1 } ' < /etc/passwd`

for UNAME in $U_LIST
do
#
HDIR=`echo ~$UNAME`
cd $HDIR
if [ ! -f .procmail ]
then
TGT=.$PROCMAIL
ln -s /etc/${PROCMAIL} $TGT
chown $USER $TGT
fi





linux:/etc # ./link_pm
+ SRC=/etc/_procmail
++ awk -F: ' $3 >= 500 { print $1 } '
+ U_LIST=nobody
paufer
metalo
metalo2
metalo3
metalo4
metalo5
metalo6
metalo7
metalo8
metalo9
metalo10
metalo11
metalo12
humberto
lixo
./link_pm: line 23: syntax error: unexpected end of file

#2302 From: Aaron Kulkis <akulkis@...>
Date: Fri Apr 2, 2004 5:09 pm
Subject: Re: [SUSE Linux Users] Re: Single procmail filter file
magicnosegob
Send Email Send Email
 
apdsf wrote:
> Next is the new file "link_pm" and below is the result of ./link_pm.
> Please tell me what's wrong.
> Thaks
>
> Paulo Ferreira
>
>

Try this: I added a check for the existance of the user's directory


#!/bin/bash
# make links in user's home directories for a univeral .procmail file
#
# # turn on run-time tracing
set -x

SRC=/etc/_procmail

# get user for normal users (exclude system accounts like root, bin, lp,
mail...)
U_LIST=`awk -F: ' $3 >= 500 { print $1 } ' < /etc/passwd`

for UNAME in $U_LIST
do
    HDIR=`echo ~$UNAME`
    if [ -d $HDIR ]
    then
       cd $HDIR
       if [ ! -f .procmail ]
       then
          TGT=.$PROCMAIL
          ln -s /etc/${PROCMAIL} $TGT
          chown $USER $TGT
       fi
    fi
done

#2303 From: "m_knopp" <taechunsa@...>
Date: Tue Apr 6, 2004 4:36 am
Subject: Apache2 w/ php problems
m_knopp
Send Email Send Email
 
Hello,

I am extremely new to linux. In fact this is the first time that I
have tried using it.

Anyway, here is my problem. I installed SUSE 9.0 professional this
morning and had it install apache2, php4, and mysql initially. I
have apache2 working fine with html. I can access the default
webpage, among others. However, when I try and access a php file I
receive the following messages.

Warning: Unknown(/srv/www/htdocs/phpinfo.php): failed to open
stream: Permission denied in Unknown on line 0

Warning: (null)(): Failed opening '/srv/www/htdocs/phpinfo.php' for
inclusion (include_path='.:/usr/share/php') in Unknown on line 0

At first I thought that it might have been a permissions problem,
but the same error occured when I run the server in root. So it
isn't a problem of my server login not having the correct
permissions. My next thought was that php wasn't loading correctly.
However, according to YAST HTTP Server the module is enabled. I then
thought that maybe php didn't install correctly, but running php -i
produced the info html so it is running just fine. All that I can
think of is that somehow eventhough YAST says that php is enabled it
actually isn't. I also was not able to find anywhere that the
AddType was entered in any of the .conf files or in YAST.

Any help would be greatly appreciated.

Thank you.
Mike

#2304 From: "Allen Tate" <atate@...>
Date: Tue Apr 6, 2004 4:29 pm
Subject: Re: [SUSE Linux Users] Apache2 w/ php problems
otplsfriends
Send Email Send Email
 
> Warning: Unknown(/srv/www/htdocs/phpinfo.php): failed to open
> stream: Permission denied in Unknown on line 0
>
> Warning: (null)(): Failed opening '/srv/www/htdocs/phpinfo.php' for
> inclusion (include_path='.:/usr/share/php') in Unknown on line 0

When Apache starts, it starts with root permissions but then changes
to the user apache and uses it's permissions (or something like that.)
Investigate that and see if that helps.

If that down't help, look at you PHP file and make sure that if you're
including a file inside that PHP file that the filenames are all correct.

#2305 From: "Justin Churchey" <sajchurchey@...>
Date: Tue Apr 6, 2004 7:42 pm
Subject: Re: Apache2 w/ php problems
sajchurchey
Send Email Send Email
 
Make sure you do a "chown -R apache:apache" to the DocumentRoot just
to be on the safe side of the permissions thing.

--- In suselinuxusers@yahoogroups.com, "m_knopp" <taechunsa@h...> wrote:
> Hello,
>
> I am extremely new to linux. In fact this is the first time that I
> have tried using it.
>
> Anyway, here is my problem. I installed SUSE 9.0 professional this
> morning and had it install apache2, php4, and mysql initially. I
> have apache2 working fine with html. I can access the default
> webpage, among others. However, when I try and access a php file I
> receive the following messages.
>
> Warning: Unknown(/srv/www/htdocs/phpinfo.php): failed to open
> stream: Permission denied in Unknown on line 0
>
> Warning: (null)(): Failed opening '/srv/www/htdocs/phpinfo.php' for
> inclusion (include_path='.:/usr/share/php') in Unknown on line 0
>
> At first I thought that it might have been a permissions problem,
> but the same error occured when I run the server in root. So it
> isn't a problem of my server login not having the correct
> permissions. My next thought was that php wasn't loading correctly.
> However, according to YAST HTTP Server the module is enabled. I then
> thought that maybe php didn't install correctly, but running php -i
> produced the info html so it is running just fine. All that I can
> think of is that somehow eventhough YAST says that php is enabled it
> actually isn't. I also was not able to find anywhere that the
> AddType was entered in any of the .conf files or in YAST.
>
> Any help would be greatly appreciated.
>
> Thank you.
> Mike

#2306 From: "apdsf" <apdsf@...>
Date: Tue Apr 6, 2004 5:17 pm
Subject: [SUSE Linux Users] Re: Single procmail filter file
apdsf
Send Email Send Email
 
Hello
Thanks for your help. This is the result of the script.
I don't know if the result is what you expected to be but, it still not working.
Please keep helping me.
Thanks.

Paulo Ferreira

linux:/etc # ./link_pm
+ SRC=/etc/_procmail
++ awk -F: ' $3 >= 500 { print $1 } '
+ U_LIST=nobody
paufer
metalo
metalo2
metalo3
metalo4
metalo5
metalo6
metalo7
metalo8
metalo9
metalo10
metalo11
metalo12
humberto
lixo
++ echo '~nobody'
+ HDIR=~nobody
+ '[' -d '~nobody' ']'
++ echo '~paufer'
+ HDIR=~paufer
+ '[' -d '~paufer' ']'
++ echo '~metalo'
+ HDIR=~metalo
+ '[' -d '~metalo' ']'
++ echo '~metalo2'
+ HDIR=~metalo2
+ '[' -d '~metalo2' ']'
++ echo '~metalo3'
+ HDIR=~metalo3
+ '[' -d '~metalo3' ']'
++ echo '~metalo4'
+ HDIR=~metalo4
+ '[' -d '~metalo4' ']'
++ echo '~metalo5'
+ HDIR=~metalo5
+ '[' -d '~metalo5' ']'
++ echo '~metalo6'
+ HDIR=~metalo6
+ '[' -d '~metalo6' ']'
++ echo '~metalo7'
+ HDIR=~metalo7
+ '[' -d '~metalo7' ']'
++ echo '~metalo8'
+ HDIR=~metalo8
+ '[' -d '~metalo8' ']'
++ echo '~metalo9'
+ HDIR=~metalo9
+ '[' -d '~metalo9' ']'
++ echo '~metalo10'
+ HDIR=~metalo10
+ '[' -d '~metalo10' ']'
++ echo '~metalo11'
+ HDIR=~metalo11
+ '[' -d '~metalo11' ']'
++ echo '~metalo12'
+ HDIR=~metalo12
+ '[' -d '~metalo12' ']'
++ echo '~humberto'
+ HDIR=~humberto
+ '[' -d '~humberto' ']'
++ echo '~lixo'
+ HDIR=~lixo
+ '[' -d '~lixo' ']'
linux:/etc #

#2307 From: "m_knopp" <taechunsa@...>
Date: Wed Apr 7, 2004 1:28 pm
Subject: Re: Apache2 w/ php problems
m_knopp
Send Email Send Email
 
sajchurchey & otplsfriends,

Thanks for the help. It turns out that the file had my server's user
permission, but not the server's group permissions. Fixing the group
permissions has it running now.

This does lead me to another question. Why couldn't root run the
file? I thought that root had access to all user's files and all
groups.

--- In suselinuxusers@yahoogroups.com, "Justin Churchey"
<sajchurchey@f...> wrote:
> Make sure you do a "chown -R apache:apache" to the DocumentRoot just
> to be on the safe side of the permissions thing.
>
> --- In suselinuxusers@yahoogroups.com, "m_knopp" <taechunsa@h...>
wrote:
> > Hello,
> >
> > I am extremely new to linux. In fact this is the first time that
I
> > have tried using it.
> >
> > Anyway, here is my problem. I installed SUSE 9.0 professional
this
> > morning and had it install apache2, php4, and mysql initially. I
> > have apache2 working fine with html. I can access the default
> > webpage, among others. However, when I try and access a php file
I
> > receive the following messages.
> >
> > Warning: Unknown(/srv/www/htdocs/phpinfo.php): failed to open
> > stream: Permission denied in Unknown on line 0
> >
> > Warning: (null)(): Failed opening '/srv/www/htdocs/phpinfo.php'
for
> > inclusion (include_path='.:/usr/share/php') in Unknown on line 0
> >
> > At first I thought that it might have been a permissions problem,
> > but the same error occured when I run the server in root. So it
> > isn't a problem of my server login not having the correct
> > permissions. My next thought was that php wasn't loading
correctly.
> > However, according to YAST HTTP Server the module is enabled. I
then
> > thought that maybe php didn't install correctly, but running php -
i
> > produced the info html so it is running just fine. All that I can
> > think of is that somehow eventhough YAST says that php is enabled
it
> > actually isn't. I also was not able to find anywhere that the
> > AddType was entered in any of the .conf files or in YAST.
> >
> > Any help would be greatly appreciated.
> >
> > Thank you.
> > Mike

#2308 From: Horror Vacui <horrorvacui@...>
Date: Wed Apr 7, 2004 4:43 pm
Subject: Re: [SUSE Linux Users] Re: Apache2 w/ php problems
horrorvacui1
Send Email Send Email
 
On Wed, 07 Apr 2004 13:28:39 -0000
m_knopp wrote:

> sajchurchey & otplsfriends,
>
> Thanks for the help. It turns out that the file had my server's user
> permission, but not the server's group permissions. Fixing the group
> permissions has it running now.
>
> This does lead me to another question. Why couldn't root run the
> file? I thought that root had access to all user's files and all
> groups.

Yes, in that root can change all permissions to allow himself access.
Otherwise... Try creating a file as root, chmod it to 440 and try to
change or execute it, again as root. What happens?

If root can override permissions, it doesn't mean that they're not
valid.

Cheers

--
Horror Vacui

Registered Linux user #257714

Go get yourself... counted: http://counter.li.org/
- and keep following the GNU.

#2309 From: "Barry Sharpe" <bsharpe@...>
Date: Thu Apr 8, 2004 10:55 am
Subject: group identification problem?
barrym45
Send Email Send Email
 
Hi New member and new to suse linux

I have suse 9 installed and am trying to access a netware environment with the
novell client 0.86 which i downloaded at sourceforge.

I can get the client to login to netware as a local root user but am so far
unable to get the client to work as a local user.  The install made changes to
the ncpmount, ncplogin and ncpumount files so that the user has rwx and suid set
for my name the group SGID is also set. However, every time i try as user i get
permissions denied. I stepped back and issued the ncpmount with the  -S -A -U  
switches at the bash prompt and get the permissions denied error. I now think
that my user id is not correctly assigned to the right groups in suse 9. Through
yast i took a look at the current groups i have tried to look for the catagories
in the help center but can find no information as to which group i should assign
to my user id so that i can mount a drive. rather than just assign myself to
root or even worse assign myself to all groups because i don't understand the
problem i wonder if anyone may be able to help me or point me in the right
direction to understanding the predefined groups in suse 9, and hence which ones
i need to consider.

I am a linux newbie but you may have already guessed that.

Barry



**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

postmaster@...

**********************************************************************

#2310 From: "dshock512" <dshock512@...>
Date: Sun Apr 11, 2004 3:47 am
Subject: PDF
dshock512
Send Email Send Email
 
Hi, I am new to Suse. How do I get better type fonts and is there a
pdf viewer for linux?
dennis Shock

#2311 From: Aaron Kulkis <akulkis@...>
Date: Sun Apr 11, 2004 4:46 am
Subject: Re: [SUSE Linux Users] PDF
magicnosegob
Send Email Send Email
 
dshock512 wrote:
> Hi, I am new to Suse. How do I get better type fonts and is there a
> pdf viewer for linux?
> dennis Shock
>
Did you turn on text anti-aliasing?


If not, why not?



Did you install TrueType fonts?

#2312 From: "John" <bucktheiguana@...>
Date: Sun Apr 11, 2004 4:38 pm
Subject: Re: PDF
bucktheiguana
Send Email Send Email
 
--- In suselinuxusers@yahoogroups.com, "dshock512" <dshock512@y...> wrote:
> Hi, I am new to Suse. How do I get better type fonts and is there a
> pdf viewer for linux?
> dennis Shock

For PDF viewing, you can use Adobe Acrobat reader
http://www.adobe.com/support/downloads/main.html - Chooce "Other
Platforms" in the "Readers" section, then select "Linux" in the
platform box.

You can also use the Konqueror web browser to view PDF files.

J.

#2313 From: Bratislav Velickovic <studio@...>
Date: Sun Apr 11, 2004 8:02 pm
Subject: Re: [SUSE Linux Users] PDF
vbraca
Send Email Send Email
 
Just start YAST/Install remove software and search for adobe reader - it comes
on SuSE Linux disks, alternatively you may use XPDF package.

Regarding fonts issue start Control center and select fonts you wan't to use
on your Linux box.

Regards,
--
Bratislav Velickovic
www.velickovic.net
webmaster@...

#2314 From: "m_knopp" <taechunsa@...>
Date: Wed Apr 14, 2004 2:44 am
Subject: How to upgrade program?
m_knopp
Send Email Send Email
 
Hello Linux Gurus,

I have another question for you.

How do I upgrade a program to the latest version? I have found
references to using the original config file to upgrade, but no real
explanation for what needs to be done with it.

Here is a specific example of what I am trying to do. I downloaded
the latest version of apache2 for the bug and security fixes. Where
do I extract the files? Do I have to edit the config file that came
with SUSE to point to the new files? If so how or what do I need to
change? Do I have to delete the old version first or will the new
version overwrite the old? Will I have to redo all of my changes in
the httpd.conf file?

Is it the same method for other programs? I was also thinking of
upgrading mySQL and pure_ftp.

I know this should be pretty simple. Probably is pretty simple, and
that is the problem. I have found that it is often the really simple
things that are next to impossible to find online. I think everyone
expects you to know how to do it. I have also had little to no luck
with books. They almost all refer to Redhat and RPMs.

Any help and guidance would be much appreciated.

#2315 From: Horror Vacui <horrorvacui@...>
Date: Wed Apr 14, 2004 11:44 am
Subject: Re: [SUSE Linux Users] How to upgrade program?
horrorvacui1
Send Email Send Email
 
On Wed, 14 Apr 2004 02:44:42 -0000
m_knopp wrote:

> Hello Linux Gurus,
>
> I have another question for you.
>
> How do I upgrade a program to the latest version? I have found
> references to using the original config file to upgrade, but no real
> explanation for what needs to be done with it.

You mean the original config file, like /etc/httpd.conf? That depends.
If the location or the name of the file isn't changed accross versions,
your newly installed version will use it - or try to use it, at least.
If the config file syntax is changed as well, this may or may not work,
additionally, if the new version has new functionalities added, you
won't know about the new configuration options if you still use the old
file.

Probably the best thing to do is to move the original config file
somewhere else (so that it's not overwritten by the new install), then
adjust the new config file to provide the same functionality (using the
old as a reference).

>
> Here is a specific example of what I am trying to do. I downloaded
> the latest version of apache2 for the bug and security fixes. Where
> do I extract the files? Do I have to edit the config file that came
> with SUSE to point to the new files? If so how or what do I need to
> change? Do I have to delete the old version first or will the new
> version overwrite the old? Will I have to redo all of my changes in
> the httpd.conf file?

Mostly, the newer versions of the software will support older
configuration file syntax. I'm not using SuSE any more so I don't know
about the specifics, but even those who do use it probably wouldn't be
able to answer this, seeing that you haven't given the version numbers
of the old apache and the one you want to upgrade to.

Also, you weren't specific about what kind of package you've downloaded
- an .rpm, a source tarball etc, and where you downloaded it from - SuSE
site, apache site...

Generally: it depends. Apache that comes with distributions is often
configured differently than the original one, in regard to locations for
configuration files and documents - sometimes the documents are in
/home/apache/htdocs, sometimes in /var/www/htdocs, sometimes somewhere
else. A SuSE .rpm will likely follow the SuSE configuration, a source
tarball won't, and will rather install in default locations.

Probably the best thing to do is to uninstall the old version first with
Yast (backup the configuration files first), then to install the new
one.

>
> Is it the same method for other programs? I was also thinking of
> upgrading mySQL and pure_ftp.

You could perhaps consider using the Yast update feature for this and
apache. There's nothing wrong with installing software from the original
sources, but that also means that you're on your own with them, and
can't count on Yast' help (in particular, the very useful automatic
upgrades and patches, which you could use to solve your security
problem, by the way) when you need to update them next time. Again,
there's nothing wrong with that, if you're able to do it. Decide based
on your level of newbiness, and your willingness to tinker with the
system.

Cheers

--
Horror Vacui

Registered Linux user #257714

Go get yourself... counted: http://counter.li.org/
- and keep following the GNU.

#2316 From: n_haas27
Date: Sun Apr 18, 2004 10:39 pm
Subject: Is This Yahoo Group very active?
n_haas27
 
Just wondering how active this group is...
Thanks

Neal
http://www.susediary.com

#2317 From: Horror Vacui <horrorvacui@...>
Date: Mon Apr 19, 2004 1:09 am
Subject: Re: [SUSE Linux Users] Is This Yahoo Group very active?
horrorvacui1
Send Email Send Email
 
On Sun, 18 Apr 2004 22:39:39 -0000
n_haas27 wrote:

> Just wondering how active this group is...
> Thanks

Not very. If you post a question, you'll probably get an answer, but it
could be better...

Linux newbies is much more active, but it has its bad days too...

Cheers

--
Horror Vacui

Registered Linux user #257714

Go get yourself... counted: http://counter.li.org/
- and keep following the GNU.

#2318 From: "robyrash" <robyrash@...>
Date: Mon Apr 19, 2004 9:43 am
Subject: openexchange server
robyrash
Send Email Send Email
 
hi friends

anybody know how to configure Openexchange server 4.1 if u have
documents on Installation/configuration  please send me


thanx
roby

#2319 From: Aaron Kulkis <akulkis@...>
Date: Mon Apr 19, 2004 12:14 pm
Subject: Re: [SUSE Linux Users] Is This Yahoo Group very active?
magicnosegob
Send Email Send Email
 
n_haas27 wrote:
> Just wondering how active this group is...
> Thanks

do you see HIGH activity levels on the group message-board page?

Sheesh!


>
> Neal
> http://www.susediary.com

#2320 From: Sriramam Kompella <srkompella@...>
Date: Fri Apr 23, 2004 7:08 am
Subject: samba & smtp setup
srkompella
Send Email Send Email
 
i hv configured my suse 8.x intel P3 server as a file
& printserver, proxy (Squid) and samba.
we hv 15 systems out of which only 3 developers use MS
windows 2000 professional and all others linux (Redhat
9.0, redhat 10 Fedora and suse 8.x). 2 printers (Hp
Laser 1300 and inkjet), 1 Scanner, 1 DVD rom cum Cd
Writer and 1 CD writer.

we dont hv any public IP and using 192.168.168.x on
single subnet and connecting to internet thro cable
who has given another private IP 192.168.1.15 and DNS
202.x.x.x. All users are connecting to internet thro
proxy.

we hv our email server hosted by third party and
located at other place.

my problem is whenever i am trying to send e mail thro
smtp i am getting the following error (I tried to send
from a email client Mozilla & outlook both sitting on
server and a client).

"The connection to the server has failed. Account
192.168.168.90, server 192.168.1.15 protocol SMTP,
port 25, secure (ssl0;no, socket error :10061, error
number 0X800CCCDE. Firewall not configured"

inbound mail is ok

i hv disabled the firewall but no use.

pl help me in configuring the same and trouble
shooting.

thanks in advance

sriram







__________________________________
Do you Yahoo!?
Yahoo! Photos: High-quality 4x6 digital prints for 25˘
http://photos.yahoo.com/ph/print_splash

#2321 From: "pito_parao" <pegaj_oso@...>
Date: Fri Apr 23, 2004 1:35 pm
Subject: Re: samba & smtp setup
pito_parao
Send Email Send Email
 
can you be more specific on how did you configure your server.  I
gather that you have set it up as your gateway to the internet, and
had enabled a Squid and Samba on it.  You mention a firewall, you have
it running on this server also?  How do you confiure your client?
What tipe of connection does your MAIL provider requieres for sending
mail, is it through port 25 by SMTP or does it requiere authentication
?  Is your server running an MTA, possibly postfix or sendmail?

These are some questions that need to be answered to further help you.



--- In suselinuxusers@yahoogroups.com, Sriramam Kompella
<srkompella@y...> wrote:
> i hv configured my suse 8.x intel P3 server as a file
> & printserver, proxy (Squid) and samba.
> we hv 15 systems out of which only 3 developers use MS
> windows 2000 professional and all others linux (Redhat
> 9.0, redhat 10 Fedora and suse 8.x). 2 printers (Hp
> Laser 1300 and inkjet), 1 Scanner, 1 DVD rom cum Cd
> Writer and 1 CD writer.
>
> we dont hv any public IP and using 192.168.168.x on
> single subnet and connecting to internet thro cable
> who has given another private IP 192.168.1.15 and DNS
> 202.x.x.x. All users are connecting to internet thro
> proxy.
>
> we hv our email server hosted by third party and
> located at other place.
>
> my problem is whenever i am trying to send e mail thro
> smtp i am getting the following error (I tried to send
> from a email client Mozilla & outlook both sitting on
> server and a client).
>
> "The connection to the server has failed. Account
> 192.168.168.90, server 192.168.1.15 protocol SMTP,
> port 25, secure (ssl0;no, socket error :10061, error
> number 0X800CCCDE. Firewall not configured"
>
> inbound mail is ok
>
> i hv disabled the firewall but no use.
>
> pl help me in configuring the same and trouble
> shooting.
>
> thanks in advance
>
> sriram
>
>
>
>
>
>
>
> __________________________________
> Do you Yahoo!?
> Yahoo! Photos: High-quality 4x6 digital prints for 25˘
> http://photos.yahoo.com/ph/print_splash

#2322 From: vibeesh_bose
Date: Wed Apr 28, 2004 4:44 pm
Subject: x286 & Linux
vibeesh_bose
 
Is there a version of Suse Linux which will run on an 802867 IBM PC?

#2323 From: Aaron Kulkis <akulkis@...>
Date: Wed Apr 28, 2004 6:43 pm
Subject: Re: [SUSE Linux Users] x286 & Linux
magicnosegob
Send Email Send Email
 
vibeesh_bose wrote:
> Is there a version of Suse Linux which will run on an 802867 IBM PC?
>

There was (is)? a project to do that.  However, be aware of the
following issues:

* Since the 80286 doesn't have any memory management capability,
   it is GREATLY debilitated.  Virtual memory (vm) is right out.
   Therefore, your memory is limited to what you have on the
   motherboard... no swap space.

* 80386 and higher can create a practically unlimited number of
   virtual 80286's.  80286 has no virtualization.

* Standard RPMs with executables are compiled for 80386 or higher,
   you'll have to install everything from source.

#2324 From: "giridharka" <giridharka@...>
Date: Sat May 1, 2004 1:30 pm
Subject: EARN Easily Rs.10,000 -25,000 PLUS/MONTH FROM HOME/CAFE/OFFICE THROUGH INTERNET
giridharka
Send Email Send Email
 
Earn thousands from the comfort of your home by selling household
products on the Internet. Commission Based payments – No MLM.
Contact: : smart0415@....

Are U patiently waiting for the right career opportunity to come your
way...WAIT cuz good things
always take a little time before they can come your way. But as you
are waiting, we have an
opportunity for you... a part time/full time online job, which can be
fun as well as earn you a FIVE
FIGURE income monthly. If you have basic knowledge of computer and
internet browsing and if you are
able to spare 10-15 hours per week at your convenience or even on
weekends and holidays, then you
may enroll yourself. Any Kind of persons,Even a child can easily do
this job, Any how Free Online
training will be provided by us. No fixed timing, no targets, no
sales, no marketing. This is a 100%
Genuine Company, No hassles. Be your own boss with Smart jobs to
change your life-style. I Am
Recieving Over Rs20,000/Month Into My Bank Account Since The Past 5
Months Just By Working Part Time
On The Internet...THEN WHY CAN'T U ?

To recieve FREE details write to us to know more.Follow link Below to
Send Mail to Us:-

mailto:smart0415@....?subject=SEND DETAILS REGARDING
ONLINE
JOB

Be sure to include:
1. First name
2. Last name
3. City/State

We'll then send you full info & the Joining Form as soon as possible,
and you can make up your own
mind. (Office Reference : smart0415@.... Looking forward
to
hearing from you !

Remember the internet revolution is here to stay... START EARNING
NOW !Thousands of People
benefiting by us.No Loss!Only Gains!

Have a Great Day !!!…Plz do forward this Information to your friends
n relatives who might be
interested in this offer.

#2325 From: "giridharka" <giridharka@...>
Date: Sat May 1, 2004 1:31 pm
Subject: EARN Easily Rs.10,000 -25,000 PLUS/MONTH FROM HOME/CAFE/OFFICE THROUGH INTERNET
giridharka
Send Email Send Email
 
Earn thousands from the comfort of your home by selling household
products on the Internet. Commission Based payments – No MLM.
Contact: : smart0415@....

Are U patiently waiting for the right career opportunity to come your
way...WAIT cuz good things
always take a little time before they can come your way. But as you
are waiting, we have an
opportunity for you... a part time/full time online job, which can be
fun as well as earn you a FIVE
FIGURE income monthly. If you have basic knowledge of computer and
internet browsing and if you are
able to spare 10-15 hours per week at your convenience or even on
weekends and holidays, then you
may enroll yourself. Any Kind of persons,Even a child can easily do
this job, Any how Free Online
training will be provided by us. No fixed timing, no targets, no
sales, no marketing. This is a 100%
Genuine Company, No hassles. Be your own boss with Smart jobs to
change your life-style. I Am
Recieving Over Rs20,000/Month Into My Bank Account Since The Past 5
Months Just By Working Part Time
On The Internet...THEN WHY CAN'T U ?

To recieve FREE details write to us to know more.Follow link Below to
Send Mail to Us:-

mailto:smart0415@....?subject=SEND DETAILS REGARDING
ONLINE
JOB

Be sure to include:
1. First name
2. Last name
3. City/State

We'll then send you full info & the Joining Form as soon as possible,
and you can make up your own
mind. (Office Reference : smart0415@.... Looking forward
to
hearing from you !

Remember the internet revolution is here to stay... START EARNING
NOW !Thousands of People
benefiting by us.No Loss!Only Gains!

Have a Great Day !!!…Plz do forward this Information to your friends
n relatives who might be
interested in this offer.

#2326 From: "John Russo" <john@...>
Date: Wed May 5, 2004 7:36 pm
Subject: Enterprise 9.0
jfrusso
Send Email Send Email
 
Has anyone heard a release date for SuSE Enterprise 9.0 ?

Also, is it expected to be a 2.4 or 2.6 kernel based release ?

Thanks,

#2327 From: "Kurt A. Brust" <cltkbrust@...>
Date: Wed May 5, 2004 8:47 pm
Subject: [Fwd: Re: [SUSE Linux Users] Enterprise 9.0]
kurtbrust1025
Send Email Send Email
 
[Non-text portions of this message have been removed]

#2328 From: Jai <jmk327@...>
Date: Fri May 7, 2004 9:18 am
Subject: Unable to login as root
jmk327
Send Email Send Email
 
Hello Everybody,

I am new to Linux and this group. I have installed Suse Linux 9.0 in my desktop.

I have tried to install Mplayer after logged in as root. But it said some
conflict. So left it. Now the problem is I am unable to login as root. When I
tried to login as root, just the screen refreshs and login query appears again.

I have to install now MPICH urgently for my study purpose.

So please help me..

Thanks in Advance,

Have a nice weekend,

Kind regards,

Jai


Yahoo! India Matrimony: Find your partner online.

[Non-text portions of this message have been removed]

Messages 2299 - 2328 of 7756   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help