Re: Weird ash/sash behavior

2000-01-14 Thread H Huang
Joey Hess writes:

  produces one directory under test: test/{usr,bin}
 
  Note that /bin/sash also has the same problem, while /bin/bash,
  /bin/tcsh, and /usr/bin/ksh do not.
 
  Any comment?

 Yes. {foo,bar} is a bashism. Do not expect any shell except bash to
 expand it.

But how can you explain
--
#! /bin/ash
mkdir -p test/{foo,bar}
--
does expand the {foo,bar}, while

--
#!/bin/ash
mkdir -p test/{foo,bar}
--
does not. Note that there is a space between #! and /bin/ash in the
first case.

Thanks.

-- 
H Huang


Re: Weird ash/sash behavior

2000-01-14 Thread H Huang
Joey Hess writes:

  But how can you explain
  --
  #! /bin/ash
  mkdir -p test/{foo,bar}
  --
  does expand the {foo,bar}, while
 
 It doesn't here.

Sorry. It doesn't here either. But try:

--
#! /bin/ash vs   #!/bin/ash
install -d test/{foo,bar}install -d test/{foo,bar}
--

and see what you get.

ash version: 0.3.5-9

Thanks.

-- 
H Huang


Re: Weird ash/sash behavior -- Solved

2000-01-14 Thread H Huang

Forget it!

I put the space in the wrong place: # !/bin/sh, as opposed to 
#! /bin/sh.

I'm really sorry :(

Thanks.

-- 
H Huang


Weird ash/sash behavior

2000-01-13 Thread H Huang

I've been experimenting using /bin/ash as /bin/sh recently. No big
problem so far. However, a couple of debian/rules failed to
build. Further examination shows that:

#!/bin/ash  (1)
and 
#! /bin/ash (2)

behave differently. Note that there is space between #! and /bin/ash
in (2).

Example:

-
#!/bin/ash
mkdir -p test/{usr,lib}
-
produces one directory under test: test/{usr,bin}

while
-
#! /bin/ash
mkdir -p test/{usr,lib}
-
produces two: test/usr and test/bin, which is probably what we want.


Note that /bin/sash also has the same problem, while /bin/bash,
/bin/tcsh, and /usr/bin/ksh do not.

Any comment?

-- 
H Huang


Re: ...Bridging or Routing - Which With DSL?

1999-10-10 Thread H Huang
Art Lemasters writes:

  Thanks William, but my access provider has given me the option
 of going either way, so the decision has yet to be made.  I have
 been told that no tech. support will be offered with DSL from this
 provider.  Thus, the question.
 

Go with routing. Although it may be more involved to set up, it allows
you to build a firewall later if you want.

-- 
H Huang


Re: Massaging Compiling SLiRP

1999-01-22 Thread H Huang
Karl A. Krueger writes:

 I'm having a good deal of trouble getting SLiRP to compile under Debian
 2.0.  I'm using the slirp-1.0c source code, available from
 blitzen.canberra.edu.au, under /pub/slirp.  configure runs fine; but when
 attempting to actually make the binary, I get a stream of errors.  
 
 The first:
 
 gcc -I. -I. -DUSE_PPP  -g -O -O2  -c ./ppp/pppdfncs.c
 In file included from slirp.h:264,
  from ppp/ppp.h:27,
  from ppp/pppd.h:29,
  from ./ppp/pppdfncs.c:39:
 ppp.p:21: conflicting types for `logwtmp'
 /usr/include/utmp.h:53: previous declaration of `logwtmp'
 make: *** [pppdfncs.o] Error 1

I believe that this is caused by the different utmp format in glibc2.

 So ... has anyone successfully massaged the SLiRP source to get it to
 compile under a modern Linux?  Mind sharing your hints or patches?  Has
 anyone picked SLiRP up where Dan Gasparovski left it off three years ago? 
 Has anyone (for that matter) a good replacement for SLiRP's functionality?

Why not fetch the debianized source codes and take a look at the
diff.gz file?

-- 
H Huang


Re: What is MARK in /var/log/messages

1998-09-10 Thread H Huang
Andy Spiegl writes:

  This is syslogd's heartbeat - it tells you that the logger is
  still alive and well.
 
 -m interval
The syslogd logs a mark  timestamp  regularly.  The
default interval between two -- MARK -- lines is 20
minutes. This can be changed with this option.
 
 Thanks a lot!  Now I am wondering what I would have to put in syslog.conf
 so that those marks go to a special file, say /var/log/syslog.heartbeat.log

