background picture of the home page

Hi,Friend

umrcheng

vue项目创建方法

vue-cli # 安装 vue-cli npm install -g @vue/cli # 查看 vue-cli 版本 vue --version # 创建 vue 项目 方式1 vue create vue_name # 创建 vue 项目 方式2 npm --yes --package

thumbnail of the cover of the post

Linux 清理空间

Linux 清理空间 清理内核 确认当前内核和备用内核 uname -a uname -r 清理多余的内核 运行以下命令,清理非当前内核和非备用内核的旧内核: sudo apt-get purge $(dpkg --list | grep 'linux-image' | awk '{print $

thumbnail of the cover of the post

Linux定时任务, crontab定时任务

crontab 格式 *  *  *  *  * XXX 分 时 天 月 星期 命令 符号含义: “*” 代表取值范围内的数字, “/” 代表”每”, “-” 代表从某个数字到某个数字, “,” 分开几个离散的数字 示例: 1 * * * * cp /var/lib/m

thumbnail of the cover of the post

Linux测试网络速度

速度测试工具 speedtest speedtest是知名的测速工具。可以使用ap命令来安装。你可以在命令行下使用。 # apt sudo apt install speedtest-cli # yum sudo yum install speedtest-cli 使用,输出显示: root@

thumbnail of the cover of the post

批量修改 Linux 目录, 文件权限

修改方法 方法一: 查找目录修改目录权限为755 find . -type d -exec chmod 755 {} ; 查找文件修改文件权限为644 find . -type f -exec chmod 644 {} ; 方法二: 查找目录修改目录权限为755 find . -type d | x

thumbnail of the cover of the post

pip 国内镜像源

国内镜像源 # 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple # 中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple # 豆瓣 https://pypi.douban.com/simple # 阿里云

thumbnail of the cover of the post

Linux 清理空间

Linux 清理空间 清理内核 确认当前内核和备用内核 uname -a uname -r 清理多余的内核 运行以下命令,清理非当前内核和非备用内核的旧内核: sudo apt-get purge $(dpkg --list | grep 'linux-image' | awk '{print $

thumbnail of the cover of the post