Comments for one-page install

Issue #672 resolved
Laurence King created an issue

No description provided.

Comments (12)

  1. Laurence King reporter

    18.04.1 default install

    var/dose$ sudo apt install python python-pip virtualenv rabbitmq-server postgresql nginx orthanc dcmtk default-jre
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    E: Unable to locate package python-pip
    E: Unable to locate package virtualenv
    E: Unable to locate package orthanc
    E: Unable to locate package dcmtk
    
  2. Ed McDonagh

    Contents of /etc/apt/sources.list in default install using ubiquity installer is just

    deb http://archive.ubuntu.com/ubuntu bionic main
    deb http://archive.ubuntu.com/ubuntu bionic-security main
    deb http://archive.ubuntu.com/ubuntu bionic-updates main
    

    In order to get the missing packages above, we need to add:

    deb http://archive.ubuntu.com/ubuntu/ bionic universe
    deb http://archive.ubuntu.com/ubuntu/ bionic-updates universe
    

    followed by sudo apt update

  3. Ed McDonagh

    Need to reload postgresql after the security configuration is modified:

    sudo systemctl reload postgresql
    
  4. Ed McDonagh
    • Orthanc instructions need improving for linux, and zip command doesn't work - see #674
    • Need to add aacl permissions to ensure group write on new folders in physics folder:
    /var/dose/orthanc$ sudo setfacl -dm u::rwx,g::rwx,o::r physics
    
    • Need to show how to create sym links from user directories to the physics folder.
  5. Log in to comment