ubuntu 操作日志

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_34333717/article/details/83624137

更新源

sudo apt-get update

安装常用软件

1.SSH

sudo apt-get install openssh-server

  • 查看状态:service ssh status/start/stop/restart
  • 或:/etc/init.d/ssh status/start/stop/retsrt
  • 实际上,service命令就是执行/etc/init.d脚本,二者功能是一样的

2.Vim

sudo apt-get install vim

3.Tree

sudo apt-get install tree

4.Git

sudo apt-get install git

搭建LAMP

1.安装Apache

sudo apt-get install apache2

  • 测试: 浏览器访问http://Ubuntu的IP,出现It Works!网页。
  • 查看状态: service apache2 status/start/stop/restart
  • Web目录: /var/www
  • 安装目录: /etc/apache2/
  • 全局配置: /etc/apache2/apache2.conf
  • 监听端口: /etc/apache2/ports.conf
  • 虚拟主机: /etc/apache2/sites-enabled/000-default.conf

2.安装MySQL

sudo apt-get install mysql-server mysql-client

  • 测试:mysql -u root -p
  • 查看状态:service mysql status/start/stop/retart
  • 查看监听端口的情况:netstat -tunpl 或 netstat -tap

3.安装PHP

sudo apt-get install php7.0

  • 测试:php7.0 -v

4.安装其他模块

sudo apt-get install libapache2-mod-php7.0

sudo apt-get install php7.0-mysql

  • 重启服务
    • service apache2 restart
    • service mysql restart
  • 测试Apache能否解析PHP
    • vim /var/www/html/phpinfo.php
    • 文件中写:<?php echo phpinfo();?>
    • 浏览器访问:http://ubuntu地址/phpinfo.php,出现PHP Version网页

5.修改权限

sudo chmod 777 /var/www

6.安装phpMyAdmin

sudo apt-get install phpmyadmin

  • 安装:选择apache2,点击确定。下一步选择是要配置数据库,并输入密码。
  • 创建phpMyAdmin快捷方式:sudo ln -s /usr/share/phpmyadmin /var/www/html
  • 启用Apache mod_rewrite模块:sudo a2enmod rewrite
  • 重启服务:
    • service php7.0-fpm restart
    • service apache2 restart
  • 测试:浏览器访问:http://ubuntu地址/phpmyadmin

7.配置Apache

vim /etc/apache2/apache2.conf

  • 添加:
  • AddType application/x-httpd-php .php .htm .html
  • AddDefaultCharset UTF-8
  • 重启Apache服务

重启命令 : 

    1、reboot 

    2、shutdown -r now 立刻重启

    3、shutdown -r 10 过10分钟自动重启

    4、shutdown -r 20:35 在时间为20:35时候重启

    如果是通过shutdown命令设置重启的话,可以用shutdown -c命令取消重启 

    关机命令 : 

    1、halt   立刻关机(一般加-p 关闭电源)

    2、poweroff 立刻关机 

    3、shutdown -h now 立刻关机

    4、shutdown -h 10 10分钟后自动关机 

    如果是通过shutdown命令设置关机的话,可以用shutdown -c命令取消关机

猜你喜欢

转载自blog.csdn.net/qq_34333717/article/details/83624137