Adding the following line to your syslog.conf will do:

mark.*  /var/log/syslog.heartbeat.log

To eliminate -- MARK -- lines in /var/log/syslog, change the following
line:

*.*;auth,authpriv,mark.none -/var/log/syslog
  ^

etc...

 Maybe that's not possible, though.  At least I couldn't find any hint.

Hope this helps.

-- 
Hong Huang


Re: dselect after upgrade does not work

1998-08-03 Thread H Huang
 [EMAIL PROTECTED] (Keith) writes:

  I read in the Debian User archive that you were or are having the
  same problem that I am having. I upgraded to Debian 2.0 and when I
  try and get the packages to upgrade it says the following for every
  file.
  
  getting: dists/stable/main/binary-i386/editors/nvi_1.79-5.deb
  (199078) dists/stable/main/binary-i386/editors/nvi_1.79-5.deb: No
  such file or directory.
  
The correct setting for dpkg-ftp should be:

$ftpsite='ftp.debian.org';
$ftpdir='/debian';
$distribs='dists/stable/main dists/stable/contrib dists/stable/non-free';


--  
Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null


Green monitor power_saver not working on XDM login screen!

1998-07-27 Thread H Huang
Hi, all.

I'm running XFree86 3.3. Here are the relevant entries in my
XF86Config:

[Section Device]
option  power_saver

[Section Screen]
BlankTime   5
StandbyTime 10
SuspendTime 15
OffTime 20

When I login to an user account, everything works as expected: the
screen blanks out on the 5th min and the power automatically turns off
on the 20th min.

However, if I leave it on the xdm login screen, things do not work out
entirely. The screen still blanks out on the 5th min as expected. But
the power never turns off.

Any idea what's wrong?

Thanks.

-- 
Hong Huang


--  
Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null


Re: good digital clock for x?

1998-07-23 Thread H Huang
the lone gunman wrote:
 Hello -- are there any deb packages that have a digital clock that I
 can swallow in an x module (specifically, FvwmButtons)?  I'd prefer
 one that does military time, and perhaps the date, too :)
 

I'd recommend asclock, which comes with afterstep. If you don't want
the whole afterstep package, you can go to afterstep homepage, d/l the
asclock tar.gz file and build it yourself.

Here is how my FvwmButtons looks like:

attachment: FrontPanel.jpg

-- 
Hong Huang


Re: Where is the Local Guide to Latex?

1997-11-14 Thread H Huang
Drake == Drake Diedrich [EMAIL PROTECTED] writes:

 Drake On Thu, 13 Nov 1997, Dale Scheetz wrote:
  I have finally decided to learn Latex, so I bought Leslie
  Lamport's book and started reading ... but the first suggestion
  has been difficult to deal with. He suggests that there is a Local
  Guide to Latex that I should read to find out how to use the local
  implimentation, like how to go from a .tex document to the
  printer.

 DrakeI've never seen such a file on any system with Latex.

I saw one on our campus' workstations. The file name is local.tex. But
obviously there's no file by this name in the Debian's tetex
distribution.

 DrakeThe impression I've gotten is that the sysadmin (you) has
 Draketo write it.

Yeah. This file is usually provided by the sysadmins, based on a
sample version by Leslie Lamport. Here is what the cover page of our
local guide looks like:

   Using LaTex on the Berkeley Software Warehouse

 Ethan Munson
   based on a sample verion by
Leslie Lamport


The document basically contains some very basic stuff, such as how to
process .tex, and create the .dvi and .ps, how to preview and print,
just as Joost said. Then there's some introduction to document styles,
fonts, etc. Obviously, it is not that important that you cannot miss
it to learn Latex. So don't worry about this if you can't find one.

-- 

__  ___  __
___  / / /__  / / /
__  /_/ /__  /_/ /
_  __  / _  __  /
/_/ /_/  /_/ /_/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: How to change E-mail address registered with Mailing Lists

1997-10-21 Thread H Huang
 yosiaki == yosiaki  [EMAIL PROTECTED] writes:

 yosiaki I want to change E-mail address registered with Debian
 yosiaki Mailing Lists. (ex. debian-private, debian-devel, etc.)  But
 yosiaki I don't know how to change it. Teach me, please.

Very simple: 

