diff --git a/FAQ/freebsd-faq.sgml b/FAQ/freebsd-faq.sgml
index 0f78a5394b..9484370123 100644
--- a/FAQ/freebsd-faq.sgml
+++ b/FAQ/freebsd-faq.sgml
@@ -4,7 +4,7 @@
Frequently Asked Questions for FreeBSD 2.X
The FreeBSD FAQ Team, $Id: freebsd-faq.sgml,v 1.38 1996-03-05 23:48:02 joerg Exp $
+ $Id: freebsd-faq.sgml,v 1.39 1996-03-24 22:24:10 joerg Exp $
This is the FAQ for FreeBSD systems version 2.X All entries are
assumed to be relevant to FreeBSD 2.0.5+, unless otherwise noted.
@@ -1251,6 +1251,42 @@ crw-rw-rw- 1 root wheel 41, 1 Oct 15 22:14 spx
The actual amount of dirty pages that you can have in core at
once is not reduced; the clean pages are displaced as necessary.
+
+ How can I add more swap space?
+
+ (by Werner Griessl)
+
+
Here is an example for 64Mb vn-swap (/usr/swap0)
+
+
+ -
+ create a vn-device
+
+cd /dev; sh ./MAKEDEV vn0
+
+
-
+ create a swapfile (/usr/swap0)
+
+dd if=/dev/zero of=/usr/swap0 bs=1024k count=64
+
+
-
+ put into /etc/rc.local the line
+
+vnconfig -ce /dev/vn0c /usr/swap0 swap
+
+
-
+ reboot the machine
+
+
+
+ You must also have a kernel with the line
+
+pseudo-device vn #Vnode driver (turns a file into a device)
+
+ in your config-file.
+
+
+
Hey! Chmod doesn't change the file permissions of symlinked files! What's going on?