Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / release / picobsd / dial / lang / README.en
1 1999.04.22, Warsaw, Poland
2
3                         PicoBSD @VER@ (DIALUP flavor)
4                         ---------------------------
5
6
7 What is PicoBSD?
8 ----------------
9
10 It's a one floppy version of FreeBSD (please see http://www.freebsd.org),
11 configured mainly for dialup access. It can be used as a means to read your
12 mail remotely, or to log in somewhere and do the work there.
13
14 What are minimal requirements?
15 ------------------------------
16
17 * 386SX CPU or better (this release contains also FPU emulator)
18 * 8MB RAM - the more the better.
19 * Modem sitting on COM1-COM4 (default is to use COM2), if you want to have
20   a PPP connection.
21 * Network card: compatible with NE2000, or PCI cards with DEC chipsets
22   or 3C509 series (ed, ep and de drivers). There is also driver for Intel
23   EtherExpress PCI card (fxp), and Lance/PCnet (lnc).
24
25 How to make a dialup connection?
26 --------------------------------
27
28 I recommend running /stand/dialup script, which will additionally configure
29 the PPP to allow you to automatically connect to your provider, and
30 will make the ppp to run in background. However, if you like to do it
31 yourself, or the script doesn't work properly in your case (let me know
32 this!), here are the steps you should take:
33
34 1.      Go to /etc/ppp directory and edit file ppp.conf (using ee editor). You
35         should check at least the port number of your modem (it's configured
36         on cuaa1==COM2 by default).
37 2.      After you're happy with it, start 'ppp' program. Enter the terminal
38         mode ('term') - you are now directly connected to your modem, so you
39         can normally dial the number using AT commands (e.g. atdt555666777),
40         and log in to communictaion server. You should see something like
41         this:
42
43                 (comm server prompt) login: abial
44                 (comm server prompt) Password: ********
45
46         Then either the comm server automatically switches to PPP, or you
47         should issue a command to tell it to do so (e.g. 'go ppp', 'PPP' or
48         other). When PPP is started, you should see something like:
49
50                 ppp on pico> Packet mode
51                 PPP on pico>
52
53         Notice the uppercase PPP - it means that the protocol is up, and now
54         you're connected. Congratulations. :-)
55 3.      Your console is blocked now, but you can use other virtual consoles
56         available under Alt-Fn.
57
58 How to configure my Ethernet card?
59 ----------------------------------
60
61 Hopefully your ethernet card is supported by PicoBSD kernel, and in case of
62 ISA cards you have already set up correctly its parameters in UserConfig
63 editor. You can check if PicoBSD found your card by looking into startup
64 messages ('dmesg | more').
65
66 The easiest way to do it is to edit /etc/rc.conf file ('ee /etc/rc.conf').
67 Find the line which says 'network_interfaces' and add the name of your
68 card to the list. Then add yet another line 'ifconfig_<if_name>' which
69 actually sets up your IP address and netmask. E.g:
70
71         network_interfaces="lo0 ed0"
72         ifconfig_lo0="inet 127.0.0.1"
73         ifconfig_ed0="inet 192.168.0.1 netmask 255.255.255.0"
74
75 Then you have to set up your default gateway, which is usually the router
76 nearest to you (on the same LAN). E.g:
77
78         defaultrouter="192.168.0.100"
79
80 Then you save this information on the floppy with 'update' command, and
81 reboot.
82
83 Of course, you can also issue the proper commands by hand:
84
85         ifconfig ed0 inet 192.168.0.1 netmask 255.255.255.0
86         route add default 192.168.0.100
87
88 Once you do this, you should be able to 'ping' some remote IP address.
89
90 Where to get additional info?
91 -----------------------------
92
93 There is official page of this project at:
94
95         http://www.freebsd.org/~picobsd/
96
97 You can find some informations there - not too much yet, to be sure... ;-)
98 I'll put there also new versions of PicoBSD and bugfixes.
99
100 I'll be glad hearing from you about your experiences with PicoBSD. Thanks.
101
102 Have fun!
103
104 Andrzej Bialecki <abial@freebsd.org>
105
106 $FreeBSD: src/release/picobsd/dial/lang/README.en,v 1.7 1999/08/28 01:33:19 peter Exp $
107 $DragonFly: src/release/picobsd/dial/lang/Attic/README.en,v 1.2 2003/06/17 04:27:20 dillon Exp $