1) unsubscribe from all the lists
2) subscribe with new address

yosiaki Thanks

You're welcome

 yosiaki Yoshiaki Yanagihara

-- 

__  ___  __
___  / / /__  / / /
__  /_/ /__  /_/ /
_  __  / _  __  /
/_/ /_/  /_/ /_/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: XFree86 3.3 SVGA and S3 Virge/VX

1997-09-23 Thread H Huang

 Will have any different options/configuration things.  The problem
 Will has occured with Xfre86 3.3 and 3.3.1, so it seems to me to be
 Will an X problem and not a config problem.

Sure, it is the problem with X. But you can get around this by
disabling some features through configuring.

  RTFM. Something that worked with X 3.2 may not work with 3.3 or
  higher.
 Will I did, thanks.  I'm not (nor have I ever been) using 3.2, so
 Will there's no issue here.  I started with 3.3, and tried to move
 Will to 3.3.1 to see if the problem was fixed.

Good. Pay attention to the new XAA features. According to my
experience, some of these features do not work properly.

Since I don't have a S3 Virge card, that's all I can help. Good luck!

-- 

__  ___  __
___  / / /__  / / /
__  /_/ /__  /_/ /
_  __  / _  __  /
/_/ /_/  /_/ /_/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: XFree86 3.3 SVGA and S3 Virge/VX

1997-09-22 Thread H Huang

 Will Hi.  I'm using the XFree86 3.3 SVGA server with my diamond
 Will 3D3000 video card with 4 megs of VRAM, and I can only startx
 Will once.  That is, if I exit X, and type startx again on the
 Will console, the screen goes black and the machine hangs.
 Will CTRL-ALT-BACKSPACE and the Vulcan Nerve Pinch have no effect
 Will whatsoever and my only recourse is to press the reboot button
 Will on the front of the machine.

 Will Today I downloaded the XF86_SVGA 3.3.1 binary from
 Will ftp.xfree86.org and installed it; the behavior is the same.
 Will I've found, however, that if I keep *both* servers around and
 Will switch back and forth between them (by renaming one to
 Will something else and naming the one in use XF86_SVGA), I can
 Will startx as many times as I please.

 Will Any clues?

Why no reconfigure X?

RTFM. Something that worked with X 3.2 may not work with 3.3 or higher.

-- 

__  ___  __
___  / / /__  / / /
__  /_/ /__  /_/ /
_  __  / _  __  /
/_/ /_/  /_/ /_/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Problem with building of debian packages

1997-09-19 Thread H Huang
 Wojciech == Wojciech Zabolotny [EMAIL PROTECTED] writes:

 Wojciech Error occuring in dpkg-gencontrol:
 Wojciech --
 Wojciech dpkg-gencontrol -pmgetty dpkg-gencontrol: failure: chown
 Wojciech new files list file: Illegal seek make: *** [binary-arch]
 Wojciech Error 29
 Wojciech ---

As far as I remember, this is a bug with dpkg 1.4.0.8 fixed after
1.4.0.9. The problem is that the dpkg in hamm (1.4.0.19) right now is
compiled against glibc2.  If you don't want the glibc2 stuff, you'll
have find a dpkg copy satisfying  1.4.0.8 but  1.4.0.19. And I don't
know where you can find one.

Good luck.

-- 

__  ___  __
___  / / /__  / / /
__  /_/ /__  /_/ /
_  __  / _  __  /
/_/ /_/  /_/ /_/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: www.linuxhq.com

1997-09-10 Thread H Huang

Unfortunately, the site is gone. The following is the story I got from
a Deja News search:

--- begin --

