第二周 1、描述Linux发行版的系统目录名称命名规则以及用途 文件名规则 文件名最长255个字节 包括路径在内文件名称最长4095个字节 蓝色 目录;绿色 可执行文件;红色 压缩文件;浅蓝色 链接文件;灰色 其他文件 除了斜杠和NUL,所有字符都有效,但使用特殊字符的目录名和文件不推荐使用,有些字 ...
分类:
其他好文 时间:
2020-04-26 20:50:39
阅读次数:
62
【Ctrl+Shift+=】:Shell字体增大 【Ctrl+-】:Shell字体减小 【Clear:】清屏 【ls】:列出目录文件 【pwd】:查看当前所在文件夹 【cd [目录名]】:切换文件夹 【touch [文件名]】:如果文件不存在,新建文件 【mkdlr】:创建目录 【rm [文件名]】 ...
分类:
系统相关 时间:
2020-04-26 13:54:04
阅读次数:
92
| 命令 | 作用 | | | | | aptitude update | 更新可用的包列表 | | aptitude upgrade | 升级可用的包 | | aptitude dist upgrade | 将系统升级到新的发行版 | | aptitude install pkgname | 安装 ...
分类:
其他好文 时间:
2020-04-26 11:04:56
阅读次数:
44
Given a string, remove all leading/trailing/duplicated empty spaces. Assumptions: The given string is not null. Examples: “ a” --> “a” “ I love MTV ” ...
分类:
其他好文 时间:
2020-04-26 10:56:45
阅读次数:
82
<template> <div class="main printTemplate printTemplateD"> <div class="titleBox"> <el-row :gutter="20"> <el-col :span="22"><div class="grid-content bg ...
分类:
Web程序 时间:
2020-04-24 14:42:13
阅读次数:
85
FutureWarning: Series.nonzero() is deprecated and will be removed in a future version.Use Series.to_numpy().nonzero() instead FutureWarning: get_value ...
分类:
其他好文 时间:
2020-04-24 01:32:12
阅读次数:
51
卸载旧版本 Docker 的旧版本被称为 docker,docker.io 或 docker-engine 。如果已安装,请卸载它们: $ sudo apt-get remove docker docker-engine docker.io containerd runc 当前称为 Docker E ...
分类:
系统相关 时间:
2020-04-23 22:58:59
阅读次数:
88
You are given a string ss consisting of lowercase Latin letters. Let the length of ss be |s||s|. You may perform several operations on this string. In ...
分类:
其他好文 时间:
2020-04-23 22:44:20
阅读次数:
64
一、简述 离线在Centos7中部署DockerCE。 二、步骤 (1)在有外网的计算A上执行: 1、配置安装源存放路径 mkdir -p /root/docker-ce-local && cd /root/docker-ce-local2、获取createrepo安装包 yum remove cr ...
分类:
其他好文 时间:
2020-04-23 17:35:27
阅读次数:
302
查找算法 二分查找 非递归版的 递归版的 floor实现 二分查找法, 在有序数组arr中, 查找target,如果找到target, 返回第一个target相应的索引index,如果没有找到target, 返回比target小的最大值相应的索引, 如果这个最大值有多个, 返回最大索引,如果这个ta ...
分类:
编程语言 时间:
2020-04-23 16:19:35
阅读次数:
72