Linux-Hardware Digest #14, Volume #10 Tue, 13 Apr 99 13:13:28 EDT
Contents:
Re: All the current OSes are idiotic (was Re: Is Windows for idiots?) (westprog)
HDS viewstation x-terminal/bootp? ([EMAIL PROTECTED])
Linux on Compaq Proliant 3000 (forresm)
Re: All the current OSes are idiotic (was Re: Is Windows for idiots?) (westprog)
MB that can boot w/o gfx card? ("stephen")
psaux device or resource busy ("Michele Bergermann (SHK Berns)")
Re: coredump with free() in C language (Rick Dearman)
Re: [Fwd: Source Code To Windows 98 (programmer humor) (fwd)] ("Martijn Lievaart")
Re: How fast is your HD? (Sergio Brandano)
Re: sndconfig - PnP problems (Thomas Keats)
Re: coredump with free() in C language (Eric Wurbel)
Linux GPIB interface (Stephen Gibson)
TNT change to 16bit color (Stanley Chan)
Segate DAT and linux 2.2.x (Jimmy Sieben)
----------------------------------------------------------------------------
From: westprog <[EMAIL PROTECTED]>
Crossposted-To:
comp.lang.java.advocacy,comp.os.linux.advocacy,comp.os.ms-windows.advocacy
Subject: Re: All the current OSes are idiotic (was Re: Is Windows for idiots?)
Date: Tue, 13 Apr 1999 12:13:31 GMT
In article <[EMAIL PROTECTED]>,
Craig Kelley <[EMAIL PROTECTED]> wrote:
> westprog <[EMAIL PROTECTED]> writes:
>
> > In fact, the shell does very little for applications. It doesn't, for
> > example
> > provide what VMS does - a library to parse command switches. Unix
> > applications have to do this themselves.
>
> Bullshit.
>
> man getopt
>
> I use it all the time.
My definition of getopt() has it operating in the context of the command to
parse the **argv - but I admit that my phrasing was misleading. My point was
that the shell passes the command string with minimal changes.
> > If an application drops into interactive mode, it is left to itself
> > to process keystrokes - ^E will not move you to the end of the line,
> > and backspace won't delete the previous character, for example.
>
> One could argue that this is a good thing: What if ^E is an important
> token to the program?
That is the advantage of the library approach - if an application needs a
token, it can get it, by overriding default behaviour. N.b. '*' is as likely
a token as '^E'.
> Still, all GUI apps have these kind of bindings, and they are interactive
> by definition. Most interactive shell programs are using ncurses, or an
> equivalent library which DO provide these bindings (and will switch from
> vi-like to emacs-like depending on what the user likes).
I would like to see something seamless, so that if you change the default in
the 'shell' (I am using the Unix term here) it will automatically change the
_default_ behaviour of the application. The application will always have the
right to override any defaults for it's own needs.
> > > : I'll wait and see. The new Apple OS seems to be finally here in the real
> > > : world. If it has managed to dismember Unix sufficiently it might be
> > > : interesting.
> > >
> > > Actually if it manages to *keep* enough of Unix it might be
> > > interesting.
> >
> > It isn't concievable that a non-Unix OS could be even interesting?
>
> From Apple? Since Woz left?
Hmmm. Good point.
> No.
>
> (but I'd love to be proven wrong)
J.
============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
------------------------------
From: [EMAIL PROTECTED]
Subject: HDS viewstation x-terminal/bootp?
Date: Mon, 12 Apr 1999 21:13:41 GMT
I recently acquired a HDS ViewStation X-terminal (thin-client) from a pile of
stuff that was going to be thrown out. I'm trying to use it as a X-server to
run stuff off my Linux box, but I'm not sure how. When I boot it up it sends
bootp requests (I guess they're broadcast on the network mask spec'd on the
x-terminal). It also tries to TFTP, FTP, or NFS connect to a remote machine
(also specified in the x-terminal OS or bios or whatever) to get config
files. However, at this point, it seems to be looking for proprietary
software that is downloaded to the local PROM's or something.
So, I have a couple questions:
1. What services does bootp provide? Where can I get the source code
to compile and use the bootp daemon on my Linux machine?
2. Has anyone had experience with this type of X-terminal or setting
up any X-terminal?
3. How does XDM fit into all of this?
Please let me know if anyone has answers, or if there is a site that has help
on this stuff. I've been looking all over, but can't seem to find anything
too specific.
Thanks,
Saksiri
============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
------------------------------
From: forresm <[EMAIL PROTECTED]>
Subject: Linux on Compaq Proliant 3000
Date: Tue, 13 Apr 1999 12:32:31 -0400
Has anyone had any succesfull experiences running Linux on Compaq
Proliant3000 machines?
Specificaly with dual PII 300Mhz, 512MB ram, Smart 2dh raid controller?
As usual, compaq was less than usefull when asking them about their
"Linux ready" systems. From what I've been able to find in supported
Hardware lists there haven't been any mentions about any of Compaq's
smart raid controllers.
Please reply by e-mail as well as posting.
Matt
[EMAIL PROTECTED]
------------------------------
From: westprog <[EMAIL PROTECTED]>
Crossposted-To:
comp.lang.java.advocacy,comp.os.linux.advocacy,comp.os.ms-windows.advocacy
Subject: Re: All the current OSes are idiotic (was Re: Is Windows for idiots?)
Date: Tue, 13 Apr 1999 15:41:52 GMT
In article <7evbop$20r$[EMAIL PROTECTED]>,
Chris Welch <[EMAIL PROTECTED]> wrote:
> In comp.os.ms-windows.advocacy westprog <[EMAIL PROTECTED]> wrote:
>
> > One of the first things we learn when we are being taught to read is that
> > Bob, BOB, and bob are the same word. This is quite a major conceptual
> > breakthrough, and it takes a lot of hard work. There are very good reasons
> > for this, based on hundreds of years of experience. For example "My car is
> > nice. I love my car." We don't even have to think about whether "My" and
> > "my" are equivalent, and that the capital "M" is there for readability.
> > It is only in the strange world of Unix that we have to unlearn this.
> If I were browsing some case insensitive code (like Pascal), my first
> reaction to seeing "MyFileName" and then "myfilename" is that they are
> different. This is before I learned anything about Unix or C. Why? Because
> they look different. Using two (or more) different looking names
> for the same variable is sloppy.
My first reaction would be that the programmer had been sloppy about writing
the name of one variable two different ways. In C, the programmer would have
gotten into the habit of writing myfilename, leaving his shift key for
#define's.
> > In other words, the Unix OS is too lazy to do a one-line conversion
> > that every other OS I know does as a matter of routine. It forces the
> > user to conform to its method of coding characters.
> It's not laziness, many see case sensitivity as a good thing. Like for
> passwords.
Why should case-sensitive passwords mean that file names should be case
sensitive? (I don't like case-sensitive passwords, incidentally. If you want
a safe password, add more characters, and randomise them. Getting a
case-sensitive password given to you over the phone is a nightmare that I
have experienced. The workaround tends to be to write the password down. It
is much easier to remember "mynoncasesensitive33pass9word" than
"mYpAsswOrD".)
> > Well duh - Windows short file names are crap. We all knew that. Do you
> > really need the ability to have two files, one called
> > MyfirstProgram.java and another called MyFirstProgram.java?
> If you want.
I can't imagine any circumstances in which I could possibly want such a
thing. I can, I'm afraid, imagine circumstances where I would accidentally
create two such files, and then perform operations or edits on the wrong one,
and end up totally confused. That is why in practice most people do what has
been recommended earlier on this thread - use exclusively lowercase (and
hence less readable) names, reserving uppercase for special purpose files and
commands, if at all.
> You should tell the computer what to do and how to do it, not
> the other way around.
What I want is to have my file appear as MyFirstProgram.java, because that is
more readable. I don't want to type it that way because it is extra work - I
want to enter "myfi*" in a dialog box, or "myfi[TAB]" and have the name
completed. I cannot do this in Unix - it will not recognise any connection
between MyFileName and myfilename. It would be dangerous if the shell did any
such thing, as the fundamental error is in the file system. N.b. this is a
case of the computer telling me what to do and how to do it. A
case-preserving system allows me to name a file anything I want, and then
cease to worry about what exactly I called it.
> Great spirits have always encountered violent opposition from
> mediocre minds - Albert Einstein
Tell me about it.
J.
============= Posted via Deja News, The Discussion Network ============
http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
------------------------------
From: "stephen" <[EMAIL PROTECTED]>
Subject: MB that can boot w/o gfx card?
Date: Mon, 12 Apr 1999 22:59:20 -0700
Hello:
Are there any motherboards that can boot w/o
a graphics card?
I am asking this for a server config with a custom
ultra slim case that has no room for the graphics
card.
Thanks
Stephen
Slackware 3.6
------------------------------
From: "Michele Bergermann (SHK Berns)" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.questions
Subject: psaux device or resource busy
Date: Tue, 13 Apr 1999 14:29:43 +0200
==============F674116F16263EA54EB7CFB0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Hello,
I have problems loading the psaux module.
I always get device or resource busy.
Any ideas?
Michele Bergermann
p.s.: There is no device at IRQ 12 !!!
--
#####
#######
@ ##O#O##
###### @@# #VVVVV#
## # ## VVV ##
## @@@ ### #### ### ### ##### ###### # ##
## @ @# ### ## ## ## ### ## # ##
## @ @# ## ## ## ## ### # ###
## @@# ## ## ## ## ### QQ# ##Q
## # @@# ## ## ## ## ## ## QQQQQQ# #QQQQQQ
## ## @@# # ## ## ### ### ## ## QQQQQQQ# #QQQQQQQ
############ ### #### #### #### ### ##### QQQQQ#######QQQQQ
==============F674116F16263EA54EB7CFB0
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Hello,
<p>I have problems loading the psaux module.
<br>I always get device or resource busy.
<p>Any ideas?
<p>Michele Bergermann
<p>p.s.: There is no device at IRQ 12 !!!
<pre>--
#####
#######
@
##O#O##
######
@@#
#VVVVV#
##
#
## VVV ##
## @@@
### #### ### ### #####
###### #
##
## @ @#
### ## ## ##
### ##
#
##
## @ @#
## ## ##
## ###
# ###
##
@@# ## ## ##
## ###
QQ# ##Q
## # @@#
## ## ##
## ## ##
QQQQQQ# #QQQQQQ
## ## @@# #
## ## ### ###
## ## QQQQQQQ# #QQQQQQQ
############ ###
#### #### #### ### ##### QQQQQ#######QQQQQ</pre>
</html>
==============F674116F16263EA54EB7CFB0==
------------------------------
From: Rick Dearman <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux,comp.os.linux.misc,fr.comp.lang.c
Subject: Re: coredump with free() in C language
Date: Tue, 13 Apr 1999 17:31:30 +0000
Fr�d�ric Hoerni wrote:
> hello,
> I am using a Toshiba Tecra 750 CDT laptop with Linux RedHat 5.2.
> I get a COREDUMP after free() (not everytime).
> Is it because of the linux version, or the laptop ?
>
> Thanks
>
> Olivier Deramat ([EMAIL PROTECTED])
More likly your program, try using gdb on the core dump and compile with
the -g option.
------------------------------
From: "Martijn Lievaart" <[EMAIL PROTECTED]>
Crossposted-To:
comp.lang.c,comp.os.linux.setup,comp.os.linux,comp.os.linux.x,alt.os.linux,comp.lang.c++
Subject: Re: [Fwd: Source Code To Windows 98 (programmer humor) (fwd)]
Date: 13 Apr 1999 06:55:25 GMT
James Goldman wrote in message
<[EMAIL PROTECTED]>...
>Martijn Lievaart wrote:
>>
>> As this was also about MSDos originally, let me point out that there
>> are better shells than command.com, that do allow this syntax [1].
>
>Funny, but the idea of finding a replacement for command.com itself
>never occurred to me <sound of me slapping my forehead>.
>
<unscrupulous plug>
http://www.jpsoft.com
</unscrupulous plug>
HTH
Martijn
--
My reply-to address is intentionally set to /dev/null
reply to mlievaart at orion in nl
------------------------------
From: Sergio Brandano <[EMAIL PROTECTED]>
Subject: Re: How fast is your HD?
Date: 13 Apr 1999 12:46:17 GMT
HD-Speed
Sergio Brandano, [EMAIL PROTECTED]
v, 13 April 1999
This test gives some informations about hdparm's results on popular
Hard Disk drives and removable media, compiled from various sources
such as news and e-mail. This text is retrievable from the
comp.os.linux.hardware newsgroup. New entries for unlisted HDs, as
well as for corrections, will be highly appreciated. They can be
send per e-mail to the author.
______________________________________________________________________
Table of Contents
1. How to determine what the current hdparm rating is
2. Compilation of ratings
2.1 IDE, EIDE, UDMA
2.2 SCSI 2
2.3 SCSI UW
2.4 SCSI U2W
2.5 Unknown HD
2.6 DVD-RAM
2.7 Jazz
2.8 Zip
______________________________________________________________________
1. How to determine what the current hdparm rating is
Just trigger
>hdparm -gt /dev/your-device
from root.
It seems that if the -T flag is also specified, then a correction
factor based on the outcome of -T is incorporated into the result
reported for the -t operation. So you may want to trigger -gtT,
instead of -gt, for a slightly more accurate test.
The test is triggered on the device, not on single partitions.
______________________________________________________________________
2. Compilation of ratings
2.1 IDE, EIDE, UDMA
Model Timing
buffered disk reads Reporter
IBM-DTTA-351010 32 MB in 3.02
seconds =10.60 MB/sec [EMAIL PROTECTED]
Maxtor DM 4320, 17.2G 14.87 MB/s
[EMAIL PROTECTED]
QUANTUM FIREBALL EX6.4A, 6149MB w/418kB Cache, CHS=784/255/63, UDMA 32 MB in 2.55
seconds =12.55 MB/sec [EMAIL PROTECTED]
QUANTUM FIREBALL SE6.4A 32 MB in 2.87
seconds =11.15 MB/sec [EMAIL PROTECTED]
QUANTUM FIREBALL ST6.4A, FwRev=A0F.0900 32 MB in 3.45
seconds = 9.28 MB/sec [EMAIL PROTECTED]
2.2 SCSI-2
Model Timing
buffered disk reads Reporter
SEAGATE ST15230N, Rev: 0638 32 MB in 8.76
seconds = 3.65 MB/sec [EMAIL PROTECTED]
WDIGTL, ENTERPRISE, Rev: 1.91 32 MB in 6.47
seconds = 4.95 MB/sec [EMAIL PROTECTED]
2.3 SCSI UW
Model Timing
buffered disk reads Reporter
7200 rpm 9 gig IBM UW 32 MB in 2.27
seconds =14.10 MB/sec [EMAIL PROTECTED]
10k rpm 9 gig IBM UW 32 MB in 1.66
seconds =19.28 MB/sec [EMAIL PROTECTED]
Seagate 2gig UW 16 MB in 0.49
seconds =32.65 MB/sec [EMAIL PROTECTED]
2.4 SCSI Ultra2(W)
Model Timing
buffered disk reads Reporter
IBM 9ES Ultrastar 4.5gig Ultra2(Wide?) SCSI 32 MB in 2.53
seconds =12.65 MB/sec [EMAIL PROTECTED]
Quantum Viking II Ultra2 LVD harddrive 32 MB in 2.47
seconds =12.96 MB/sec [EMAIL PROTECTED]
2.5 Unknown HD
Model Timing
buffered disk reads Reporter
WDC AC23200L, 3098MB w/256kB Cache, CHS=787/128/63 32 MB in 6.43
seconds = 4.98 MB/sec [EMAIL PROTECTED]
WDC AC36400L, 6149MB w/256kB Cache, CHS=13328/15/63 32 MB in 6.41
seconds = 4.99 MB/sec [EMAIL PROTECTED]
2.6 DVD-RAM
Model Timing
buffered disk reads Reporter
MATSHITA Model: PD-2 LF-D100, Rev: A109 (Panasonic LF-D101) 32 MB in 69.42
seconds = 0.46 MB/sec [EMAIL PROTECTED]
2.7 Jazz
Model Timing
buffered disk reads Reporter
jaz 1GB, Rev: J.83 (SCSI-2) 32 MB in 5.47
seconds = 5.85 MB/sec Anand Rangarajan <[EMAIL PROTECTED]>
2.8 Zip
Model Timing
buffered disk reads Reporter
IOMEGA Model: ZIP 100, Rev: J.03 (SCSI-2) 32 MB in 37.70
seconds = 0.85 MB/sec Anand Rangarajan <[EMAIL PROTECTED]>
______________________________________________________________________
------------------------------
From: Thomas Keats <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup,linux.redhat.install,linux.dev.sound
Subject: Re: sndconfig - PnP problems
Date: Tue, 13 Apr 1999 03:20:42 -0400
Reply-To: [EMAIL PROTECTED]
Could it be somehting with RedHat 5.2??
I ran a rh5.2 AMD K6-233 for months with a AWE64 working fine. suddenly, sound
stops working, sndconfig fails to correct the problem. on Bootup i get messages
right after "starting PnP devices, and undefined dependancies and all. sb.o etc...
sndconfig returns modprobe returns the following errors and then gives nothing..
ideas??
------------------------------
From: Eric Wurbel <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux,comp.os.linux.misc,fr.comp.lang.c
Subject: Re: coredump with free() in C language
Date: Tue, 13 Apr 1999 15:04:38 +0200
Fr�d�ric Hoerni wrote:
>
> hello,
> I am using a Toshiba Tecra 750 CDT laptop with Linux RedHat 5.2.
> I get a COREDUMP after free() (not everytime).
> Is it because of the linux version, or the laptop ?
>
> Thanks
>
> Olivier Deramat ([EMAIL PROTECTED])
MMmhhhh. It seems like your program has trashed the memory managed by
malloc (the heap). Try to use a memory checker to verify this
Eric
--
le dernier h�bergeur gratuit (sans pub obligatoire...) frapp� ==>
http://altern.org
Eric Wurbel
------------------------------
Date: Tue, 13 Apr 1999 17:17:34 +1000
From: Stephen Gibson <[EMAIL PROTECTED]>
Subject: Linux GPIB interface
A few questions concerning linux GPIB interface:
ftp://ftp.llp.fu-berlin.de/pub/linux/LINUX-LAB/IEEE488/
(1) Has anyone been able to compile
linux-gpib-2.05-alpha
under kernel 2.2.x or 2.0.x ?
(2) linux-gpib-2.04 under kernel 2.0.36
Has anyone managed to get this interface running with either
of the following cards
(a) HP82335 - loads the gpib0 module and then freezes the machine
or (b) Quatech MXI-100 - gives a bus error
Any assistance/suggestions would be appreciated.
Steve.
--
Stephen T. Gibson |
UV Physics Unit |
Research School of Physical | Email : [EMAIL PROTECTED]
Sciences and Engineering | URL :
http://rsphysse.anu.edu.au/AMPL/uvphys
Australian National University | Phone : +61 2 6249 2296
Canberra ACT 0200, Australia | FAX : +61 2 6249 0390
------------------------------
From: Stanley Chan <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup
Subject: TNT change to 16bit color
Date: Tue, 13 Apr 1999 17:21:47 +1000
Hello!
I am using Diamond Vipper 550 TNT. I can't change the color to 16 bit
and only show 8bit.
How to fix it?
Thanks in advance!
Stanley Chan
------------------------------
From: Jimmy Sieben <[EMAIL PROTECTED]>
Subject: Segate DAT and linux 2.2.x
Date: Tue, 13 Apr 1999 07:21:27 GMT
I run a Redhat 5.2 file archive using kernel 2.2.4, and am
looking into purchasing a Seagate Scorpion 24 (model # STD224000N-SB)
DAT for backups. Has anyone had confirmed good/bad experiences with the
drive in a similar set up to mine?
For the curious, a URL with specs on the drive is
http://www.seagate.com/cda/tape/mark/detail/0,1251,118,00.shtml
Thanks for any help.
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: [EMAIL PROTECTED]
You can send mail to the entire list (and comp.os.linux.hardware) via:
Internet: [EMAIL PROTECTED]
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Hardware Digest
******************************