Re: Memory Resources - Howto Refresh

2003-10-22 Thread Eduardo A. dela Rosa
Title: Re: Memory Resources - Howto Refresh




On Tue, 2003-10-21 at 22:15, Zoki wrote:

*** As a list member mentioned, tell us more about the "slowed down"
experience. What has slown down? Your PC's responsiveness? Checking what job
is taking CPU time would be more useful. Use "top" for that.

Concerning your memory, a list member has already noticed you have still
enough resources free: Cached 195208, Free 76492. That's 271Mb of RAM free
to be used. Out of the 512Mb, that's not bad. What unused resources did you
want to "release"?


For sometime, I've been using Eclipse IDE, MySQL, JBoss, among others
(evolution, etc.).  

As I type something on the IDE, (also tried with shell), I can dramatically
notice that every letter writen on the screen incurs a delay of about 500 millis.

So I shutdown Eclipse, MySQL, and JBoss, hoping that it would release
resources that it ate up.  Waited for quite a while, I tried to check my
resources.  To my puzzle, it just looks the same as it was before those
major apps were properly shutdown.

Therefore, I suspected that resources weren't released by the OS.  Having
that at hand, the next thing I need is the way to manually re-claim those
resources from the OS.  How do I do it?

Regards.  





-- 
EDUARDO A. DELA ROSA
MCOM/2414
http://www.smart.com.ph

"Anyone who has never made a mistake has never tried anything new."
-- Albert Einstein








Re: Installing Mysql on 9.0

2003-10-16 Thread Eduardo A. dela Rosa




On Fri, 2003-10-17 at 02:24, Dali Islam wrote:

After I ran the command from the
/usr/loca/mysql/sql-bench folder "perl run-all-tests"
I got the following error:

GOT error: 'Can't connect to local MySql server
through socket '/var/lib/mysql/mysql.sock' (2) when
connecting to DBI:mysql:database=test;host=localhost
with user: '' password" ''



Go check and edit the /etc/my.cnf:

1.  look for the line that contains the following:
    [client]
    port    = 3306
    socket = /var/lib/mysql/mysql.sock

    [mysqld]
    port    = 3306
    socket = /var/lib/mysql/mysql.sock


2.  in both section (client & mysql) replace the value of socket to:

    socket = /tmp/mysql.sock
    
3.  try running the mysqld (folder /usr/local/mysql/bin should be in your $PATH)
4.  then check the file /tmp/mysql.sock (it should exist)
5.  your "run-all-test" should post no problem.

Cheers! 



-- 
EDUARDO A. DELA ROSA
MCOM/2414
http://www.smart.com.ph

"Anyone who has never made a mistake has never tried anything new."
-- Albert Einstein








Memory Resources - Howto Refresh

2003-10-16 Thread Eduardo A. dela Rosa




Hi,

After days of work, without rebooting my box, it suddenly slowed down.  My filesystem is just 
41% of the total size that my hard disk can hold. I executed "free" to check on the available
memory resources. I found the following information:

[EMAIL PROTECTED] xxx]$ free
 total   used   free shared    buffers cached
Mem:    505220 428728  76492  0  16860 195208
-/+ buffers/cache:   216660 288560
Swap:  1052248 194312 857936


Well, I don't really want to reboot my box.  Is there a way that I could refresh (or probably
release the unused) resources of my box?  After all, some of my previously used
applications (eclipse, jboss, and mysql) have been shutdown for quite a long while now.





-- 
EDUARDO A. DELA ROSA
MCOM/2414
http://www.smart.com.ph

"Anyone who has never made a mistake has never tried anything new."
-- Albert Einstein








Re: Installing Mysql on 9.0

2003-10-15 Thread Eduardo A. dela Rosa
Title: Re: Installing Mysql on 9.0




Hi Dali,

"mysql dead but subsys locked."

Normally this would happen if you've got a previous version of MySQL
that was installed along with your RedHat OS.  Try to uninstall it and
also find the "mysql.pid" and delete it.  If you find any mysql.pid, it
may mean that a previously running mysqld failed to shutdown properly.

HTH.




-- 
EDUARDO A. DELA ROSA
MCOM/2414
http://www.smart.com.ph

"Anyone who has never made a mistake has never tried anything new."
-- Albert Einstein








Re: How to get IP config

2003-10-14 Thread Eduardo A. dela Rosa
in rh9, try running:
shell> redhat-config-network

