ubuntu 操作日誌
更新源
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命令取消關機