]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/install/discussion.mdwn
the album plugin now requires the transient plugin
[ikiwiki.git] / doc / install / discussion.mdwn
index 3cefbd2095e5e19ca1f50f767c261f3ea82d707b..c06893ec1c0880f1646c88ed3f160d252681577f 100644 (file)
@@ -280,11 +280,10 @@ This where my steps:
 
 As root (#):
 
-    # aptitude install build-essential curl perl
+        aptitude install build-essential curl perl
 
-As plain user ($):
 
-    I use to install user perl modules using local::lib
+As plain user ($), I use to install user perl modules using local::lib
 
         mkdir -p "$HOME/downloads"
         cd "$HOME/downloads/"
@@ -301,14 +300,14 @@ As plain user ($):
         cpanm CGI::Session
         cpanm HTML::Parser
         cpanm HTML::Template
-        cpanm -f HTML::Scrubber    # tests failed
+        cpanm HTML::Scrubber
         cpanm Text::Markdown
         cpanm URI
         cd ..
         tar -zxf ikiwiki_3.20100831.tar.gz
         cd ikiwiki/
         perl Makefile.PL INSTALL_BASE= PREFIX=/home/$USER/.perl5
-        make tests   # All tests successful
+        make test    # All tests successful.
         make install INSTALL_BASE=/home/$USER/.perl5
         . ~/.bashrc
 
@@ -319,5 +318,16 @@ After all, here it's:
         ikiwiki -version
         ikiwiki version 3.20100831
 
-Hope this can be useful for someone.
+It seems like this installation looses the /etc files (we're as plain user), but this can be used as a workaround:
+
+        ikiwiki -setup ~/downloads/ikiwiki/auto.setup
+
+I've not investigated more the /etc files ussage, but does not seems like a good idea to be as plain user...
+
+        /etc/ikiwiki/wikilist does not exist
+        ** Failed to add you to the system wikilist file.
+        ** (Probably ikiwiki-update-wikilist is not SUID root.)
+        ** Your wiki will not be automatically updated when ikiwiki is upgraded.
+
+
 IƱigo