蓝天

2020年1月13日 #

修改目录proc下的tcp_tw_recycle报“只读文件系统”

摘要: 试图修改tcp_tw_recycle的值时,遇到错误: # echo 1 > /proc/sys/net/ipv4/tcp_tw_recycle -bash: /proc/sys/net/ipv4/tcp_tw_recycle: 只读文件系统 该错误的原因是因为以只读(ro)方式mount了tcp_ 阅读全文

posted @ 2020-01-13 16:00 #蓝天 阅读(420) 评论(0) 推荐(0) 编辑

运行程序时报错“Value too large for defined data type”

摘要: 下列错误,可能是因为在64位上跑32位程序: Value too large for defined data type 此错误对应的出错代码为EOVERFLOW,原因可能是目标文件超过2GB大小。 下列代码可能会导致这个错误出错(为何说是可能,本节最后部分解释): // g++ -g -o x x 阅读全文

posted @ 2020-01-13 15:34 #蓝天 阅读(3393) 评论(0) 推荐(0) 编辑

导航