On Wed, 2003-10-15 at 01:23, Volker Kroll wrote:
> On Tue, 2003-10-14 at 19:20, Agrawal, Manish wrote:
> > Hi,
> > 
> >   How can I find out my network configuration in Redhat 9 - IP
> > address, Gateway, MAC address etc? Is there a command that produces
> output
> > similar to what ipconfig produces in Windows?
> 
> Yes, it is. It is called ifconfig (InterFaceConfig.)
> 
> HTH
> Volker
> 
> 
> -- 
> redhat-list mailing list
> unsubscribe mailto:[EMAIL PROTECTED]
> https://www.redhat.com/mailman/listinfo/redhat-list
-- 
EDUARDO A. DELA ROSA
MCOM/2414
http://www.smart.com.ph

"Anyone who has never made a mistake has never tried anything new."
-- Albert Einstein


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Installing Mysql on 9.0

2003-10-14 Thread Eduardo A. dela Rosa
> shell> groupadd mysql
> shell> useradd -g mysql mysql
> shell> gunzip < mysql-VERSION.tar.gz | tar -xvf -
> shell> cd mysql-VERSION
> shell> ./configure --prefix=/usr/local/mysql
> shell> make
> shell> make install
> shell> scripts/mysql_install_db
> shell> chown -R root  /usr/local/mysql
> shell> chown -R mysql /usr/local/mysql/var
> shell> chgrp -R mysql /usr/local/mysql

hi Dali,

What you've just followed are procedures for the impatients. 
You may miss some essential explanations if you don't read them.

Nonetheless, I would advise you take the binary distribution to 
not complicate things further.  After all, you would only require
source distribution if you need to tweak or modify MySQL DB Server.
Using binary distribution:

1.  I presume that you've been installing as root;

2.  After creating group and user for "mysql" account, unzip 
the package using the command: 
shell> tar -xzf mysql-version.tar.gz;

3.  Rather than creating link to your /usr/local/mysql, I suggest
moving the unzipped folder to /usr/local as mysql itself:
 shell> mv mysq-version /usr/local/mysql

4.  cd to /usr/local/mysql;
5.  Run the script to initialize the database:
 shell> scripts/mysql_install_db
6.  Change ownership of mysql folder to root and mysql:
shell> chown -R root:mysql /usr/local/mysql
7.  change ownership of data to mysql:
shell> chown -R mysql:mysql /usr/local/mysql/data
8.  copy support-files/my-xxx.cnf to /etc/my.cnf;
9.  I would suggest including /usr/local/mysql/bin to your
$PATH;
10.  Try to run mysql server using:
shell> mysqld
11.  For security purposes, never forget to change password
for the superuser of your mysql.

HTH.

-- 
EDUARDO A. DELA ROSA
MCOM/2414
http://www.smart.com.ph

"Anyone who has never made a mistake has never tried anything new."
-- Albert Einstein


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: cvs commit command fails

2003-10-05 Thread Eduardo A. dela Rosa




On Mon, 2003-10-06 at 07:57, Shawn wrote:



