pwd,打印当前目录 ls:List information about the FILEs (the current directory by default) -a/--all -d/--directory dir -a 进入如camera的目录后运行dir、ls会卡住(可以ctrl+c退出)。 ...
分类:
移动开发 时间:
2021-04-16 12:10:03
阅读次数:
0
问题原因:逻辑卷在磁盘下,无法直接mkfs 格式化磁盘 [root@VM_0_8_centos ~]# dmsetup ls vdb1 (252:0) dmsetup remove vdb1 mkfs.xfs /dev/vdb1 ...
分类:
其他好文 时间:
2021-04-16 12:08:51
阅读次数:
0
redis卸载:后配安装https://blog.csdn.net/isea533/article/details/84550237 一、使用redis的List类型结合lpush 和 brpop 来实现 简介 首先redis的List 相当于一个队列,可以实现先进先出的规则 采用brpop 是因为 ...
分类:
编程语言 时间:
2021-04-16 11:57:48
阅读次数:
0
这里记录两种自己接触过的 1.子组件通知父组件 先通过import方法在父组件中引入子组件,这里我是将子组件(页面)扩展成全局dialog引入的 引入的流程如下 <el-dialog :visible.sync="dialogFormContactVisible" :fullscreen="true ...
分类:
其他好文 时间:
2021-04-16 11:51:25
阅读次数:
0
range() 函数 日常工作中,range() 应该非常熟悉了,它可以生成一个迭代对象,然后可以使用 list() 将它转成一个 list # 判断是不是迭代对象 print(isinstance(range(0, 10), Iterable)) # 生成列表 lists = list(range ...
分类:
编程语言 时间:
2021-04-16 11:49:05
阅读次数:
0
近日Autodesk 发布3ds Max 2022,作为一款在行业中相对领先的3D建模和渲染软件,此次新版增加了一系列功能,有几个突出的亮点可以让建模更轻松。 ...
分类:
其他好文 时间:
2021-04-16 11:46:16
阅读次数:
0
字符串与列表的相互转化 字符转列表 str_ = 'sky' str_list = list(str_) print(str_list) # ['s', 'k', 'y'] 列表转字符 str_u = ''.join(str_list) print(str_u) # sky ...
分类:
编程语言 时间:
2021-04-16 11:42:44
阅读次数:
0
oslo.vmware是OpenStack通用框架中的一部分,主要用于实现对虚拟机的管理任务,借助oslo.vmware模块我们可以管理Vmware ESXI集群环境。 读取所有节点主机 from oslo_vmware import api from oslo_vmware import vim_ ...
分类:
编程语言 时间:
2021-04-15 12:46:59
阅读次数:
0
下载地址:https://xz.aliyun.com/forum/upload/affix/shiro_tool.zip 2021-03-31:新增自定义或随机useragentrandomagent --> random useragentuseragent= --> set useragentc ...
分类:
其他好文 时间:
2021-04-15 12:45:57
阅读次数:
0
I have a list of dict that looks like this: list=[{u'hello':['001', 3], u'word':['003', 1], u'boy':['002', 2]}, {u'dad':['007', 3], u'mom':['005', 3], ...
分类:
编程语言 时间:
2021-04-15 12:42:23
阅读次数:
0