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/

  • 相关阅读:
    moss文档浏览次数统计
    C#中方法参数的四种类型
    [记录] JavaScript 中的深浅拷贝(克隆)
    [记录] JavaScript 中的事件分类
    [记录] JavaScript 中的数组操作
    [记录] JavaScript 中的事件(Event对象、事件源对象、事件流、事件绑定)
    [记录] JavaScript 中的try..catch 详细的错误信息
    [题目] JavaScript 练习题目(一) [020]
    [记录] JavaScript 中的this和call()、apply()方法
    [记录] JavaScript 中的对象操作和包装类
  • 原文地址:https://www.cnblogs.com/scarlettxu/p/3451673.html
Copyright © 2011-2022 走看看