码迷,mamicode.com
首页 >  
搜索关键字:command line option    ( 45515个结果
CentOS7.8 扩容
1、查看系统分区的详细情况 fdisk -l 2、对磁盘进行分区 #需要注意的是/dev/sdb要根据第一步查看的路径来设置,挂载的路径实际操作的时候略有不同 fdisk /dev/sdb 创建新分区 # 1 选择n创建 ? Command (m for help): n # 2 创建分区 Part ...
分类:其他好文   时间:2021-07-02 16:19:29    阅读次数:0
GDB调试程序6--查看源程序
用GDB调试程序(完全手册) http://blog.chinaunix.net/u2/87718/showart_1726531.html 查看源程序一、显示源代码 GDB 可以打印出所调试程序的源代码,当然,在程序编译时一定要加上-g的参数,把源程序信息编译到执行文件中。不然就看不到源程序了。当 ...
分类:数据库   时间:2021-07-02 16:18:03    阅读次数:0
GSON的扯淡之处
GSON默认是开启html编码的, 方法注释是这么写的: By default, Gson escapes HTML characters such as < > etc. Use this option to configure Gson to pass-through HTML characte ...
分类:其他好文   时间:2021-07-02 16:09:53    阅读次数:0
判断命令是否在PATH环境变量中
1 public static bool IsInPath(string command) 2 { 3 bool isInPath = false; 4 // 判断PATH中是否存在 命令 5 foreach (string test in (Environment.GetEnvironmentVa ...
分类:其他好文   时间:2021-07-02 15:52:09    阅读次数:0
Mac安装nginx 流程配置
http://nginx.org/en/download.html ``` mac安装 nginx Mac:brew install nginx ``` 出错提示。参考一下链接 #### mac环境下brew command not found错误的解决方法 http://www.chenxm.cc ...
分类:系统相关   时间:2021-07-02 15:42:25    阅读次数:0
find exec 使用方法大全
find是我们很常用的一个Linux命令,但是我们一般查找出来的并不仅仅是看看而已,还会有进一步的操作,这个时候exec的作用就显现出来了。 exec解释: -exec 参数后面跟的是command命令,它的终止是以;为结束标志的,所以这句命令后面的分号是不可缺少的,考虑到各个系统中分号会有不同的意 ...
分类:其他好文   时间:2021-07-02 15:24:09    阅读次数:0
css列表属性和display属性
列表属性 ol,ul{ /*list-style: disc;*/ /*实心圆点*/ /*list-style: square;*/ /*实心小方块*/ /*list-style: circle;*/ /*空心圆点*/ /*list-style: decimal;*/ /*1/2/3数字排序*/ / ...
分类:Web程序   时间:2021-07-01 17:29:11    阅读次数:0
k8s 1.20.6 将docker切换为containerd
一、环境介绍 官方文档:https://kubernetes.io/zh/docs/setup/production-environment/container-runtimes/#containerd [root@master ~]# kubectl get node -o wide NAME S ...
分类:其他好文   时间:2021-07-01 17:27:57    阅读次数:0
圆环自定义样式(百分比)
option = { legend: { show: false }, series: [ { type: "pie", radius: [0, 0], silent: true, label: { normal: { show: true, position: "center", formatte ...
分类:其他好文   时间:2021-07-01 17:27:43    阅读次数:0
Vue3.0 declare it using the "emits" option警告
vue3.0子组件 emit 出现警告 Extraneous non-emits event listeners (okUploadImg) were passed to component but could not be automatically inherited because compo ...
分类:其他好文   时间:2021-07-01 17:06:29    阅读次数:0
45515条   上一页 1 2 3 4 5 ... 4552 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!