Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!udel!mmdf From: TEMARI%ECAMV1.dnet.ge.com@vm1.nodak.edu Newsgroups: comp.os.minix Subject: RE: questions: pc 1.5 stty, 1.2M copy, /dev/dosC Message-ID: <32710@nigel.ee.udel.edu> Date: 7 Oct 90 23:46:12 GMT Sender: mmdf@ee.udel.edu Lines: 36 > 1) how do I set up a serial port to allow a login from a terminal? Drew, you need to edit the /etc/ttys file which contains a line for each tty device. Each line contains 3 bytes. The first byte needs to be 1 or 2 to enable the init process to create a login on the device. The second byte is the baud rate(init.c will tell you what letter to use). The third byte is the tty number. For more information on this look at /usr/src/tools/init.c > 2) when trying to read drive C: with dosread, I get the error > "cannot open /dev/dosC". I have a link to /dev/dosC as /dev/hd1. If you did a ln /dev/hd1 /dev/dosC and your first partition contains a dos file systems then you may not have access to /dev/dosC. Check and make sure you have access to /dev/dosC. Should be -rw-rw-rw- for access for anyone. > 3) I have not yet found a program that will allow me to copy 1.2M > disks. I need to make backups of the minix masters. Copy II PC > fails (only does 360k disks), and all the other DOS-based copiers > will not copy sector by sector; they recognize DOS file systems only. You can duplicate disks in minix if you have either two 1.2M floppies or are running minix from a harddrive with at least 1.2M free. two 1.2M floppy drives(source in A: destination in B:) dd if=/dev/at0 of=/dev/at1 bs=7680 minix with a harddrive: dd if=/dev/at0 of=disk bs=7680 dd if=disk of=/dev/at0 bs=7680 Michael Temari temari@ecamv1.dnet.ge.com