CVS: --
CVS: Enter Log.  Lines beginning with `CVS:' are removed automatically
CVS:
CVS: Committing in .
CVS:
CVS: Modified Files:
CVS:Query_Support.xml
CVS: --
~
~


dear shawn,

this message isn't an error.  this a vi(sual) editor in normal mode.  you type your message here and w(rite)
it.  it will be included in your message log along with the file that's being committed.




-- 
EDUARDO A. DELA ROSA
MCOM/2414
http://www.smart.com.ph

"Anyone who has never made a mistake has never tried anything new."
-- Albert Einstein








Re: LG studioworks 900B monitor

2003-09-24 Thread Eduardo A. dela Rosa
Title: LG studioworks 900B monitor




Re-send:

1.  Get the manual of your LG monitor
2.  Locate the section where it identifies the Horizontal (KHz) and Vertical (Hz) Refresh Rates
    of your monitor
3.  Run the redhat-config-xfree86 (of course, you must be root)
4.  In the Advanced Tab, click on Configure
5.  DON'T click Probe Monitor; Enter the appropriate value for the following:
    a.  Model Name (any, ex. LG Studioworks 900b);
    b.  Horizontal Sync Range (monitor specific, ex. 30.0-69.0)
    c.  Vertical Refresh Rate (monitor-specific, ex. 50.0-120.0)
6.  Click ok.

You must restart you XWindow Server (NOT YOUR COMPUTER) for the setting to take
effect.

You may want to run redhat-config-xfree68 again, but this time to change your desired
(higher) resolution.

Please note that it is not the responsibility of the monitor alone to display your GUI in
higher resolution.  You video card must also be capable of displaying more than 256 colors
(say 16Million colors) to be able to see more fine graphics.

Hope this helps.

On Wed, 2003-09-24 at 14:46, Matthew Simpson wrote: 

Hi,

redhat 9 doesn't seem to have drivers for the 'LG Studioworks 900b' 
monitor and is only giving resolutions to 1024 x 768 ? Any clues?

Matt

    





-- 
EDUARDO A. DELA ROSA
MCOM/2414
http://www.smart.com.ph

"Anyone who has never made a mistake has never tried anything new."
-- Albert Einstein








Re: LG studioworks 900B monitor

2003-09-24 Thread Eduardo A. dela Rosa
Title: LG studioworks 900B monitor




1.  Get the manual of your LG monitor
2.  Locate the section where it identifies the Horizontal (KHz) and Vertical (Hz) Refresh Rates
    of your monitor
3.  Run the redhat-config-xfree86 (of course, you must be root)
4.  In the Advanced Tab, click on Configure
5.  DON'T click Probe Monitor; Enter the appropriate value for the following:
    a.  Model Name (any, ex. LG Studioworks 900b);
    b.  Horizontal Sync Range (monitor specific, ex. 30.0-69.0)
    c.  Vertical Refresh Rate (monitor-specific, ex. 50.0-120.0)
6.  Click ok.

You must restart you XWindow Server (NOT YOUR COMPUTER) for the setting to take
effect.

You may want to run redhat-config-xfree68 again, but this time to change your desired
(higher) resolution.

Please note that it is not the responsibility of the monitor alone to display your GUI in
higher resolution.  You video card must also be capable of displaying more than 256 colors
(say 16Million colors) to be able to see more fine graphics.

Hope this helps.

On Wed, 2003-09-24 at 14:46, Matthew Simpson wrote:

Hi,

redhat 9 doesn't seem to have drivers for the 'LG Studioworks 900b' 
monitor and is only giving resolutions to 1024 x 768 ? Any clues?

Matt

    





-- 
EDUARDO A. DELA ROSA
MCOM/2414
http://www.smart.com.ph

"Anyone who has never made a mistake has never tried anything new."
-- Albert Einstein








signature.asc
Description: This is a digitally signed message part


RE: problem using rpm -e

2003-09-03 Thread Eduardo A. dela Rosa
> I installed a program using rpm.  It's not running properly, so now want
> to remove it.  When I execute rpm -e filename, I get the error message
> 'filename not installed'.  How do I uninstall?

Perhaps you may have been including the version number of the
package that you were trying to remove, example:

# Try to query the package "tcpdump":

[EMAIL PROTECTED] MySQL]$ rpm -q tcpdump
tcpdump-3.7.2-1

# Now, to remove the package, do not include the version part:
[EMAIL PROTECTED] MySQL]$ rpm -e tcpdump

HTH.

Regards,
-- 
EDUARDO A. DELA ROSA
MCOM-IT Department

Smart Communications, Inc.
30/F Smart Tower 6799 Ayala Avenue
Makati City 1226 Philippines

http://www.smart.com.ph

"Never interrupt your enemy when he is
making a mistake" -- Napoleon Bonaparte


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


RE: Proxy Authentication

2003-09-01 Thread Eduardo A. dela Rosa
thanks Jeff, I'll check on that.

Regards,

On Fri, 2003-08-29 at 23:08, Go, Jeffrey wrote:
> Eduard
> 
> The problem is that MS Proxy server 2.0 ( I assume this is what you are
> using) requires that a MS Proxy client be installed on clients that wish
> to access the proxy services..and 
> I don't think it has RH client available on it...
> 
> You may want to check MS technet site and see what you can dig up there
> 
> Hth
> jeff
> 
> -----Original Message-
> From: Eduardo A. dela Rosa [mailto:[EMAIL PROTECTED] 
> Sent: Friday, August 29, 2003 2:36 AM
> To: RedHat List
> Subject: Proxy Authentication
> 
> 
> Hi,
> 
> My story may be OT but please bear with me:
> 
> I use Mozilla 1.4 as web browser.  Our web proxy
> is using Microsoft Proxy Server.  I configured my
> browser with the given proxy IP Address at port 80.
> 
> However, when I tried to browse the internet, the
> following error keeps on appearing:
> 
> *--
> Proxy Authentication Required
> You must authenticate with a proxy server before this request can be
> serviced. 
> 
> 
> Please try the following:
> 
>   * Log on to your proxy server and try again.
>   * If you believe you should be able to view this directory or
> page, please contact the Web site administrator by using the
> e-mail address or phone number listed on the java.sun.com home
> page.
> 
> HTTP 407 - Proxy Authentication Required
> Internet Information Services
> 
> 
> 
> Technical Information (for support personnel)
> 
>   * More information:
> Microsoft Support
> *
> 
> Our sysad advised me that Microsoft Proxy Server only
> allows Internet Explorer to pass through. 
> 
> Is there a workaround to get through this and browse the 
> internet?  
> 
> I appreciate your help.
> 
> Regards,
> 
> -- 
> EDUARDO A. DELA ROSA
> MCOM-IT Department
> 
> http://www.smart.com.ph
> 
> "Forgive your enemies, but never forget their names"
> -- Pres. John F. Kennedy
> 
> 
> -- 
> redhat-list mailing list
> unsubscribe mailto:[EMAIL PROTECTED]
> https://www.redhat.com/mailman/listinfo/redhat-list
-- 
EDUARDO A. DELA ROSA
MCOM-IT Department

Smart Communications, Inc.
30/F Smart Tower 6799 Ayala Avenue
Makati City 1226 Philippines

http://www.smart.com.ph

"Forgive your enemies, but never forget their names"
-- Pres. John F. Kennedy


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Proxy Authentication

2003-08-29 Thread Eduardo A. dela Rosa
Hi,

My story may be OT but please bear with me:

I use Mozilla 1.4 as web browser.  Our web proxy
is using Microsoft Proxy Server.  I configured my
browser with the given proxy IP Address at port 80.

However, when I tried to browse the internet, the
following error keeps on appearing:

*--
Proxy Authentication Required
You must authenticate with a proxy server before this request can be
serviced. 


Please try the following:

  * Log on to your proxy server and try again.
  * If you believe you should be able to view this directory or
page, please contact the Web site administrator by using the
e-mail address or phone number listed on the java.sun.com home
page.

HTTP 407 - Proxy Authentication Required
Internet Information Services



Technical Information (for support personnel)

  * More information:
Microsoft Support
*

Our sysad advised me that Microsoft Proxy Server only
allows Internet Explorer to pass through. 

Is there a workaround to get through this and browse the 
internet?  

I appreciate your help.

Regards,

-- 
EDUARDO A. DELA ROSA
MCOM-IT Department

http://www.smart.com.ph

"Forgive your enemies, but never forget their names"
-- Pres. John F. Kennedy


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Re:(Oracle Installation error) What this error mean ?

2003-08-28 Thread Eduardo A. dela Rosa
On Thu, 2003-08-28 at 03:30, Sambit Nanda wrote:
> ../stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre.
> > > Please wait...
> > >
> >
> /ora_d01/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads/libzip.so:
> > > symbol errno, version GLIBC_2.0 not defined in
> > file
> > > libc.so.6 with link time reference (libzip.so)
> > > Unable to initialize threads: cannot find class
> > > java/lang/Thread
> > > Could not create Java VM
> > > 
> > > 

revisiting your error log, it seems that oracle has tried to expand its
own version of JRE and had problem of doing so.  that's basically one
point where it failed to initialize its own JVM.

i suppose that you're trying to install it as "root" so that the process
would have all the rights (read/write/execute) and all the oracle part
of providing environment variables must be put in /etc/profile to make
them visible globally rather than putting them in .bash_profile.

cheers!

-- 
EDUARDO A. DELA ROSA
MCOM Department
http://www.smart.com.ph

"Forgive your enemies, but never forget their names."
- Pres. John F. Kennedy


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Ping and nslookup, dig

2003-08-27 Thread Eduardo A. dela Rosa
dear Le,

apparently, the name server recognizes 192.168.2.13 as 
server3.vn.ibs-dp.com as its sole identity.  therefore
you should be able to ping server3 with its fully
qualified hostname as server3.vn.ibs-dp.com and not 
server3 only.

would you try if i'm correct?

cheers!


On Wed, 2003-08-27 at 11:15, Le Ngoc Thach wrote:
> Hi all,
> I have setup successfully BIND service in RedHat. I have also used
> nslookup to lookup IP address of a host in Intranet. It'ok.
> 
> But "ping " does not work.
> 
> Help me why?
> Here is my tracking of commands:
> 
> [EMAIL PROTECTED] etc]# nslookup server3
> Note:  nslookup is deprecated and may be removed from future releases.
> Consider using the `dig' or `host' programs instead.  Run nslookup
> with
> the `-sil[ent]' option to prevent this message from appearing.
> Server: 192.168.2.15
> Address:192.168.2.15#53
> 
> Name:   server3.vn.ibs-dp.com
> Address: 192.168.2.13
> 
> [EMAIL PROTECTED] etc]# ping server3
> ping: unknown host server3
> [EMAIL PROTECTED] etc]#
-- 
EDUARDO A. DELA ROSA
MCOM Department
http://www.smart.com.ph

"The reason why evil prevail in this nation is because
good men and good women get tired of being good before
bad men and bad women get tired of being bad..."
-Senator Jovito Salonga


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: What this error mean ?

2003-08-27 Thread Eduardo A. dela Rosa
hi Sambit,

the scenario that you're in seems to lack further
info for us. nonetheless, have you set your environment
variable JAVA_HOME?

like: 

[EMAIL PROTECTED] xxx]$export JAVA_HOME=/j2sdk-1.4.2-fcs

your  could probably reside under the /usr/java
directory.

hth.

regards c",) 

On Wed, 2003-08-27 at 04:23, Sambit Nanda wrote:
> Hi, 
>   I have the difficulty to Install Oracle 8.X on my
> RH9
> 
> I made the changes instructed by Oracle and Installed
> J2sdk-1.4.2 
> if i do rpm -qa | grep j2sdk, i got the result
> j2sdk-1.4.2-fcs 
> but the problem is when i  start oracle instaltion
> program, I am getting the error like this below, I do
> not have any idea, what work the error is expecting me
> to do , Can any one please adivice me , what is wrong
> 
> Here is the Eror Log 
> 
>  [EMAIL PROTECTED] Disk1]$ ./runInstaller
> [EMAIL PROTECTED] Disk1]$ Initializing Java Virtual
> Machine from
> ../stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre.
> Please wait...
> /ora_d01/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads/libzip.so:
> symbol errno, version GLIBC_2.0 not defined in file
> libc.so.6 with link time reference (libzip.so)
> Unable to initialize threads: cannot find class
> java/lang/Thread
> Could not create Java VM
> 
> 
> Thanks
> Sambit
> 
> 
> 
> =
> Thanks, 
> 
> Sambit Nanda 
> 203-553-3424 (O)
-- 
EDUARDO A. DELA ROSA
MCOM Department
http://www.smart.com.ph

"The reason why evil prevail in this nation is because
good men and good women get tired of being good before
bad men and bad women get tired of being bad..."
-Senator Jovito Salonga


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Sweet Success

2003-08-20 Thread Eduardo A. dela Rosa
6:35:01 up 2 days, 19:01,  1 user,  load average: 0.29, 0.16, 0.05
> -
> |____  | illawarra computer services|
> |   /-oo /| |'-.   | http://kma.0catch.com  |
> |  .\__/ || |   |  ||
> |   _ /  `._ \|_|_.-'  | stephen kuhn   |
> |  | /  \__.`=._) (_   | email: [EMAIL PROTECTED] |
> -
> linux user #:267497 linux machine #:194239 * MDK 9.1+ & RH 9
> Mandrake Linux Kernel 2.4.21-11mdk Cooker for i586
> -
> * This message was composed on a 100% Microsoft free computer *
> 
> The Martian landed his saucer in Manhattan, and immediately upon
> emerging was approached by a panhandler.  "Mister," said the man, "can I
> have a quarter?"
> The Martian asked, "What's a quarter?"
> The panhandler thought a minute, brightened, then said, "You're
> right!  Can I have a dollar?"
> 
> 
> --
> redhat-list mailing list
> unsubscribe mailto:[EMAIL PROTECTED]
> https://www.redhat.com/mailman/listinfo/redhat-list
> 
> 
-- 
EDUARDO A. DELA ROSA
MCOM Department
http://www.smart.com.ph

"The reason why evil prevail in this nation is because
good men and good women get tired of being good before
bad men and bad women get tired of being bad..."
-Senator Jovito Salonga


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Adobe Reader Installation Won't Run

2003-08-14 Thread Eduardo A. dela Rosa
hi,

does anyone here who got an idea in fixing installation of adobe reader
version 5.0.7 in RH9?

any help will be appreciated, thanks!

-- 
EDUARDO A. DELA ROSA
MCOM Department
http://www.smart.com.ph


signature.asc
Description: This is a digitally signed message part


Re: Adobe Reader Installation Won't Run

2003-08-14 Thread Eduardo A. dela Rosa
dear brian,

it worked!

you're the man! you made my day! 

thanks a lot!

regards,

On Wed, 2003-08-13 at 18:28, Brian Hanks wrote:
> > From: Eduardo A. dela Rosa <[EMAIL PROTECTED]>
> > To: RedHat List <[EMAIL PROTECTED]>
> > Cc: [EMAIL PROTECTED]
> > Subject: Adobe Reader Installation Won't Run
> > Date: 13 Aug 2003 11:29:30 +0800
> > 
> > hi,
> > 
> > does anyone here who got an idea in fixing installation of adobe reader
> > version 5.0.7 in RH9?
> > 
> > any help will be appreciated, thanks!
> > 
> > -- 
> > EDUARDO A. DELA ROSA
> > MCOM Department
> > http://www.smart.com.ph
> > 
> > __
> Locate the acroread executable.  Edit it.  Add either of the following
> to the top of the script, they both seem to work:
> 
> LANG=C
> export LANG
> 
> OR 
> 
> LANG=en_US
> export LANG
> 
> 
> Good luck,
> Brian Hanks
-- 
EDUARDO A. DELA ROSA
MCOM Department
http://www.smart.com.ph


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


Re: Display change resolution and shrinks out after logout.

2003-08-08 Thread Eduardo A. dela Rosa
hi bEEnHeX,

try to check the manual of your monitor Hansol 710p.  look
for the horizontal and vertical syncs (Hz) and manually
configure your monitor (through desktop configurator) by
inputting the appropriate values.

every monitor has its own properties that must be exactly fed
in to the setting with all flavors of linux.

if you don't have the manual, try visiting the site of
the manufacturer, i'm sure they have it (the specification)
on-line. 

i normally don't depend on the probed monitor.  the monitor 
manual knows exactly what the setting must be.

hope this helps. :)
 
On Thu, 2003-08-07 at 14:23, bEEnHeX wrote:
> I have a problem with my display.
> 
> After succesfull booting of RH 9.0, the login graphical screen displays
> correctly and I can proceed with my account normally.
> But whenever I try to logout from an account, the display change the
> resolution and shrinks out so I can not see all of the edges of a login
> screen. Then after login, the display remain the same (shrinked) and I need
> to correct the orientation with OSD monitor menu. After reboot it starts
> correctly.
> 
> (the exact model of my monitor is not included by default in the preferences
> (monitor list), I tried to set the closest one - Hansol 710p
> 
> What is the problem?
> 
> Thank you for any help.
-- 
EDUARDO A. DELA ROSA
MCOM Department
http://www.smart.com.ph


signature.asc
Description: This is a digitally signed message part


Help: Linux Email Client for MS Exchange Server

2003-08-03 Thread Eduardo A. dela Rosa
hi!

would anyone suggest a workable email client better than ximian 
evolution?

currently, i'm using a linux box (RH9) and ximian as email client.
using a Microsoft Exhange Server gives me a lot of headache because
my mail would not go out using SMTP server (outgoing). i needed to
have few workarounds to make it work but i know its not proper and
not appropriate as long term solution.

i tried visiting the site of ximian but to my surprise, they've just
offered a commercially licensed "Ximian Connector" to be able to
optimize connectivity with MS Exchange Server (so, it isn't free).

one drawback of using MS Exhange Server with linux box as client is 
that -  i couldn't receive mail attachments, which everyone of us
considers as imperative in business correpondences.

i would appreciate your high regards on this posting.  thank you.

-- 
EDUARDO A. DELA ROSA
Software Development Specialist
Mobile Commerce Department

Smart Communications, Inc.
30/F Smart Tower 6799 Ayala Avenue
Makati City 1226 Philippines
http://www.smart.com.ph




signature.asc
Description: This is a digitally signed message part