Make section a little more precise
[ikiwiki.git] / docs / docs / newhandbook / serial_communications / index.mdwn
index d8b0975..1504102 100644 (file)
@@ -248,38 +248,6 @@ Most devices in the kernel are accessed through ***device special files***, whic
 
 
 
-#### 18.1.4.1 Making Device Special Files 
-
-
-
-A shell script called `MAKEDEV` in the `/dev` directory manages the device special files. To use `MAKEDEV` to make dial-up device special files for `COM1` (port 0), `cd` to `/dev` and issue the command `MAKEDEV ttyd0`. Likewise, to make dial-up device special files for `COM2` (port 1), use `MAKEDEV ttyd1`.
-
-
-
-`MAKEDEV` not only creates the `/dev/ttyd`***N****** device special files, but also the `/dev/cuaa`***N******, `/dev/cuaia`***N******, `/dev/cuala`***N******, `/dev/ttyld`***N******, and `/dev/ttyid`***N****** nodes.
-
-
-
-After making new device special files, be sure to check the permissions on the files (especially the `/dev/cua*` files) to make sure that only users who should have access to those device special files can read and write on them -- you probably do not want to allow your average user to use your modems to dial-out. The default permissions on the `/dev/cua*` files should be sufficient:
-
-
-
-    
-
-    crw-rw----    1 uucp     dialer    28, 129 Feb 15 14:38 /dev/cuaa1
-
-    crw-rw----    1 uucp     dialer    28, 161 Feb 15 14:38 /dev/cuaia1
-
-    crw-rw----    1 uucp     dialer    28, 193 Feb 15 14:38 /dev/cuala1
-
-
-
-
-
-These permissions allow the user `uucp` and users in the group `dialer` to use the call-out devices.
-
-
-
 ### 18.1.5 Serial Port Configuration 
 
 
@@ -1171,20 +1139,6 @@ Use the highest bps rate your modem supports in the br capability. Then, type `t
 
 
 
-If there is no `/dev/cuaa0` on your system, do this:
-
-
-
-    
-
-    # cd /dev
-
-    # sh MAKEDEV cuaa0
-
-
-
-
-
 Or use `cu` as `root` with the following command:
 
 
@@ -1885,7 +1839,3 @@ You need to recompile the boot loader to use a serial port other than `sio0` for
 The idea here is to allow people to set up dedicated servers that require no graphics hardware or attached keyboards. Unfortunately, while most systems will let you boot without a keyboard, there are quite a few that will not let you boot without a graphics adapter. Machines with AMI BIOSes can be configured to boot with no graphics adapter installed simply by changing the ***graphics adapter*** setting in the CMOS configuration to ***Not installed.***
 
 
-
-However, many machines do not support this option and will refuse to boot if you have no display hardware in the system. With these machines, you will have to leave some kind of graphics card plugged in, (even if it is just a junky mono board) although you will not have to attach a monitor. You might also try installing an AMI BIOS.
-
-***