diff options
author | bt <bt@web> | 2023-11-28 15:15:20 -0500 |
---|---|---|
committer | IkiWiki <ikiwiki.info> | 2023-11-28 15:15:20 -0500 |
commit | 3357efb482647bfc291945a9e234734b2ee13fcf (patch) | |
tree | 63e1403e72fda35b6af1a73cf52d34b399ecca3d /ikiwiki | |
parent | ea16983d56d1fb2717f2c61d406d5298aa13246b (diff) |
Diffstat (limited to 'ikiwiki')
-rw-r--r-- | ikiwiki/NearlyFreeSpeech.mdwn | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/ikiwiki/NearlyFreeSpeech.mdwn b/ikiwiki/NearlyFreeSpeech.mdwn index b404440..c7cc5c0 100644 --- a/ikiwiki/NearlyFreeSpeech.mdwn +++ b/ikiwiki/NearlyFreeSpeech.mdwn @@ -29,3 +29,40 @@ Use `wget` to download the ikiwiki tarball. You can find the `tar` file at the b Then unpack it: tar zxvf ikiwiki*.tar.gz + +## Build and install ikiwiki + + cd ikiwiki + export MAKE=gmake + perl Makefile.PL INSTALL_BASE=$HOME PREFIX= + $MAKE + $MAKE install + +## Create your wiki + +All it takes to create a fully functional wiki using ikiwiki is running one command. + + ikiwiki --setup /etc/ikiwiki/auto.setup + +Or, set up a blog with ikiwiki, run this command instead. + + ikiwiki --setup /etc/ikiwiki/auto-blog.setup + +Either way, it will ask you a couple of questions. + + What will the wiki be named? foo + What revision control system to use? git + What wiki user (or openid) will be admin? joey + Choose a password: + +Then, wait for it to tell you an url for your new site.. + + Successfully set up foo: + url: http://example.com/~joey/foo + srcdir: ~/foo + destdir: ~/public_html/foo + repository: ~/foo.git + To modify settings, edit ~/foo.setup and then run: + ikiwiki --setup ~/foo.setup + +We are almost done, but your URL is most likely incorrect. Edit your `foo.setup` file and change the URL to: `yoursitename.nfshost.com` |