محتوای تهیه شده به طور کامل به راه اندازی vscode در توزیع لینوکسی ubuntu پرداخته است . لازم به ذکر است همراه با لینک ویدئوی آموزشی ، لینک document راهنمای استفاده از دستورات قرار خواهد گرفت .
رفع خطای " configure the PHP executable " :
Cannot validate since no PHP executable is set. Use the setting php.validate.executablePath to configure the PHP executable
رفع خطای " Retry as Sudo " :
Faild to save index.php: Insufficient permissions. Select Retry as sudo, retry as superuser
دستورات اصلی مطرح شده در آموزش :
install apache2 and php/his extension : 
sudo apt update |  sudo apt upgrade | sudo apt install apache2 | write on browser " localhost " | sudo service apache2 status/stop/start/restart
install mysql-server:
sudo apt install mysql-server | sudo mysql_secure_installation  -> config  |  q : no  -  y - y - no - y  | sudo service mysql status/stop/start/restart
install last version of php : 
sudo apt install php { trying to install php 7.2 }  | sudo add-apt-repository ppa:ondrej/php | last php : sudo apt install php libapache2-mod-php php-mysql php-curl
verify the installation : sudo php -v 
check the php work : 
cd /var/www/html/   |   sudo  nano index.php  | write there :  <?php echo phpinfo(); ?>  | sampled the browser but doesn't work  |
sudo nano /etc/apache2/mods-enabled/dir.conf  -> then cut the  " index.php" put it as the first object   | sudo service apache2 restart | refresh web page
- Retry as root { use chown in terminal }
	-ls -la /opt/lampp/htdocs/
	-sudo chown -c/-v user:group ./ -R  
	{-c : Reports when a file chnge is made.
	 -v : It is used to show the verbose information for every file procced.}
- to set the PHP executable path : 
		- whereis php7.4
	  	php.validate.executablePath = "executable path"
-create workespace in vscode : 
	code --add vscode <filname>آموزش داده شده دارای اطلاعات ارزشمندی میباشد که مرور کردن آنها باعث پیشرفت شما در یادگیری سیستم عامل لینوکس و علاقمندی به استفاده از آن خواهد شد .
زمان ویدئو 01:10:24