Changes between Version 3 and Version 4 of Public/Docs/CinnamonSetupDebian1010
- Timestamp:
- Sep 16, 2019, 5:42:01 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Public/Docs/CinnamonSetupDebian1010
v3 v4 8 8 > **IMPORTANT:** Choose a safe password on production systems (see [#ref1 (1)]). 9 9 * 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. 10 15 * Install Java (JDK), cURL and some other useful or required tools. When the installer asks you, deny mounting WebDAV resources to unprivileged users. 11 16 {{{ … … 14 19 * Create a new group and user for tomcat. 15 20 {{{ 16 /usr/sbin/groupadd tomcat17 /usr/sbin/useradd -s /bin/false -g tomcat -d /opt/tomcat tomcat21 groupadd tomcat 22 useradd -s /bin/false -g tomcat -d /opt/tomcat tomcat 18 23 mkdir /opt/tomcat 19 24 }}}