Development Environment setup in Linux

Source: Internet
Author: User
Linux development environment setup recently, the younger brother tried to download the Linux development environment and set up the Linux commands. this really makes setting up the Linux environment easier. next I will introduce some simple procedures (I am using ubuntu) just for a newbie like me... linux development environment setup recently, the younger brother tried to download the Linux development environment and set up the Linux commands. this really makes setting up the Linux environment easier. next I will introduce some simple procedures (I am using ubuntu) just share the network connection of www.2cto.com with the newbie like me. do not go to the command line (ctrl + alt + T): First update the installation package list: sudo apt-get update install ssh to connect to linux remotely in windows and connect to other linux sudo apt-get install ssh to install apache: sudo apt-get install apache2 ps: after the installation is complete, the default folder created by the apache service enters the upper-layer cd/var folder of apache in/var/www to set the default folder to share sudo chmod 777 www/to enable apache: sudo apachectl stop sudo apachectl start install php5: sudo apt-get install php5 www.2cto.com at this time, you should be able to enter 127.0.0.1 in the browser to view the dynamic php page installed samba: you can perform network ing with windows to facilitate development, download, and install samba: sudo apt-get install samba to configure samba: cd/etc/samba/backup smb. conf and modify smb. conf configuration file: sudo cp smb. conf smb. backup sudo vim smb. add the following information to conf: [global] workgroup = ubuntu // The name can be changed to netbios name = ubuntu_server // The name can be changed to server string = apache_server // The name can be changed to security = user/share // user indicates linux user share indicates sharing to all users, [share] path =/var/www writeable = yes browseable = yes guest OK = yes // set the default guests to enter the save configuration file to start the samba service: sudo smbd start
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.