zoukankan      html  css  js  c++  java
  • ubuntu*set*up

    Install*ubuntu*from*windows

    http://www.linuxidc.com/Linux/2013-10/91565.htm

    set*up*subime-text

    http://www.technoreply.com/how-to-install-sublime-text-2-on-ubuntu-12-04-unity/

    set*up*LAMP

    http://www.unixmen.com/install-lamp-server-apache-mysql-php-ubuntu-13-10-server/

    some steps missing after install phpmyadmin

    sudo sh -c 'echo "Include /etc/phpmyadmin/apache.conf" >> /etc/apache2/apache2.conf' && sudo service apache2 restart

     72  apt-get install apache2
       77  sudo apt-get install software-properties-common
       81  apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db
       83  add-apt-repository 'deb http://mariadb.biz.net.id//repo/5.5/ubuntu saucy main'
       84  sudo apt-get update
       85  sudo apt-get install mariadb-server mariadb-client
       86  mysql -v
       87  sudo service mysql status
       90  sudo apt-get install php5 php5-mysql libapache2-mod-php5
       91  vi /var/www/testphp.php
       92  sudo service apache2 restart
       93  sudo apt-get install phpmyadmin
      117  sudo sh -c 'echo "Include /etc/phpmyadmin/apache.conf" >> /etc/apache2/apache2.conf' && sudo service apache2 restart
       

    set*up*wordpress

    http://ubuntuhandbook.org/index.php/2013/10/install-wordpress-ubuntu-13-10-server/

      118  cd && wget http://wordpress.org/latest.tar.gz
      119  tar -xzvf latest.tar.gz
      120  cd && cp wordpress/wp-config-sample.php wordpress/wp-config.php
      121  vi wordpress/wp-config.php
      122  cd && sudo rsync -avP wordpress/ /var/www/
      123  cd /var/www/
      124  sudo chown www-data:www-data * -R
      125  sudo usermod -a -G www-data www-data
      126  sudo vi /etc/apache2/mods-enabled/dir.conf
      127  sudo service apache2 restart

    another*one*of*install*config*wordpress

    https://www.digitalocean.com/community/articles/how-to-set-up-multiple-wordpress-sites-on-a-single-ubuntu-vps

    open*as*admin

    http://ubuntuhandbook.org/index.php/2013/10/enable-open-as-administrator-ubuntu-13-10-nautilus/

  • 相关阅读:
    剑指 Offer 18. 删除链表的节点
    剑指 Offer 15. 二进制中1的个数
    剑指 Offer 11. 旋转数组的最小数字
    剑指 Offer 56
    剑指 Offer 10- II. 青蛙跳台阶问题
    剑指 Offer 10- I. 斐波那契数列
    剑指 Offer 09. 用两个栈实现队列
    剑指 Offer 06. 从尾到头打印链表
    C++ 异常机制
    读《大数据——互联网大规模数据挖掘与分布式处理》
  • 原文地址:https://www.cnblogs.com/scarlettxu/p/3451673.html
Copyright © 2011-2022 走看看