Changes between Initial Version and Version 1 of InstallationGuidelines/PhantomJS


Ignore:
Timestamp:
05/30/14 12:14:20 (11 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/PhantomJS

    v1 v1  
     1= Install PhantomJS =
     2
     3This is required for UserGuidelines/Admin/MapPrinting.
     4
     5This is not avaialble in Debian Wheezy, but is in Debian SID (unstable) so we can use [http://jaqque.sbih.org/kplug/apt-pinning.html apt-pinning]:
     6{{{
     7cat << EOF >> "/etc/apt/sources.list"
     8deb     http://http.debian.net/debian jessie      main
     9deb     http://http.debian.net/debian sid         main
     10EOF
     11cat << EOF > "/etc/apt/preferences.d/preferences"
     12Package: *
     13Pin: release a=stable
     14Pin-Priority: 700
     15
     16Package: *
     17Pin: release a=testing
     18Pin-Priority: 650
     19
     20Package: *
     21Pin: release a=unstable
     22Pin-Priority: 600
     23EOF
     24apt-get update
     25echo "reject 1st option (don't install), accept 2nd (use Testing to upgrade)"
     26aptitude install phantomjs
     27}}}