上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 38 下一页
摘要: iota iota,特殊常量,可以认为是一个可以被编译器修改的常量。 iota 在 const关键字出现时将被重置为 0(const 内部的第一行之前),const 中每新增一行常量声明将使 iota 计数一次(iota 可理解为 const 语句块中的行索引)。 iota 可以被用作枚举值: co 阅读全文
posted @ 2020-01-17 16:14 kissrule 阅读(224) 评论(0) 推荐(0) 编辑
摘要: https://www.runoob.com/go/go-variables.html = 是赋值, := 是声明变量并赋值。 // = 使用必须使用先var声明例如: var a a=100 //或 var b = 100 //或 var c int = 100 // := 是声明并赋值,并且系统 阅读全文
posted @ 2020-01-17 14:08 kissrule 阅读(756) 评论(0) 推荐(0) 编辑
摘要: sudo apt-mark hold linux-image-generic linux-headers-generic 阅读全文
posted @ 2020-01-15 16:06 kissrule 阅读(778) 评论(0) 推荐(0) 编辑
摘要: 把镜像做成本地源,在fstab中写入 /mnt/iso/Centos.iso /mnt/cdrom iso9660 loop, defaults 0 0 阅读全文
posted @ 2020-01-14 16:46 kissrule 阅读(188) 评论(0) 推荐(0) 编辑
摘要: ubuntu上安装 apt-get install libnl-genl-3-dev 安装pkg-config apt-get install pkg-config https://www.jianshu.com/p/073bcd9c3b08 阅读全文
posted @ 2020-01-09 15:13 kissrule 阅读(243) 评论(0) 推荐(0) 编辑
摘要: http://gcc.gnu.org/onlinedocs/gcc-4.0.0/gcc/Function-Attributes.html http://gcc.gnu.org/onlinedocs/gcc-4.0.0/gcc/Variable-Attributes.html#Variable-Att 阅读全文
posted @ 2020-01-09 11:42 kissrule 阅读(3570) 评论(0) 推荐(0) 编辑
摘要: 在Linux环境下开发经常会碰到很多错误(设置errno),其中EAGAIN是其中比较常见的一个错误(比如用在非阻塞操作中)。 linux下使用write\send发送数据报 EAGAIN : Resource temporarily unavailable 错 首先是我把套接字设置为异步的了,然后 阅读全文
posted @ 2020-01-08 16:33 kissrule 阅读(478) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/nkwy2012/p/9171414.html 技巧小结: 字符串比较用双中括号[[ ]];算数比较用单中括号[ ]——左右留空格 算数运算用双小括号(( )) ;shell命令及输出用小括号( )——左右不留空格 快速替换用花括号{ }——左右留空格 阅读全文
posted @ 2020-01-08 16:27 kissrule 阅读(812) 评论(0) 推荐(0) 编辑
摘要: 什么是daemon进程? Unix/Linux中的daemon进程类似于Windows中的后台服务进程,一直在后台运行运行,例如http服务进程nginx,ssh服务进程sshd等。注意,其英文拼写为daemon而不是deamon。 为什么daemon进程需要特殊的编写步骤? daemon进程和普通 阅读全文
posted @ 2020-01-08 16:17 kissrule 阅读(835) 评论(0) 推荐(0) 编辑
摘要: ➜ nbd-master cat maketr #!/bin/sh # # Example script to make a transaction log file # Must be run as root. Remember to chown the file afterwards # Ins 阅读全文
posted @ 2020-01-08 15:05 kissrule 阅读(631) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 38 下一页