共有 261 篇文章
📅 最近更新
2020-01-03
- 2024-09-18
Ubuntu Error: ENOSPC:System limit for number of file watchers reached
2019-12-19
- 2024-09-18
A cellular automaton is a discrete model studied in computer science, mathematics, physics, complexity science, theoretical biology and microstructure modeling.
2019-11-06
- 2024-09-18
Ubuntu 18.04 安装PHP7并配置Nginx 安装 sudo apt-get install software-properties-common python-software-properties sudo add-apt-repository ppa:ondrej/php sudo apt-get update sudo apt-get -y install php7.3 # 安装常用扩展 sudo -y apt-get install php7.3-fpm php7.3-mysql php7.3-curl php7.3-json php7.3-mbstring php7.3-xml php7.3-intl # 安装其他扩展(按需安装) sudo apt-get install php7.3-gd sudo apt-get install php7.3-soap sudo apt-get install php7.3-gmp sudo apt-get install
2019-11-06
- 2024-09-18
Ubuntu 18.04 安装MySQL8 Ubuntu 下载 APT 包 CentOS 下载 APT 包 sudo dpkg -i mysql-apt-config_0.8.10-1_all.deb sudo apt update sudo apt install mysql-server # 查看mysql是否安装成功 mysql -u root -p # 查看mysql字符集,mysql8字符集默认为utf-8。 show
2019-11-06
- 2024-09-18
Ubuntu 18.04 搭建Nginx服务 安装 Ubuntu可以从源直接安装nginx sudo apt-get update sudo apt-get install nginx 调整防火墙,以免出现各种问题 sudo ufw app list 获得应用程序配置文件的列表: 可用应用程序: CUPS Nginx