Linux cmd
Safin
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Search and replace string
We can use sed to replace some stringfor example: sed -i s/new_string/old_string/guse grep tosearch filesso:sed -i s/new_string/old_string/g `grep old_string -rl --include="*.html" ./`原创 2015-09-17 13:34:07 · 591 阅读 · 0 评论 -
debian apt-get update GPG error for NO_PUBKEY
apt-get update #W: GPG error: http://debian.cn99.com squeeze Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY AED4B06F473041FA NO_PUB原创 2015-09-19 10:51:03 · 546 阅读 · 0 评论 -
linux install kernel headers
#install kernel headers with right versionapt-get install linux-headers-$(uname -r)#query headers weather install correctlydpkg-query -s linux-headers-$(uname-r) #list kernel version原创 2015-09-19 17:25:28 · 1136 阅读 · 0 评论
分享