LinuxHQ has been my little pet project for over a year, and it has
been a very enjoyable venture.  Recently, the company I work for
bought another company in California (I'm in Texas).  I now spend
about 75% of my time traveling and it is simply impossible for me to
keep the site updated with the rapid changes that take place with
Linux development.

I tried for a few weeks to pull it off, but between long distance
phone calls into my system and not having any access, it simply didn't
work. 

I've received several emails (hundreds) asking why the site was so out
of date, many were asking politely but most were more angry that I
hadn't kept up the system.  

I've tried many times to recruit some help, but it has never panned
out. So, In light of the fact that I am no longer in a position to
maintain the site and it was also costing me a little over $350 per
month to maintain the connection and ISDN line, I decided it was time
to shut it down.  If I couldn't do it right, I didn't see any reason
in doing it at all.

I'm leaving again for two more weeks later today and won't have access
to email for that time.  I hope that folks will understand why it had
to come to an end and hopefully someday I'll be able to provide a
little bit back to the Linux community again.

BTW, the domain linuxhq.com will be removed as well, if someone else
wants to try and pickup where I left off, the domain should be
available in a few days thru internic.

Thank you for your query, I hope I've answered your questions to your
satisfaction.  I'll miss the interaction I had with all the Linux
users and developers, I have certainly gained much from the experience
and hope that I've been able to help others along the way.

Good Luck!

--
Mark Evans
[EMAIL PROTECTED]

 end --



--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Problems with bash 2.01

1997-08-26 Thread H Huang

 Also is there going to be a stable and safe way to upgrade to bash 2.01
 (by way
 of a deb package) any time soon?  Of is there already and I don't know
 about it?
  I would like to install as few programs from unstable as possible.

I've built a dozen libc5 version deb's including bash 2.01 and ncurses
3.4.  They've been working great for me so far, and might be useful for
someone who are not ready for glibc. The problem is I don't have a place
to upload to. If someone has a ftp site and is willing to hold these
packages, I'd be glad to upload. Let me know via email, since I'm not on
this list.

Cheers.

Hong

(P.S. XFree 3.3.1 is out for a while. It's basically a bug-fixed release. 
AFAIK, the debian maitainer is busy migrating the packages to glibc,
therefore it's very unlikely there will be a libc5 version going into the
bo tree. I'm not going to upgrade to hamm before it gets more stable since
I've something important going on on my debian box. However, I don't wait
too long for X 3.3.1 either, because it claimed a bug related to my video
card driver had been fixed. So I intended to build a libc5 version of X
3.3.1. But the problem is that I don't have enough space to do so (the
largest package I can build is XEmacs). To build X, I believe, I at least
need 500 mb disk space. Again, if someone out there is interested in this
and willing to provide me a temporary account on his/her debian libc5 box
for the weekend, I'm willing to build the packages and make them available
to all interested parties. Thanks.)



--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


How to change the default X visual?

1997-08-15 Thread H Huang

I've only got a grey scale monitor, and would like to change the default X
visual of my Debian box to GrayScale. How do I do that? 

Thanks for your help.

