Ubuntu使用小记

主要是记录一些ubuntu使用过程中经常要用的操作和问题

安装apache

1
2
sudo apt update
sudo apt install apache2

验证apache是否在运行

1
systemctl status apache2

安装VMware Tools

适用问题:主机与虚拟机互相不能复制粘贴

1
2
3
sudo apt upgrade
sudo apt install open-vm-tools-desktop -y
sudo reboot

外部主机不能访问ubuntu下flask应用的5000端口

安装nginx

1
sudo apt-get install nginx

查看nginx版本

1
2
glarcy@glarcy-virtual-machine:/etc$ nginx -v
nginx version: nginx/1.18.0 (Ubuntu)

blog:https://www.cnblogs.com/smallVampire/p/12100758.html

1
2
3
/etc/init.d/apache2 stop
service nginx start
systemctl status nginx.service