background picture of the home page

Hi,Friend

docker 安装mysql5.7

下载镜像 docker pull mysql:5.7 创建目录 先在data下创建 /docker/mysql/data和 /docker/mysql/config/my.cnf ,目录和文件 my.cnf文件内容 [client] # 端口号 port=3306 [mysql] no-beep

thumbnail of the cover of the post

echarts 仿进度条配置

{ title: { text: 'World Population', show: false, }, tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' }, formatter: functio

thumbnail of the cover of the post

js同时校验手机号和座机

js同时校验手机号和座机 let phoneReg = /(^[0-9]{3,4}\-[0-9]{3,8}$)|(^[0-9]{3,8}$)|(^\([0-9]{3,4}\)[0-9]{3,8}$)|(^0{0,1}1[0-9]{10}$)/; let checkTell = (rule,

thumbnail of the cover of the post

Ubuntu下查看磁盘空间大小

(1)使用命令: df -hl (2)命令解析: df 命令是linux系统上以磁盘分区为单位来查看文件系统的命令,后面可以加上不同的参数来查看磁盘的剩余空间信息。 (3)显示格式: <

thumbnail of the cover of the post

前端生成id、uuid

一: export const uuid = () => { const temp_url = URL.createObjectURL(new Blob()) const uuid = temp_url.toString() URL.revokeObjectURL(temp_url) /

thumbnail of the cover of the post

Docker安装Jellyfin 命令

docker pull jellyfin/jellyfin:latest mkdir -p /home/docker/jellyfin/{config,cache} docker run -d -v /home/docker/jellyfin/config:/config -v /home/dock

thumbnail of the cover of the post

Docker 搭建轻量级且美观实用的私人网盘 cloudreve

Cloudreve 简介 Cloudreve 是一款开源的网盘软件,支持服务器本机及腾讯云对象存储 COS 等多种存储方式,提供离线下载、拖拽上传、在线预览等功能,能够帮助您快速搭建个人使用或多人共享的云盘系统。 官网:https://cloudreve.org/ Github:https://gi

thumbnail of the cover of the post

docker中如何启动服务并配置外界访问端口配置

在Docker中启动服务并配置外部访问端口通常涉及到使用docker run命令时指定-p参数来发布容器端口到宿主机上。以下是一个基本的步骤说明: 1.拉取镜像(如果你还没有镜像的话): docker pull <image-name> 将<image-name>替换为你想要运行的Docker镜像名

thumbnail of the cover of the post

UBUNTU如何切换到ROOT用户

在Ubuntu系统中,root用户拥有系统中最高的权限,可以执行任意的命令和操作。但是在普通用户下,为了保护系统的安全性,通常是不允许直接登录root用户的。那么,如何切换到root用户呢?下面本文将为大家介绍几种方法。 使用sudo命令切换到root用户 sudo是在Linux/Unix系统中使用

thumbnail of the cover of the post