Greetings,
@neilms,
Firstly, it's
not a silly question. That's what the forums are for.

Secondly, it might help you to know what, or where the installation' stuck, or hung at. You might be able to discover this by switching to another terminal/tty by way of
[b]Ctrl[/b]+[b]Alt[/b]+[b]F2[/b]
, that is; holding the
Ctrl
, and
Alt
keys down, and pressing the
F2
function key. This will switch you to p
tty()02. Where you should be presented with the standard FreeBSD logon screen. From there, simply logon, and issue
ps ax
.
ps() reveals the
process status of currently running processes, and commands. With any luck, and familiarity with the FreeBSD system, you will probably be able to figure out what's
stuck. You could then, simply kill it, with the
kill() command. By adding
-KILL
, or
-USR1
, and it's
pid
.
killall() can also assist you in this area, and might be considered easier to use. Once the process(es) have been cleared. You can issue a
make clean(), and either attempt the process again, tuning/tweaking it, to overcome the obstacle(s) it ran into the first time, or opt out all together.
I might add to
@ShelLuser's comments above; that you can also easily pick, and choose the documentation you wish to have on your system, by simply firing up
ftp(), and going to
http://ftp.freebsd.org/pub/FreeBSD/doc/. From there, simply get the directories you want Recursively. The FreeBSD handbook, and related, are traditionally installed inside
/usr/local/share/doc/freebsd
. While you are not
required to put it there, it might save some space, and confusion. Should you ever decide to install from source, or by way of FreeBSD's
pkg() system. So, issuing a
mkdir -p /usr/local/share/doc/freebsd
and
cd
ing into that directory prior to
ftp()ing the documentation, is probably well advised.
Hope this helps, and best wishes.
--Chris