首页
学习
活动
专区
工具
TVP
发布

蓝天

专栏作者
526
文章
833956
阅读量
41
订阅数
联想笔记本上Ubuntu无线网卡问题
百度出网卡驱动iwlwifi-9000,如iwlwifi-9000-pu-b0-jf-b0-34.618819.0.tgz,解压后将文件“.ucode”复制到目录/lib/firmware/
一见
2019-12-25
8370
crontab条目包含%号问题
crontab条目中包含%号,最常见的取时间,如:date +%d, 对%需要使用\进行转义,否则不能按预期执行,正确做法为: * * * * * echo "`date +\%d`" > /tmp/r1r.txt 而不能为 * * * * * echo "`date +%d`" > /tmp/r1r.txt %是crontab的特殊字符,所有%后的被当作了标准输入,这可以通过“ man 5 crontab”查看到说明: The entire command portion of the line, up to a newline or a "%" character, will be executed by /bin/sh or by the shell specified in the SHELL variable of the cronfile. A "%" character in the command, unless escaped with a backslash (\),  will be changed into newline char-acters, and all data after the first % will be sent to the command as standard input. 示例:
一见
2019-03-14
5040
理解shell的eval命令
看以下两条命令: [zhangsan@XEN /sys]$ a="ls";b="\$a";c="$b";"$c" Hey! No command '$a' found, did you mean
一见
2019-01-02
1.1K0
致命错误: zlib.h:没有那个文件或目录
下面这个错误是因为zlib包没有安装,安装后问题即可解决。但有一点请注意安装命令是:sudo apt-get install zlib1g-dev,而非sudo apt-get install zlib
一见
2018-08-07
2.5K0
如何为crontab调度运行的多脚本设置共享的环境变量?
直接将环境变量添加到crontab中,如: NAME=zhangsan AGE=30 10 * * * * /home/xx/test.sh 注意不要加上export,这样test.sh就可以用到环境变量了。
一见
2018-08-07
1.1K0
高性能高可用的分布式唯一ID服务——mooon-uniq-id
源码位置:https://github.com/eyjian/mooon/tree/master/application/uniq_id。
一见
2018-08-02
4810
没有更多了
社区活动
RAG七天入门训练营
鹅厂大牛手把手带你上手实战
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档