张贴在 2024
-
Ubuntu22编译安装gcc12
Thursday, July 04, 2024 在 Ubuntu
Ubuntu22编译安装gcc12 ubuntu22.04默认的gcc版本是gcc-11,但是在安装很多程序的时候,依赖gcc12 因此我们需要手动安装gcc-12 编译安装 第1步: 下载源码包 wget https://mirrors.tuna.tsinghua.edu.cn/gnu/gcc/gcc-12.3.0/gcc-12.3.0.tar.gz 第2步: 解压 tar -zxf gcc-12.3.0.tar.gz -C /opt/package/ 第3步: 安装需要的依赖项 # 安装编译 …
-
Ubuntu使用nginx和MySQL部署nextcloud
Wednesday, June 19, 2024 在 Ubuntu
Ubuntu使用nginx和MySQL部署nextcloud 前言 系统: Ubuntu 22.04 LTS nginx版本: 1.18.0 MySQL版本: 8.0.37 nextcloud版本: 29.0.0 php版本: 8.1 参考文档: ubuntu安装NextCloud(nginx+PostgreSQL+php8) 安装 # 安装nginx sudo apt install nginx # 安装MySQL sudo apt install mysql sudo apt install …
-
Ubuntu22安装Docker
Tuesday, June 18, 2024 在 Docker
Ubuntu22安装Docker 卸载旧包 #安装前先卸载操作系统默认安装的docker, sudo apt-get remove docker docker-engine docker.io containerd runc #安装必要支持 sudo apt install apt-transport-https ca-certificates curl software-properties-common gnupg lsb-release 配置源 #添加 Docker 官方 GPG key …
-
Nextcloud部署
Tuesday, May 14, 2024 在 Docker
nextcloud部署 前言 系统: CentOS7.9 next版本: all-in-one(aio) 系统要求8G以上内存,个人云服务器不推荐 参考文档: GitLab官方部署文档 安装部署 services: nextcloud: image: nextcloud/all-in-one:latest restart: always container_name: nextcloud-aio-mastercontainer # 官方文档要求,不可修改 volumes: - …
-
CentOS7安装docker
Thursday, May 09, 2024 在 Docker
CentOS7安装docker 环境 系统: CentOS7.9 docker: 最新 安装部署 # 安装docker-ce sudo yum install docker-ce 配置国内源 # 配置腾讯云源 # 修改或者创建/etc/docker/daemon.json # 插入以下内容 { "registry-mirrors": [ "https://mirror.ccs.tencentyun.com" ] } # 检查是否生效 docker info 在返回 …
-
Git Lab安装部署
Wednesday, January 03, 2024 在 Linux
Categories:
GitLab安装部署 参考文档: CentOS7.9搭建GitLab服务器 安装依赖包 yum install -y curl policycoreutils-python openssh-server 设置ssh开机自启动并启动ssh服务 systemctl enable sshd systemctl start sshd 安装Postfix # 安装 yum install -y postfix # 设置开机自启 systemctl enable postfix # …