(p.s. please cc me, since I'm currently not on this list)

__  ___  __
___  / / /__  / / /
__  /_/ /__  /_/ /
_  __  / _  __  /
/_/ /_/  /_/ /_/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PPP with multiple numbers and getting modem status

1997-08-11 Thread H Huang
On Sun, 10 Aug 1997, Adrian Johnson wrote:

 How should I configure PPP to dial each number in a
 list until it connects.

There's a script called redialer that comes with the ppp source
package (not included in the ppp debian binary package). it's a
shell script that repeatedly runs chat to dial a number until it
connects. You can easily modify it to cycle through a list of 
numbers.

Good lucks
-- 

__  ___  __
___  / / /__  / / /
__  /_/ /__  /_/ /
_  __  / _  __  /
/_/ /_/  /_/ /_/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . Trouble? 
e-mail to [EMAIL PROTECTED] .


Weird PPP problem

1997-08-05 Thread H Huang

I've been able to established ppp connection using the following two
methods:

(1)
pppd connect chat -v blah blah blah blah

(2)
pppd connect chat -v -f my_chat_script_file

(All the ppp options are specified in ~/.ppprc)

However I was unable to set up the connection using:

(3)
pppd connect chat.sh

where chat.sh is a shell script that runs chat to make connection:

#!/bin/sh
# my chat.sh file

/usr/sbin/chat -v blah blah blah blah


The expect-send pairs in this file are exactly like those in the chat
scripts in (1) and (2).  I wanted to use this method because there are a
dozen phone numbers I can dial into my ISP, and I want to pass these phone
numbers as argument to chat.sh, so that I don't have to create multiple
chat scripts which are virtually the same except the phone number.

This method is detailed in PPP-HOWTO. The ppp source package also includes
ppp-on, ppp-on-dialer scripts that are based on this method. However I
notice these sample scripts are not included in the debian ppp bianary
package, which makes me wonder if some features have been disable in the
debian distributions of ppp or bash due to some reasons (secuity?). Maybe
the debian maintainers can answer this.

Each time I typed:
 
   pppd connect chat.sh

the process failed very quickly. The whole ppp.log is as follow:

Aug  4 20:22:25 huifang pppd[1644]: pppd 2.2.0 started by hhuang, uid 1000
Aug  4 20:22:26 huifang pppd[1644]: Connect script failed
Aug  4 20:22:26 huifang pppd[1644]: Exit.

The expect-send pairs shouldn't have any problem, since I've been able to
connect using methods (1) and (2). And I've checked chat.sh a thousand
times, the shell script should be free of syntax errors.

Any help appreciated.


__  ___  __
___  / / /__  / / /
__  /_/ /__  /_/ /
_  __  / _  __  /
/_/ /_/  /_/ /_/


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . Trouble? 
e-mail to [EMAIL PROTECTED] .


/usr/bin/which: unset: `run-mailcap': not a valid identifier

1997-07-25 Thread H Huang

Got this error when typed:

   $ which run-mailcap

although it did find out run-mailcap is in /usr/bin.

bash:   version 2.01
debianutils : version 1.5

Any idea what's wrong?

Thanks

HH


---


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: XTerm on XFree86 3.3-3 trouble

1997-07-20 Thread H Huang
On Sun, 20 Jul 1997, Riku Saikkonen wrote:

 (I'm Cc:ing this to debian-devel in an effort to get it fixed. :))
 
 [EMAIL PROTECTED] wrote to debian-user:
 When I start mc in a xterm I have trouble with the F-Keys:
 
 F1 gives P
 F2 gives Q 
 F3 gives R
 F4 gives S
 
 F5 - F10 work just fine.
 
 This is an old bug in the terminfo entry for xterm. It and related other
 bugs have been reported as bugs #2158, #2291, #3162, and #3973 in the Debian
 bug report archive (URL:http://www.debian.org/Bugs/).
 
 The current situation (xbase 3.3-3, ncurses-base 1.9.9e-1) is as follows:
  - in a cat in an xterm, F1 to F4 give ^[OP, ^[OQ, ^[OR, and ^[OS,
respectively
  - infocmp xterm says, among other things:
 kf1=\E[11~, kf2=\E[12~, kf3=\E[13~, kf4=\E[14~
 One of them is clearly wrong. But which one?
 
 A strange thing is that bug report #3162 (against xbase 3.1.2-9) reports the
 bug being the other way around -- infocmp xterm shows kf1=\EOP, but cat
 gives ^[[11~. It appears that there has been some circular fixing going on.
 
 So, Debian developers: Can we decide which one is correct, xterm or the
 terminfo entry, and adjust the other accordingly?
 
 For Debian users, the easiest thing to do is wait for the bug to get fixed.
 :) As a sort of temporary workaround, you can try setting TERM=vt220; that
 should fix the function keys, but may cause other similar keyboard or
 display problems.
 

Installing ncurses-base, ncurses-term (1.9.9g-2) from master's Incoming
should fix this problem.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: emacsclient

1997-07-17 Thread H Huang

On Wed, 16 Jul 1997, Joey Hess wrote:

 Hi, emacs semi-newbie here..
 
 I want to use emacsclient, so I added this to my .emacs file:
 
 (load-library server)
 (server-start)
 

Try using gnuserv/gnuclient. Add the following line to .emacs:

(gnuserv-start)


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Linux Journal Reader's Choice Awards

1997-07-17 Thread H Huang
On Wed, 16 Jul 1997, Joey Hess wrote:

 Hamish Moffatt wrote:
   http://www.ssc.com/lj/readchoice.html .
  Unfortunate that it seems to be very commercially-oriented.
  Under X servers, Accelerated X, then Metro X, then XFree was third,
  while I suspect XFree would be the most popular of the three by far.
  Similarly all the backup tools listed are commercial AFAIK.
 
 Yes, but under distributions, debian is first on the list, so it can't be
 too commercially-oriented. :-)
 
 I used other too many times, though.
 

I guess it's in alphabetical order.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: XTerm on XFree86 3.3-3 trouble

1997-07-14 Thread H Huang
On 13 Jul 1997, Paul Seelig wrote:

 [EMAIL PROTECTED] writes:
 
  I have a strange XTerm behaviour after upgrading to XFree 3.3-3.
  
  When I start mc in a xterm I have trouble with the F-Keys:
  
  F1 gives P
  F2 gives Q 
  F3 gives R 
  F4 gives S
  
  F5 - F10 work just fine.
  
  When I start mc in a rxvt, all F-Keys work just fine.
  
  Has someone else encountered this problem ?
  
 So i'm not alone with this! :-( The only difference is that F1 does
 nothing at all, that F2 invokes the help screen which should have been
 invoked by the former function key, etc.  The 'Learn keys' dialog
 doesn't change this behaviour at all. :-(
 
 Please submit a bug report as soon as possible.
 
 Is there any other means than switching back to XFree-3.2 to resolve
 this problem?
 Cheers, P. *8^)

This problem is addressed in file README.xterm that came with the mc
source distribution.

I built my own mc debian package. README.xterm is located in
/usr/local/lib/mc/term/. I'm not sure if the official mc debian package
includes this file.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: XF86 3.3-3

1997-07-09 Thread H Huang

On Tue, 8 Jul 1997, Christopher Jason Morrone wrote:

 
 I've seen other messages about XF86 3.3 not working.  I am also
 experiencing problems.  I upgraded from 3.2 using the 3.3-3 packages, and
 now when I try to startx, the screen flickers and goes black, and the
 keyboard locks up.  Nothing else.
 
 Unfortunately, because of the screen blanking, I really have no idea whats
 going wrong.  Someone else I know is having the exact same problem, I'm
 using the S3 server(#9 motion 771 card), and he's using standard SVGA for
 his Trident I believe.
 
 In any case, the XF86 3.3 packages are definitely broken.  I'd fill out a
 bug report, but unfortunately, I can't be any more specific than that
 right now.
 
 Do the package maintainers know that something is wrong?  I'd be happy to
 supply any info that I can.
 
  
I think the problem has something to do with certain newly added features of 
XFree86-3.3, some of which actually are still in beta test stage.

I've got a clgd 5428 card. Although X still works after the upgrade, the 
showdow portions of some buttons, scrollbars and arrows are not drawing well.
The cause is that 3.3 adds some beta acceleration features in the Cirrus 
driver, which does not work well with the 5428 card. I have to disable the 
acceleration to make it work like it did before.

Therefore, the correct procedure to upgrade X (any version) is:

1) stop X (xdm,startx)
2) upgrade the package
3) read docs
4) configure X.



--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: XF86 3.3-3

1997-07-09 Thread H Huang

On Wed, 9 Jul 1997, Christian Kauhaus wrote:

 Hi!
 
 On 8-Jul-97, H Huang wrote:
  I've got a clgd 5428 card. Although X still works after the upgrade, the 
  showdow portions of some buttons, scrollbars and arrows are not drawing 
  well.
 
 I've experienced the same effects as well with a 5426 card. Maybe turning
 acceleration off will solve the problem, I'll try it out. But in my opinion
 the package's stadard configuration should provide a *stable* setup that
 works in most cases. The rest can go into debian/unstable. So there is a
 need to fix the package. (Has someone already filled out a bug report?)
 
 Greetings
   Christian
 

Are you asking the debian maintainer to provide a *stable* XF86Config
setup file for *every* X server? There's no way he/she could do that. 
However, there's one area the debian package can improve. The current
preinst and postinst scripts appear to be doing the following things: 

1) stop xdm
2) unpack and setup the packages
3) restart xdm

Step 3) obviously assumes the old XF86Config works for the new X version,
which is not always the case. Therefore, instead of restarting xdm, the
postinst should echo a message that warns the user the old configuration
may not work and ask them to read the docs and reconfigure X. 

BTW, I've filed a bug report to www.xfree86.org against the Cirrus driver.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . Trouble? 
e-mail to [EMAIL PROTECTED] .


Re: app pause

1997-07-08 Thread H Huang


On Mon, 7 Jul 1997, Matthew C. Thompson wrote:

 hi, y'all,
 
 occasionally when i start up pine or emacs, the system pauses for 10 to 15
 seconds before the apps fully appear. anyone else experiencing this?
 this happens even when i have few windows open, and nothing going on, like
 compiling or printing.
 
 btw, i have a mmx166 with 32mb edo, so system perf. isn't the problem.
 
 matty
 

I had a similar problem a while ago, which was caused by the hard drive
irq timeout. I fixed this by using hdparm to disable the auto power-saving
function of my hard drive (Seagate), and set the standby timeout = 1 hr.

I suggest you fire up xconsole and see what happens during the system 
pause.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .