9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Jeremy Fitzhardinge jeremy@suede.sw.oz.au
Subject: Getting sbcd working, and a bug in tar
Date: Mon, 28 Aug 1995 17:52:36 -0400	[thread overview]
Message-ID: <19950828215236.nS9VRg8TC4KbOHSQnPBGweEIG2YtTY0KQvrGMgVVHBA@z> (raw)

Hi all,

I got the CD on Friday, so I spent the weekend getting it onto my home box.

I found that my "Soundblaster compatible" Laserwave CD controller is not
really compatible enough.  I can bind #m to /dev, but when I try to read
from /dev/cd (either manually or with 9660srv) it hangs forever with the CD
spinning, in an uninterruptable state.  If I eject the cd it terminates
with an error.  Has anyone had success with using SB-ish CD controllers?
 Otherwise I'll look at the Linux code and see how it handles my controller
(it works well under Linux).

I also found while transferring stuff from the CD to the P9 installation
via Linux that P9's tar miscalculates directory checksums when there are
UTF characters in filenames, making it incompatible with both tars I tried
(GNU and pax).  The fix is simple (this is from memory since I don't have
the source here) - in /sys/src/cmd/tar.c, in the function where it
calculates the checksum, it has the line:
	i += *cp++;
where cp is a signed char *.  I changed it to
	i += 0xff & *cp++;

	J






                 reply	other threads:[~1995-08-28 21:52 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=19950828215236.nS9VRg8TC4KbOHSQnPBGweEIG2YtTY0KQvrGMgVVHBA@z \
    --to=9fans@9fans.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).