At the time of writing this tutorial, the latest stable version of TYP03 is 11.5.12.<\/p>\n
cd \/tmp\r\nwget --content-disposition https:\/\/get.typo3.org\/11.5.12<\/pre>\nOnce it is downloaded, unpack the downloaded TAR archive to the document root directory of your server:<\/p>\n
tar -xvzf typo3_src-11.5.12.tar.gz -C \/var\/www\/html<\/pre>\nRename the directory to something simpler (this is optional, however, it makes it easier to type and memorize where your files are):<\/p>\n
cd \/var\/www\/html && mv typo3_src-11.5.12 typo3<\/pre>\nFor a fresh TYPO3 CMS server install, create a file named FIRST_INSTALL<\/code> on the web root directory.<\/p>\ntouch \/var\/www\/html\/typo3\/FIRST_INSTALL<\/pre>\nSet the Apache user to be the owner of all TYPO3 files:<\/p>\n
chown -R www-data:www-data typo3<\/pre>\n