Changes between Version 3 and Version 4 of Public/Docs/CinnamonSetupDebian1010


Ignore:
Timestamp:
Sep 16, 2019, 5:42:01 PM (5 years ago)
Author:
Administrator
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Public/Docs/CinnamonSetupDebian1010

    v3 v4  
    88> **IMPORTANT:** Choose a safe password on production systems (see [#ref1 (1)]).
    99* Use the {{{su}}} command to acquire root privileges.
     10* Edit {{{~/.bashrc}}} and append the following line:
     11 {{{
     12 PATH=$PATH:/usr/sbin
     13 }}}
     14* Exit and use the {{{su}}} command again to make the previous change effective.
    1015* Install Java (JDK), cURL and some other useful or required tools. When the installer asks you, deny mounting WebDAV resources to unprivileged users.
    1116 {{{
     
    1419* Create a new group and user for tomcat.
    1520 {{{
    16  /usr/sbin/groupadd tomcat
    17  /usr/sbin/useradd -s /bin/false -g tomcat -d /opt/tomcat tomcat
     21 groupadd tomcat
     22 useradd -s /bin/false -g tomcat -d /opt/tomcat tomcat
    1823 mkdir /opt/tomcat
    1924 }}}